2014-06-25 16:12:48 +04:00
|
|
|
import ajax from 'ghost/utils/ajax';
|
|
|
|
import ValidationEngine from 'ghost/mixins/validation-engine';
|
|
|
|
|
|
|
|
var SetupController = Ember.ObjectController.extend(ValidationEngine, {
|
|
|
|
blogTitle: null,
|
|
|
|
name: null,
|
|
|
|
email: null,
|
|
|
|
password: null,
|
|
|
|
submitting: false,
|
|
|
|
|
|
|
|
// ValidationEngine settings
|
|
|
|
validationType: 'setup',
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
setup: function () {
|
|
|
|
var self = this;
|
|
|
|
|
2014-06-30 01:45:03 +04:00
|
|
|
self.notifications.closePassive();
|
2014-06-25 16:12:48 +04:00
|
|
|
|
|
|
|
this.toggleProperty('submitting');
|
|
|
|
this.validate({ format: false }).then(function () {
|
|
|
|
ajax({
|
|
|
|
url: self.get('ghostPaths').adminUrl('setup'),
|
|
|
|
type: 'POST',
|
|
|
|
data: self.getProperties('blogTitle', '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 () {
|
2014-07-01 19:58:26 +04:00
|
|
|
self.send('signedIn');
|
|
|
|
self.transitionToRoute(Ember.SimpleAuth.routeAfterAuthentication);
|
2014-06-30 17:34:36 +04:00
|
|
|
});
|
2014-06-25 16:12:48 +04:00
|
|
|
}, function (resp) {
|
|
|
|
self.toggleProperty('submitting');
|
|
|
|
self.notifications.showAPIError(resp);
|
|
|
|
});
|
|
|
|
}, function (errors) {
|
|
|
|
self.toggleProperty('submitting');
|
|
|
|
self.notifications.showErrors(errors);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default SetupController;
|