roughing in custom session (again :( )
This commit is contained in:
parent
bb2386807c
commit
72c957f8dc
7 changed files with 42 additions and 10 deletions
24
app/initializers/custom-session.js
Normal file
24
app/initializers/custom-session.js
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
import Session from 'simple-auth/session';
|
||||||
|
import parseBase64 from '../utils/parse-base64';
|
||||||
|
|
||||||
|
var CustomSession = Session.extend({
|
||||||
|
currentUser: function() {
|
||||||
|
let token = this.get('secure.token');
|
||||||
|
if (!Ember.isEmpty(token)) {
|
||||||
|
let t = parseBase64(token);
|
||||||
|
return this.container.lookup('store:main').find('user', t['sub']);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}.property('secure.token'),
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
export function initialize(container, application) {
|
||||||
|
application.register('session:custom', CustomSession);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'custom-session',
|
||||||
|
before: 'simple-auth',
|
||||||
|
initialize: initialize
|
||||||
|
};
|
|
@ -1,7 +1,17 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import ApplicationRouteMixin from 'simple-auth/mixins/application-route-mixin';
|
import ApplicationRouteMixin from 'simple-auth/mixins/application-route-mixin';
|
||||||
|
// import parseBase64 from '../../utils/parse-base64';
|
||||||
|
|
||||||
export default Ember.Route.extend(ApplicationRouteMixin, {
|
export default Ember.Route.extend(ApplicationRouteMixin, {
|
||||||
|
// model: function() {
|
||||||
|
// let token = this.get('session.secure.token');
|
||||||
|
// if (Ember.isNone(token)) {
|
||||||
|
// return null;
|
||||||
|
// }
|
||||||
|
// let user = parseBase64(token);
|
||||||
|
// return this.store.find('user', user.sub);
|
||||||
|
// },
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
invalidateSession: function() {
|
invalidateSession: function() {
|
||||||
this.get('session').invalidate().then(() => {
|
this.get('session').invalidate().then(() => {
|
||||||
|
|
|
@ -2,7 +2,8 @@ import Ember from 'ember';
|
||||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||||
|
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
beforeModel: function() {
|
beforeModel: function(transition) {
|
||||||
|
this._super(transition);
|
||||||
this.transitionTo('compare');
|
this.transitionTo('compare');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -11,13 +11,7 @@ export default Ember.Controller.extend({
|
||||||
this.set('loading', true);
|
this.set('loading', true);
|
||||||
// Manually clean up because there might not be a transition
|
// Manually clean up because there might not be a transition
|
||||||
this.get('flashMessages').clearMessages();
|
this.get('flashMessages').clearMessages();
|
||||||
session.authenticate(authenticator, credentials).then(()=>{
|
session.authenticate(authenticator, credentials).then(null, (error)=> {
|
||||||
this.set('loading', false);
|
|
||||||
let t = parseBase64(session.get('secure.token'));
|
|
||||||
this.store.find('user', t['sub']).then((user) => {
|
|
||||||
session.set('currentUser', user);
|
|
||||||
});
|
|
||||||
}, (error)=> {
|
|
||||||
this.set('loading', false);
|
this.set('loading', false);
|
||||||
this.get('flashMessages').error(error.error);
|
this.get('flashMessages').error(error.error);
|
||||||
});
|
});
|
||||||
|
|
|
@ -2,7 +2,8 @@ import Ember from 'ember';
|
||||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||||
|
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
beforeModel: function() {
|
beforeModel: function(transition) {
|
||||||
|
this._super(transition);
|
||||||
if (this.get('session.currentUser.role') === 'R') {
|
if (this.get('session.currentUser.role') === 'R') {
|
||||||
this.transitionTo('species.index');
|
this.transitionTo('species.index');
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,8 @@ import Ember from 'ember';
|
||||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||||
|
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
beforeModel: function() {
|
beforeModel: function(transition) {
|
||||||
|
this._super(transition);
|
||||||
if (this.get('session.currentUser.role') === 'R') {
|
if (this.get('session.currentUser.role') === 'R') {
|
||||||
this.transitionTo('strains.index');
|
this.transitionTo('strains.index');
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,7 @@ module.exports = function(environment) {
|
||||||
},
|
},
|
||||||
podModulePrefix: 'hymenobacterdotinfo/pods',
|
podModulePrefix: 'hymenobacterdotinfo/pods',
|
||||||
'simple-auth': {
|
'simple-auth': {
|
||||||
|
session: 'session:custom',
|
||||||
authorizer: 'simple-auth-authorizer:token',
|
authorizer: 'simple-auth-authorizer:token',
|
||||||
store: 'simple-auth-session-store:local-storage',
|
store: 'simple-auth-session-store:local-storage',
|
||||||
},
|
},
|
||||||
|
|
Reference in a new issue