Can log in now
This commit is contained in:
parent
1aa8d8d88d
commit
c2e8299e67
4 changed files with 17 additions and 6 deletions
6
app/authenticators/oauth2.js
Normal file
6
app/authenticators/oauth2.js
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
import OAuth2PasswordGrant from 'ember-simple-auth/authenticators/oauth2-password-grant';
|
||||||
|
import config from '../config/environment';
|
||||||
|
|
||||||
|
export default OAuth2PasswordGrant.extend({
|
||||||
|
serverTokenEndpoint: `${config.apiURL}/api/authenticate`,
|
||||||
|
});
|
|
@ -1,21 +1,21 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Controller.extend({
|
export default Ember.Controller.extend({
|
||||||
|
session: Ember.inject.service('session'),
|
||||||
|
|
||||||
loading: false,
|
loading: false,
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
authenticate: function() {
|
authenticate: function() {
|
||||||
let credentials = this.getProperties('identification', 'password');
|
|
||||||
let session = this.get('session');
|
|
||||||
let authenticator = 'simple-auth-authenticator:jwt';
|
|
||||||
|
|
||||||
// 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();
|
||||||
this.set('loading', true).then(session.authenticate(authenticator, credentials).catch((error) => {
|
let { identification, password } = this.getProperties('identification', 'password');
|
||||||
|
this.set('loading', true)
|
||||||
|
this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => {
|
||||||
this.transitionToRoute('login');
|
this.transitionToRoute('login');
|
||||||
this.set('loading', false);
|
this.set('loading', false);
|
||||||
this.get('flashMessages').error(error.error);
|
this.get('flashMessages').error(error.error);
|
||||||
}));
|
});
|
||||||
this.set('loading', false);
|
this.set('loading', false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
export default Ember.Route.extend({
|
||||||
|
session: Ember.inject.service('session'),
|
||||||
|
|
||||||
beforeModel: function(transition) {
|
beforeModel: function(transition) {
|
||||||
this._super(transition);
|
this._super(transition);
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,9 @@ module.exports = function(environment) {
|
||||||
type: 'error',
|
type: 'error',
|
||||||
types: ['error', 'warning', 'success', 'information', 'tip', 'message'],
|
types: ['error', 'warning', 'success', 'information', 'tip', 'message'],
|
||||||
},
|
},
|
||||||
|
'ember-simple-auth': {
|
||||||
|
routeAfterAuthentication: 'protected.compare',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
var apiURL;
|
var apiURL;
|
||||||
|
|
Reference in a new issue