2018-10-05 21:46:33 +03:00
|
|
|
import Authenticator from 'ember-simple-auth/authenticators/base';
|
|
|
|
import RSVP from 'rsvp';
|
|
|
|
import {computed} from '@ember/object';
|
|
|
|
import {inject as service} from '@ember/service';
|
|
|
|
|
|
|
|
export default Authenticator.extend({
|
|
|
|
ajax: service(),
|
|
|
|
ghostPaths: service(),
|
|
|
|
|
|
|
|
sessionEndpoint: computed('ghostPaths.apiRoot', function () {
|
|
|
|
return `${this.ghostPaths.apiRoot}/session`;
|
|
|
|
}),
|
|
|
|
|
|
|
|
restore: function () {
|
|
|
|
return RSVP.resolve();
|
|
|
|
},
|
|
|
|
|
|
|
|
authenticate(identification, password) {
|
|
|
|
const data = {username: identification, password};
|
|
|
|
const options = {
|
|
|
|
data,
|
|
|
|
contentType: 'application/json;charset=utf-8',
|
|
|
|
// ember-ajax will try and parse the response as JSON if not explicitly set
|
|
|
|
dataType: 'text'
|
|
|
|
};
|
|
|
|
|
2021-07-08 16:37:31 +03:00
|
|
|
return this.ajax.post(this.sessionEndpoint, options);
|
2018-10-05 21:46:33 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
invalidate() {
|
|
|
|
// if we're invalidating because of a 401 we can end up in an infinite
|
|
|
|
// loop if we then try to perform a DELETE /session/ request
|
|
|
|
// TODO: find a more elegant way to handle this
|
|
|
|
if (this.ajax.skipSessionDeletion) {
|
|
|
|
this.ajax.skipSessionDeletion = false;
|
|
|
|
return RSVP.resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.ajax.del(this.sessionEndpoint);
|
|
|
|
}
|
|
|
|
});
|