mirror of
https://github.com/flarum/framework.git
synced 2025-04-26 22:54:03 +08:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
import AuthenticationControllerMixin from 'simple-auth/mixins/authentication-controller-mixin';
|
|
import ModalControllerMixin from '../mixins/modal-controller';
|
|
|
|
export default Ember.Controller.extend(ModalControllerMixin, AuthenticationControllerMixin, {
|
|
|
|
authenticator: 'authenticator:flarum',
|
|
loading: false,
|
|
|
|
actions: {
|
|
authenticate: function() {
|
|
var data = this.getProperties('identification', 'password');
|
|
var controller = this;
|
|
this.set('error', null);
|
|
this.set('loading', true);
|
|
return this._super(data).then(function() {
|
|
controller.send("sessionChanged");
|
|
controller.send("closeModal");
|
|
}, function(errors) {
|
|
switch(errors[0].code) {
|
|
case 'invalidLogin':
|
|
controller.set('error', 'Your login details are incorrect.');
|
|
break;
|
|
|
|
default:
|
|
controller.set('error', 'Something went wrong. (Error code: '+errors[0].code+')');
|
|
}
|
|
controller.trigger('refocus');
|
|
}).finally(function() {
|
|
controller.set('loading', false);
|
|
});
|
|
}
|
|
}
|
|
|
|
});
|