This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/authenticators/jwt-resolved.js
2015-10-29 20:52:16 -07:00

29 lines
829 B
JavaScript

// Note: this authenticator exists for user lockout --- they are sent a copy
// of a valid JWT to their registered email address. The lockout route plucks
// the token off the URL and passes it directly into this authenticator.
import BaseAuthenticator from 'ember-simple-auth/authenticators/base';
import Ember from 'ember';
const { RSVP, isEmpty } = Ember;
export default BaseAuthenticator.extend({
authenticate: function(token) {
return new RSVP.Promise((resolve, reject) => {
if (isEmpty(token)) {
reject();
} else {
// For now assume that the token we have received is actually valid.
resolve({'access_token': token});
}
});
},
restore: function(data) {
return RSVP.resolve(data);
},
invalidate: function(/* data */) {
return RSVP.resolve();
},
});