2015-02-13 07:22:32 +03:00
|
|
|
import Ember from 'ember';
|
2015-05-27 03:41:12 +03:00
|
|
|
import {request as ajax} from 'ic-ajax';
|
2015-05-13 08:27:59 +03:00
|
|
|
import Configuration from 'simple-auth/configuration';
|
2014-03-10 07:44:08 +04:00
|
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
|
2015-05-27 03:41:12 +03:00
|
|
|
export default Ember.Route.extend(styleBody, {
|
2014-07-03 19:06:07 +04:00
|
|
|
classNames: ['ghost-signup'],
|
2015-05-13 08:27:59 +03:00
|
|
|
|
2015-05-26 05:10:50 +03:00
|
|
|
ghostPaths: Ember.inject.service('ghost-paths'),
|
|
|
|
notifications: Ember.inject.service(),
|
|
|
|
|
2014-07-03 19:06:07 +04:00
|
|
|
beforeModel: function () {
|
|
|
|
if (this.get('session').isAuthenticated) {
|
2015-05-26 05:10:50 +03:00
|
|
|
this.get('notifications').showWarn('You need to sign out to register as a new user.', {delayed: true});
|
2015-05-13 08:27:59 +03:00
|
|
|
this.transitionTo(Configuration.routeAfterAuthentication);
|
2014-07-03 19:06:07 +04:00
|
|
|
}
|
|
|
|
},
|
2014-09-19 08:50:15 +04:00
|
|
|
|
|
|
|
model: function (params) {
|
2014-08-25 06:34:26 +04:00
|
|
|
var self = this,
|
|
|
|
tokenText,
|
2014-08-06 19:08:02 +04:00
|
|
|
email,
|
2015-01-12 06:15:13 +03:00
|
|
|
model = Ember.Object.create(),
|
2014-12-08 11:34:40 +03:00
|
|
|
re = /^(?:[A-Za-z0-9_\-]{4})*(?:[A-Za-z0-9_\-]{2}|[A-Za-z0-9_\-]{3})?$/;
|
2014-09-19 08:50:15 +04:00
|
|
|
|
|
|
|
return new Ember.RSVP.Promise(function (resolve) {
|
|
|
|
if (!re.test(params.token)) {
|
2015-05-26 05:10:50 +03:00
|
|
|
self.get('notifications').showError('Invalid token.', {delayed: true});
|
2014-09-19 08:50:15 +04:00
|
|
|
|
|
|
|
return resolve(self.transitionTo('signin'));
|
2014-08-06 19:08:02 +04:00
|
|
|
}
|
2014-08-25 06:34:26 +04:00
|
|
|
|
2014-09-19 08:50:15 +04:00
|
|
|
tokenText = atob(params.token);
|
|
|
|
email = tokenText.split('|')[1];
|
|
|
|
|
2015-01-12 06:15:13 +03:00
|
|
|
model.set('email', email);
|
|
|
|
model.set('token', params.token);
|
2014-09-19 08:50:15 +04:00
|
|
|
|
2015-05-27 03:41:12 +03:00
|
|
|
return ajax({
|
2014-09-19 08:50:15 +04:00
|
|
|
url: self.get('ghostPaths.url').api('authentication', 'invitation'),
|
2014-08-25 06:34:26 +04:00
|
|
|
type: 'GET',
|
|
|
|
dataType: 'json',
|
|
|
|
data: {
|
|
|
|
email: email
|
|
|
|
}
|
|
|
|
}).then(function (response) {
|
|
|
|
if (response && response.invitation && response.invitation[0].valid === false) {
|
2015-05-26 05:10:50 +03:00
|
|
|
self.get('notifications').showError('The invitation does not exist or is no longer valid.', {delayed: true});
|
2014-09-19 08:50:15 +04:00
|
|
|
|
|
|
|
return resolve(self.transitionTo('signin'));
|
2014-08-25 06:34:26 +04:00
|
|
|
}
|
2014-09-19 08:50:15 +04:00
|
|
|
|
|
|
|
resolve(model);
|
|
|
|
}).catch(function () {
|
|
|
|
resolve(model);
|
2014-08-25 06:34:26 +04:00
|
|
|
});
|
2014-09-19 08:50:15 +04:00
|
|
|
});
|
|
|
|
},
|
2014-08-25 06:34:26 +04:00
|
|
|
|
2014-09-19 08:50:15 +04:00
|
|
|
deactivate: function () {
|
|
|
|
this._super();
|
|
|
|
|
|
|
|
// clear the properties that hold the sensitive data from the controller
|
2014-10-25 01:09:50 +04:00
|
|
|
this.controllerFor('signup').setProperties({email: '', password: '', token: ''});
|
2014-07-03 19:06:07 +04:00
|
|
|
}
|
2014-03-10 07:44:08 +04:00
|
|
|
});
|