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 Ember from "ember";
|
||||||
|
import DS from 'ember-data';
|
||||||
import Session from "simple-auth/session";
|
import Session from "simple-auth/session";
|
||||||
|
|
||||||
// This is pulled straight from ember-cli-simple-auth-token
|
// 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 {
|
export default {
|
||||||
name: "custom-session",
|
name: "custom-session",
|
||||||
before: "simple-auth",
|
before: "simple-auth",
|
||||||
initialize: function(container) {
|
initialize: function(container, application) {
|
||||||
Session.reopen({
|
application.register('session:custom', CustomSession);
|
||||||
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")
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,6 +4,9 @@ import ApplicationRouteMixin from 'simple-auth/mixins/application-route-mixin';
|
||||||
|
|
||||||
export default Ember.Route.extend(ApplicationRouteMixin, {
|
export default Ember.Route.extend(ApplicationRouteMixin, {
|
||||||
actions: {
|
actions: {
|
||||||
|
invalidateSession: function() {
|
||||||
|
this.get('session').invalidate();
|
||||||
|
},
|
||||||
loading: function() {
|
loading: function() {
|
||||||
NProgress.start();
|
NProgress.start();
|
||||||
this.router.one('didTransition', function() {
|
this.router.one('didTransition', function() {
|
||||||
|
|
|
@ -1,20 +1,18 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import LoginControllerMixin from 'simple-auth/mixins/login-controller-mixin';
|
|
||||||
|
|
||||||
export default Ember.Controller.extend(LoginControllerMixin, {
|
export default Ember.Controller.extend({
|
||||||
authenticator: 'simple-auth-authenticator:jwt',
|
|
||||||
loading: false,
|
|
||||||
actions: {
|
actions: {
|
||||||
authenticate: function() {
|
authenticate: function() {
|
||||||
this.set('errorMessage', null);
|
this.set('errorMessage', null);
|
||||||
var _this = this;
|
let credentials = this.getProperties('identification', 'password');
|
||||||
|
let authenticator = 'simple-auth-authenticator:token';
|
||||||
|
|
||||||
this.set('loading', true);
|
this.set('loading', true);
|
||||||
this._super().then(function() {
|
this.get('session').authenticate(authenticator, credentials).then(()=>{
|
||||||
_this.set('loading', false);
|
this.set('loading', false);
|
||||||
}, function(error) {
|
}, (error)=> {
|
||||||
_this.set('loading', false);
|
this.set('loading', false);
|
||||||
var message = error.error;
|
this.set('errorMessage', error.error);
|
||||||
_this.set('errorMessage', message);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import Ember from 'ember';
|
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) {
|
setupController: function(controller) {
|
||||||
controller.set('errorMessage', null);
|
controller.set('errorMessage', null);
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"loader.js": "ember-cli/loader.js#3.2.0",
|
"loader.js": "ember-cli/loader.js#3.2.0",
|
||||||
"qunit": "~1.17.1",
|
"qunit": "~1.17.1",
|
||||||
"flakes": "~1.0.0",
|
"flakes": "~1.0.0",
|
||||||
"ember-simple-auth": "~0.7.3",
|
"ember-simple-auth": "~0.8.0-beta.3",
|
||||||
"nprogress": "~0.1.6",
|
"nprogress": "~0.1.6",
|
||||||
"moment": "~2.9.0"
|
"moment": "~2.9.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ module.exports = function(environment) {
|
||||||
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
|
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
|
||||||
// ENV.APP.LOG_VIEW_LOOKUPS = true;
|
// ENV.APP.LOG_VIEW_LOOKUPS = true;
|
||||||
ENV['simple-auth'] = {
|
ENV['simple-auth'] = {
|
||||||
|
session: 'session:custom',
|
||||||
authorizer: 'simple-auth-authorizer:token',
|
authorizer: 'simple-auth-authorizer:token',
|
||||||
crossOriginWhitelist: ['http://127.0.0.1:4200']
|
crossOriginWhitelist: ['http://127.0.0.1:4200']
|
||||||
}
|
}
|
||||||
|
@ -57,6 +58,7 @@ module.exports = function(environment) {
|
||||||
|
|
||||||
if (environment === 'test') {
|
if (environment === 'test') {
|
||||||
ENV['simple-auth'] = {
|
ENV['simple-auth'] = {
|
||||||
|
session: 'session:custom',
|
||||||
authorizer: 'simple-auth-authorizer:token',
|
authorizer: 'simple-auth-authorizer:token',
|
||||||
crossOriginWhitelist: ['https://bactdb-test.herokuapp.com']
|
crossOriginWhitelist: ['https://bactdb-test.herokuapp.com']
|
||||||
}
|
}
|
||||||
|
@ -91,6 +93,7 @@ module.exports = function(environment) {
|
||||||
|
|
||||||
if (environment === 'production') {
|
if (environment === 'production') {
|
||||||
ENV['simple-auth'] = {
|
ENV['simple-auth'] = {
|
||||||
|
session: 'session:custom',
|
||||||
authorizer: 'simple-auth-authorizer:token',
|
authorizer: 'simple-auth-authorizer:token',
|
||||||
crossOriginWhitelist: ['https://bactdb.herokuapp.com']
|
crossOriginWhitelist: ['https://bactdb.herokuapp.com']
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,8 +31,8 @@
|
||||||
"ember-cli-ic-ajax": "0.1.1",
|
"ember-cli-ic-ajax": "0.1.1",
|
||||||
"ember-cli-inject-live-reload": "^1.3.0",
|
"ember-cli-inject-live-reload": "^1.3.0",
|
||||||
"ember-cli-qunit": "0.3.13",
|
"ember-cli-qunit": "0.3.13",
|
||||||
"ember-cli-simple-auth": "^0.7.2",
|
"ember-cli-simple-auth": "^0.8.0-beta.3",
|
||||||
"ember-cli-simple-auth-token": "^0.6.0",
|
"ember-cli-simple-auth-token": "^0.7.2",
|
||||||
"ember-cli-uglify": "^1.0.1",
|
"ember-cli-uglify": "^1.0.1",
|
||||||
"ember-data": "1.0.0-beta.17",
|
"ember-data": "1.0.0-beta.17",
|
||||||
"ember-disable-proxy-controllers": "^0.7.0",
|
"ember-disable-proxy-controllers": "^0.7.0",
|
||||||
|
|
Reference in a new issue