Upgrading authentication libs
This commit is contained in:
parent
878e8d1b60
commit
459bd7d6be
7 changed files with 36 additions and 30 deletions
|
@ -1,5 +1,5 @@
|
|||
// from: http://blog.willrax.com/fetching-the-current-user-with-simple-auth/
|
||||
import Ember from "ember";
|
||||
import DS from 'ember-data';
|
||||
import Session from "simple-auth/session";
|
||||
|
||||
// This is pulled straight from ember-cli-simple-auth-token
|
||||
|
@ -12,22 +12,23 @@ function getTokenData(token) {
|
|||
}
|
||||
}
|
||||
|
||||
var CustomSession = Session.extend({
|
||||
currentUser: function() {
|
||||
let token = this.get('secure.token');
|
||||
if (!Ember.isEmpty(token)) {
|
||||
let t = getTokenData(token);
|
||||
return DS.PromiseObject.create({
|
||||
promise: this.container.lookup('store:main').find('user', t['sub'])
|
||||
});
|
||||
}
|
||||
return null;
|
||||
}.property('token')
|
||||
});
|
||||
|
||||
export default {
|
||||
name: "custom-session",
|
||||
before: "simple-auth",
|
||||
initialize: function(container) {
|
||||
Session.reopen({
|
||||
setCurrentUser: function() {
|
||||
var token = this.get("token");
|
||||
var self = this;
|
||||
|
||||
if (!Ember.isEmpty(token)) {
|
||||
var t = getTokenData(token);
|
||||
return container.lookup("store:main").find("user", t['sub']).then(function(user) {
|
||||
self.set("currentUser", user);
|
||||
});
|
||||
}
|
||||
}.observes("token")
|
||||
});
|
||||
initialize: function(container, application) {
|
||||
application.register('session:custom', CustomSession);
|
||||
}
|
||||
};
|
||||
|
|
|
@ -4,6 +4,9 @@ import ApplicationRouteMixin from 'simple-auth/mixins/application-route-mixin';
|
|||
|
||||
export default Ember.Route.extend(ApplicationRouteMixin, {
|
||||
actions: {
|
||||
invalidateSession: function() {
|
||||
this.get('session').invalidate();
|
||||
},
|
||||
loading: function() {
|
||||
NProgress.start();
|
||||
this.router.one('didTransition', function() {
|
||||
|
|
|
@ -1,20 +1,18 @@
|
|||
import Ember from 'ember';
|
||||
import LoginControllerMixin from 'simple-auth/mixins/login-controller-mixin';
|
||||
|
||||
export default Ember.Controller.extend(LoginControllerMixin, {
|
||||
authenticator: 'simple-auth-authenticator:jwt',
|
||||
loading: false,
|
||||
export default Ember.Controller.extend({
|
||||
actions: {
|
||||
authenticate: function() {
|
||||
this.set('errorMessage', null);
|
||||
var _this = this;
|
||||
let credentials = this.getProperties('identification', 'password');
|
||||
let authenticator = 'simple-auth-authenticator:token';
|
||||
|
||||
this.set('loading', true);
|
||||
this._super().then(function() {
|
||||
_this.set('loading', false);
|
||||
}, function(error) {
|
||||
_this.set('loading', false);
|
||||
var message = error.error;
|
||||
_this.set('errorMessage', message);
|
||||
this.get('session').authenticate(authenticator, credentials).then(()=>{
|
||||
this.set('loading', false);
|
||||
}, (error)=> {
|
||||
this.set('loading', false);
|
||||
this.set('errorMessage', error.error);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import Ember from 'ember';
|
||||
import UnauthenticatedRouteMixin from 'simple-auth/mixins/unauthenticated-route-mixin';
|
||||
|
||||
export default Ember.Route.extend({
|
||||
export default Ember.Route.extend(UnauthenticatedRouteMixin, {
|
||||
setupController: function(controller) {
|
||||
controller.set('errorMessage', null);
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"loader.js": "ember-cli/loader.js#3.2.0",
|
||||
"qunit": "~1.17.1",
|
||||
"flakes": "~1.0.0",
|
||||
"ember-simple-auth": "~0.7.3",
|
||||
"ember-simple-auth": "~0.8.0-beta.3",
|
||||
"nprogress": "~0.1.6",
|
||||
"moment": "~2.9.0"
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@ module.exports = function(environment) {
|
|||
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
|
||||
// ENV.APP.LOG_VIEW_LOOKUPS = true;
|
||||
ENV['simple-auth'] = {
|
||||
session: 'session:custom',
|
||||
authorizer: 'simple-auth-authorizer:token',
|
||||
crossOriginWhitelist: ['http://127.0.0.1:4200']
|
||||
}
|
||||
|
@ -57,6 +58,7 @@ module.exports = function(environment) {
|
|||
|
||||
if (environment === 'test') {
|
||||
ENV['simple-auth'] = {
|
||||
session: 'session:custom',
|
||||
authorizer: 'simple-auth-authorizer:token',
|
||||
crossOriginWhitelist: ['https://bactdb-test.herokuapp.com']
|
||||
}
|
||||
|
@ -91,6 +93,7 @@ module.exports = function(environment) {
|
|||
|
||||
if (environment === 'production') {
|
||||
ENV['simple-auth'] = {
|
||||
session: 'session:custom',
|
||||
authorizer: 'simple-auth-authorizer:token',
|
||||
crossOriginWhitelist: ['https://bactdb.herokuapp.com']
|
||||
}
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
"ember-cli-ic-ajax": "0.1.1",
|
||||
"ember-cli-inject-live-reload": "^1.3.0",
|
||||
"ember-cli-qunit": "0.3.13",
|
||||
"ember-cli-simple-auth": "^0.7.2",
|
||||
"ember-cli-simple-auth-token": "^0.6.0",
|
||||
"ember-cli-simple-auth": "^0.8.0-beta.3",
|
||||
"ember-cli-simple-auth-token": "^0.7.2",
|
||||
"ember-cli-uglify": "^1.0.1",
|
||||
"ember-data": "1.0.0-beta.17",
|
||||
"ember-disable-proxy-controllers": "^0.7.0",
|
||||
|
|
Reference in a new issue