352c4af1d7
no issue - ran [es5-getter-ember-codemod](https://github.com/rondale-sc/es5-getter-ember-codemod) - [es5 getters RFC](https://github.com/emberjs/rfcs/blob/master/text/0281-es5-getters.md) - updates the majority of `object.get('property')` with `object.property` with exceptions: - `.get('nested.property')` - it's not possible to determine if this is relying on "safe" path chaining for when `nested` doesn't exist - `.get('config.x')` and `.get('settings.x')` - both our `config` and `settings` services are proxy objects which do not support es5 getters - this PR is not exhaustive, there are still a number of places where `.get('service.foo')` and similar could be replaced but it gets us a long way there in a quick and automated fashion
79 lines
2.5 KiB
JavaScript
79 lines
2.5 KiB
JavaScript
/* eslint-disable ghost/ember/alias-model-in-controller */
|
|
import Controller from '@ember/controller';
|
|
import ValidationEngine from 'ghost-admin/mixins/validation-engine';
|
|
import {computed} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
import {task} from 'ember-concurrency';
|
|
|
|
export default Controller.extend(ValidationEngine, {
|
|
ghostPaths: service(),
|
|
notifications: service(),
|
|
session: service(),
|
|
ajax: service(),
|
|
config: service(),
|
|
|
|
newPassword: '',
|
|
ne2Password: '',
|
|
token: '',
|
|
flowErrors: '',
|
|
|
|
validationType: 'reset',
|
|
|
|
email: 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.token).split('|')[1];
|
|
}),
|
|
|
|
actions: {
|
|
submit() {
|
|
return this.resetPassword.perform();
|
|
}
|
|
},
|
|
|
|
// Used to clear sensitive information
|
|
clearData() {
|
|
this.setProperties({
|
|
newPassword: '',
|
|
ne2Password: '',
|
|
token: ''
|
|
});
|
|
},
|
|
|
|
resetPassword: task(function* () {
|
|
let credentials = this.getProperties('newPassword', 'ne2Password', 'token');
|
|
let authUrl = this.get('ghostPaths.url').api('authentication', 'passwordreset');
|
|
|
|
this.set('flowErrors', '');
|
|
this.hasValidated.addObjects(['newPassword', 'ne2Password']);
|
|
|
|
try {
|
|
yield this.validate();
|
|
try {
|
|
let resp = yield this.ajax.put(authUrl, {
|
|
data: {
|
|
passwordreset: [credentials]
|
|
}
|
|
});
|
|
this.notifications.showAlert(resp.passwordreset[0].message, {type: 'warn', delayed: true, key: 'password.reset'});
|
|
this.session.authenticate('authenticator:cookie', this.email, credentials.newPassword);
|
|
return true;
|
|
} catch (error) {
|
|
this.notifications.showAPIError(error, {key: 'password.reset'});
|
|
}
|
|
} catch (error) {
|
|
if (this.get('errors.newPassword')) {
|
|
this.set('flowErrors', this.get('errors.newPassword')[0].message);
|
|
}
|
|
|
|
if (this.get('errors.ne2Password')) {
|
|
this.set('flowErrors', this.get('errors.ne2Password')[0].message);
|
|
}
|
|
|
|
if (error && this.get('errors.length') === 0) {
|
|
throw error;
|
|
}
|
|
}
|
|
}).drop()
|
|
});
|