2014-06-24 04:47:51 +04:00
|
|
|
import ajax from 'ghost/utils/ajax';
|
|
|
|
import ValidationEngine from 'ghost/mixins/validation-engine';
|
|
|
|
|
|
|
|
var SignupController = Ember.ObjectController.extend(ValidationEngine, {
|
|
|
|
name: null,
|
|
|
|
email: null,
|
|
|
|
password: null,
|
|
|
|
submitting: false,
|
|
|
|
|
|
|
|
// ValidationEngine settings
|
|
|
|
validationType: 'signup',
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
signup: function () {
|
|
|
|
var self = this;
|
|
|
|
|
2014-06-25 20:56:09 +04:00
|
|
|
// @TODO This should call closePassive() to only close passive notifications
|
|
|
|
self.notifications.closeAll();
|
|
|
|
|
2014-06-24 04:47:51 +04:00
|
|
|
this.toggleProperty('submitting');
|
|
|
|
this.validate({ format: false }).then(function () {
|
|
|
|
ajax({
|
|
|
|
url: self.get('ghostPaths').adminUrl('signup'),
|
|
|
|
type: 'POST',
|
|
|
|
headers: {
|
|
|
|
'X-CSRF-Token': self.get('csrf')
|
|
|
|
},
|
|
|
|
data: self.getProperties('name', 'email', 'password')
|
2014-06-30 17:34:36 +04:00
|
|
|
}).then(function () {
|
|
|
|
self.get('session').authenticate('ember-simple-auth-authenticator:oauth2-password-grant', {
|
|
|
|
identification: self.get('email'),
|
|
|
|
password: self.get('password')
|
|
|
|
}).then(function () {
|
|
|
|
self.store.find('user', 'me').then(function (user) {
|
2014-06-24 04:47:51 +04:00
|
|
|
self.send('signedIn', user);
|
2014-06-30 17:34:36 +04:00
|
|
|
self.notifications.clear();
|
|
|
|
self.transitionToRoute(Ember.SimpleAuth.routeAfterAuthentication);
|
2014-06-24 04:47:51 +04:00
|
|
|
});
|
2014-06-30 17:34:36 +04:00
|
|
|
});
|
2014-06-24 04:47:51 +04:00
|
|
|
}, function (resp) {
|
|
|
|
self.toggleProperty('submitting');
|
|
|
|
self.notifications.showAPIError(resp);
|
|
|
|
});
|
|
|
|
}, function (errors) {
|
|
|
|
self.toggleProperty('submitting');
|
|
|
|
self.notifications.showErrors(errors);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default SignupController;
|