mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 18:01:36 +03:00
09bcbb9463
ref #5652 - validations can be in default, success or error state - adds check for 'hasValidated' if the validations haven't fired yet, the field is in the default state - hasValidated is an Ember.Array which tracks the state for each field
134 lines
5.1 KiB
JavaScript
134 lines
5.1 KiB
JavaScript
import Ember from 'ember';
|
|
import {request as ajax} from 'ic-ajax';
|
|
import ValidationEngine from 'ghost/mixins/validation-engine';
|
|
|
|
export default Ember.Controller.extend(ValidationEngine, {
|
|
size: 90,
|
|
blogTitle: null,
|
|
name: null,
|
|
email: '',
|
|
validEmail: '',
|
|
password: null,
|
|
image: null,
|
|
blogCreated: false,
|
|
submitting: false,
|
|
flowErrors: '',
|
|
|
|
ghostPaths: Ember.inject.service('ghost-paths'),
|
|
notifications: Ember.inject.service(),
|
|
application: Ember.inject.controller(),
|
|
config: Ember.inject.service(),
|
|
|
|
// ValidationEngine settings
|
|
validationType: 'setup',
|
|
|
|
/**
|
|
* Uploads the given data image, then sends the changed user image property to the server
|
|
* @param {Object} user User object, returned from the 'setup' api call
|
|
* @return {Ember.RSVP.Promise} A promise that takes care of both calls
|
|
*/
|
|
sendImage: function (user) {
|
|
var self = this,
|
|
image = this.get('image');
|
|
|
|
return new Ember.RSVP.Promise(function (resolve, reject) {
|
|
image.formData = {};
|
|
image.submit()
|
|
.success(function (response) {
|
|
user.image = response;
|
|
ajax({
|
|
url: self.get('ghostPaths.url').api('users', user.id.toString()),
|
|
type: 'PUT',
|
|
data: {
|
|
users: [user]
|
|
}
|
|
}).then(resolve).catch(reject);
|
|
})
|
|
.error(reject);
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
preValidate: function (model) {
|
|
// Only triggers validation if a value has been entered, preventing empty errors on focusOut
|
|
if (this.get(model)) {
|
|
if (model === 'email') {
|
|
this.send('handleEmail');
|
|
}
|
|
this.validate({property: model});
|
|
}
|
|
},
|
|
|
|
setup: function () {
|
|
var self = this,
|
|
setupProperties = ['blogTitle', 'name', 'email', 'password', 'image'],
|
|
data = self.getProperties(setupProperties),
|
|
notifications = this.get('notifications'),
|
|
config = this.get('config'),
|
|
method = this.get('blogCreated') ? 'PUT' : 'POST';
|
|
|
|
this.toggleProperty('submitting');
|
|
this.set('flowErrors', '');
|
|
|
|
this.get('hasValidated').addObjects(setupProperties);
|
|
this.validate().then(function () {
|
|
ajax({
|
|
url: self.get('ghostPaths.url').api('authentication', 'setup'),
|
|
type: method,
|
|
data: {
|
|
setup: [{
|
|
name: data.name,
|
|
email: data.email,
|
|
password: data.password,
|
|
blogTitle: data.blogTitle
|
|
}]
|
|
}
|
|
}).then(function (result) {
|
|
config.set('blogTitle', data.blogTitle);
|
|
// Don't call the success handler, otherwise we will be redirected to admin
|
|
self.get('application').set('skipAuthSuccessHandler', true);
|
|
self.get('session').authenticate('ghost-authenticator:oauth2-password-grant', {
|
|
identification: self.get('email'),
|
|
password: self.get('password')
|
|
}).then(function () {
|
|
self.set('blogCreated', true);
|
|
if (data.image) {
|
|
self.sendImage(result.users[0])
|
|
.then(function () {
|
|
self.toggleProperty('submitting');
|
|
self.transitionToRoute('setup.three');
|
|
}).catch(function (resp) {
|
|
self.toggleProperty('submitting');
|
|
notifications.showAPIError(resp);
|
|
});
|
|
} else {
|
|
self.toggleProperty('submitting');
|
|
self.transitionToRoute('setup.three');
|
|
}
|
|
});
|
|
}).catch(function (resp) {
|
|
self.toggleProperty('submitting');
|
|
if (resp && resp.jqXHR && resp.jqXHR.responseJSON && resp.jqXHR.responseJSON.errors) {
|
|
self.set('flowErrors', resp.jqXHR.responseJSON.errors[0].message);
|
|
} else {
|
|
notifications.showAPIError(resp);
|
|
}
|
|
});
|
|
}).catch(function () {
|
|
self.toggleProperty('submitting');
|
|
self.set('flowErrors', 'Please fill out the form to setup your blog.');
|
|
});
|
|
},
|
|
setImage: function (image) {
|
|
this.set('image', image);
|
|
},
|
|
handleEmail: function () {
|
|
var self = this;
|
|
|
|
this.validate({property: 'email'}).then(function () {
|
|
self.set('validEmail', self.get('email'));
|
|
});
|
|
}
|
|
}
|
|
});
|