2015-02-12 21:22:32 -07:00
|
|
|
import Ember from 'ember';
|
2015-05-26 19:41:12 -05:00
|
|
|
import {request as ajax} from 'ic-ajax';
|
|
|
|
import ValidationEngine from 'ghost/mixins/validation-engine';
|
|
|
|
|
|
|
|
export default Ember.Controller.extend(ValidationEngine, {
|
|
|
|
newPassword: '',
|
|
|
|
ne2Password: '',
|
|
|
|
token: '',
|
|
|
|
submitting: false,
|
2015-08-25 12:32:29 +01:00
|
|
|
flowErrors: '',
|
2015-05-26 19:41:12 -05:00
|
|
|
|
|
|
|
validationType: 'reset',
|
|
|
|
|
2015-05-25 21:10:50 -05:00
|
|
|
ghostPaths: Ember.inject.service('ghost-paths'),
|
|
|
|
notifications: Ember.inject.service(),
|
|
|
|
|
2015-05-26 19:41:12 -05:00
|
|
|
email: Ember.computed('token', function () {
|
|
|
|
// The token base64 encodes the email (and some other stuff),
|
|
|
|
// each section is divided by a '|'. Email comes second.
|
|
|
|
return atob(this.get('token')).split('|')[1];
|
|
|
|
}),
|
|
|
|
|
|
|
|
// Used to clear sensitive information
|
|
|
|
clearData: function () {
|
|
|
|
this.setProperties({
|
|
|
|
newPassword: '',
|
|
|
|
ne2Password: '',
|
|
|
|
token: ''
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
submit: function () {
|
|
|
|
var credentials = this.getProperties('newPassword', 'ne2Password', 'token'),
|
|
|
|
self = this;
|
2015-08-25 12:32:29 +01:00
|
|
|
this.set('flowErrors', '');
|
2015-08-27 21:28:41 +01:00
|
|
|
this.get('hasValidated').addObjects((['newPassword', 'ne2Password']));
|
2015-07-21 18:56:17 +01:00
|
|
|
this.validate().then(function () {
|
|
|
|
self.toggleProperty('submitting');
|
2015-05-26 19:41:12 -05:00
|
|
|
ajax({
|
|
|
|
url: self.get('ghostPaths.url').api('authentication', 'passwordreset'),
|
|
|
|
type: 'PUT',
|
|
|
|
data: {
|
|
|
|
passwordreset: [credentials]
|
|
|
|
}
|
|
|
|
}).then(function (resp) {
|
|
|
|
self.toggleProperty('submitting');
|
2015-10-07 15:44:23 +01:00
|
|
|
self.get('notifications').showAlert(resp.passwordreset[0].message, {type: 'warn', delayed: true, key: 'password.reset'});
|
2015-08-28 16:00:34 +01:00
|
|
|
self.get('session').authenticate('ghost-authenticator:oauth2-password-grant', {
|
2015-05-26 19:41:12 -05:00
|
|
|
identification: self.get('email'),
|
|
|
|
password: credentials.newPassword
|
|
|
|
});
|
|
|
|
}).catch(function (response) {
|
2015-10-07 15:44:23 +01:00
|
|
|
self.get('notifications').showAPIError(response, {key: 'password.reset'});
|
2015-05-26 19:41:12 -05:00
|
|
|
self.toggleProperty('submitting');
|
|
|
|
});
|
2015-08-25 12:32:29 +01:00
|
|
|
}).catch(function () {
|
|
|
|
if (self.get('errors.newPassword')) {
|
|
|
|
self.set('flowErrors', self.get('errors.newPassword')[0].message);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self.get('errors.ne2Password')) {
|
|
|
|
self.set('flowErrors', self.get('errors.ne2Password')[0].message);
|
|
|
|
}
|
2015-05-26 19:41:12 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|