1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00

Add ember-simple-auth, setup login

- Allow dropdown-buttons to render a partial
This commit is contained in:
Toby Zerner
2015-01-30 12:21:18 +10:30
parent 9886fb1f7a
commit c2feae406d
17 changed files with 334 additions and 69 deletions

View File

@@ -0,0 +1,37 @@
import Base from 'simple-auth/authenticators/base';
import config from '../config/environment';
export default Base.extend({
restore: function(data) {
var container = this.container;
return new Ember.RSVP.Promise(function(resolve, reject) {
Ember.run.next(function() {
container.lookup('store:main').find('user', data.userId).then(function(user) {
resolve( { token: data.token, userId: data.userId, user: user } );
});
});
});
},
authenticate: function(credentials) {
var container = this.container;
return new Ember.RSVP.Promise(function(resolve, reject) {
Ember.$.ajax({
url: config.apiURL+'/auth/login',
type: 'POST',
data: { identification: credentials.identification, password: credentials.password }
}).then(function(response) {
container.lookup('store:main').find('user', response.userId).then(function(user) {
resolve({ token: response.token, userId: response.userId, user: user });
});
}, function(xhr, status, error) {
reject(xhr.responseJSON.errors);
});
});
},
// invalidate: function(data) {
// return new Ember.RSVP.Promise();
// }
});