mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
78 lines
2.5 KiB
JavaScript
78 lines
2.5 KiB
JavaScript
import Ember from 'ember';
|
|
import DS from 'ember-data';
|
|
import Configuration from 'ember-simple-auth/configuration';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
const {
|
|
Route,
|
|
RSVP: {Promise},
|
|
inject: {service}
|
|
} = Ember;
|
|
const {Errors} = DS;
|
|
|
|
export default Route.extend(styleBody, {
|
|
classNames: ['ghost-signup'],
|
|
|
|
ghostPaths: service('ghost-paths'),
|
|
notifications: service(),
|
|
session: service(),
|
|
ajax: service(),
|
|
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
|
|
if (this.get('session.isAuthenticated')) {
|
|
this.get('notifications').showAlert('You need to sign out to register as a new user.', {type: 'warn', delayed: true, key: 'signup.create.already-authenticated'});
|
|
this.transitionTo(Configuration.routeIfAlreadyAuthenticated);
|
|
}
|
|
},
|
|
|
|
model(params) {
|
|
let model = Ember.Object.create();
|
|
let re = /^(?:[A-Za-z0-9_\-]{4})*(?:[A-Za-z0-9_\-]{2}|[A-Za-z0-9_\-]{3})?$/;
|
|
let email,
|
|
tokenText;
|
|
|
|
return new Promise((resolve) => {
|
|
if (!re.test(params.token)) {
|
|
this.get('notifications').showAlert('Invalid token.', {type: 'error', delayed: true, key: 'signup.create.invalid-token'});
|
|
|
|
return resolve(this.transitionTo('signin'));
|
|
}
|
|
|
|
tokenText = atob(params.token);
|
|
email = tokenText.split('|')[1];
|
|
|
|
model.set('email', email);
|
|
model.set('token', params.token);
|
|
model.set('errors', Errors.create());
|
|
|
|
let authUrl = this.get('ghostPaths.url').api('authentication', 'invitation');
|
|
|
|
return this.get('ajax').request(authUrl, {
|
|
dataType: 'json',
|
|
data: {
|
|
email
|
|
}
|
|
}).then((response) => {
|
|
if (response && response.invitation && response.invitation[0].valid === false) {
|
|
this.get('notifications').showAlert('The invitation does not exist or is no longer valid.', {type: 'warn', delayed: true, key: 'signup.create.invalid-invitation'});
|
|
|
|
return resolve(this.transitionTo('signin'));
|
|
}
|
|
|
|
resolve(model);
|
|
}).catch(() => {
|
|
resolve(model);
|
|
});
|
|
});
|
|
},
|
|
|
|
deactivate() {
|
|
this._super(...arguments);
|
|
|
|
// clear the properties that hold the sensitive data from the controller
|
|
this.controllerFor('signup').setProperties({email: '', password: '', token: ''});
|
|
}
|
|
});
|