2016-07-06 22:47:30 +03:00
|
|
|
import Controller from 'ember-controller';
|
|
|
|
import RSVP from 'rsvp';
|
2017-04-19 13:27:32 +03:00
|
|
|
import ValidationEngine from 'ghost-admin/mixins/validation-engine';
|
2016-07-06 22:47:30 +03:00
|
|
|
import injectController from 'ember-controller/inject';
|
2017-04-19 13:27:32 +03:00
|
|
|
import injectService from 'ember-service/inject';
|
2016-09-26 16:07:18 +03:00
|
|
|
import {isInvalidError} from 'ember-ajax/errors';
|
2017-04-19 13:27:32 +03:00
|
|
|
import {isVersionMismatchError} from 'ghost-admin/services/ajax';
|
|
|
|
import {task} from 'ember-concurrency';
|
2015-03-29 21:10:53 +03:00
|
|
|
|
2016-07-06 22:47:30 +03:00
|
|
|
const {Promise} = RSVP;
|
2015-10-28 14:36:45 +03:00
|
|
|
|
|
|
|
export default Controller.extend(ValidationEngine, {
|
2017-04-19 13:27:32 +03:00
|
|
|
ajax: injectService(),
|
2016-07-06 22:47:30 +03:00
|
|
|
application: injectController(),
|
|
|
|
config: injectService(),
|
2017-04-19 13:27:32 +03:00
|
|
|
ghostPaths: injectService(),
|
|
|
|
notifications: injectService(),
|
2016-07-06 22:47:30 +03:00
|
|
|
session: injectService(),
|
2017-03-17 20:16:21 +03:00
|
|
|
settings: injectService(),
|
2017-04-19 13:27:32 +03:00
|
|
|
torii: injectService(),
|
2015-05-27 23:10:47 +03:00
|
|
|
|
2015-03-29 21:10:53 +03:00
|
|
|
// ValidationEngine settings
|
|
|
|
validationType: 'setup',
|
|
|
|
|
2017-04-19 13:27:32 +03:00
|
|
|
blogCreated: false,
|
|
|
|
blogTitle: null,
|
|
|
|
email: '',
|
|
|
|
flowErrors: '',
|
|
|
|
image: null,
|
|
|
|
name: null,
|
|
|
|
password: null,
|
|
|
|
|
|
|
|
setup: task(function* () {
|
|
|
|
if (this.get('config.ghostOAuth')) {
|
|
|
|
return yield this._oauthSetup();
|
|
|
|
} else {
|
|
|
|
return yield this._passwordSetup();
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
// TODO: remove duplication with controllers/signin
|
|
|
|
authenticateWithGhostOrg: task(function* () {
|
|
|
|
let authStrategy = 'authenticator:oauth2-ghost';
|
|
|
|
|
|
|
|
this.set('flowErrors', '');
|
|
|
|
|
|
|
|
try {
|
|
|
|
let authentication = yield this.get('torii')
|
|
|
|
.open('ghost-oauth2', {type: 'setup'});
|
|
|
|
|
|
|
|
yield this.get('authenticate').perform(authStrategy, [authentication]);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
this.set('flowErrors', 'Authentication with Ghost.org denied or failed');
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}).drop(),
|
|
|
|
|
|
|
|
authenticate: task(function* (authStrategy, authentication) {
|
|
|
|
// we don't want to redirect after sign-in during setup
|
|
|
|
this.set('session.skipAuthSuccessHandler', true);
|
|
|
|
|
|
|
|
try {
|
|
|
|
let authResult = yield this.get('session')
|
|
|
|
.authenticate(authStrategy, ...authentication);
|
|
|
|
|
|
|
|
this.get('errors').remove('session');
|
|
|
|
|
|
|
|
return authResult;
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
if (error && error.errors) {
|
|
|
|
if (isVersionMismatchError(error)) {
|
|
|
|
return this.get('notifications').showAPIError(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
error.errors.forEach((err) => {
|
|
|
|
err.message = err.message.htmlSafe();
|
|
|
|
});
|
|
|
|
|
|
|
|
this.set('flowErrors', error.errors[0].message.string);
|
|
|
|
} else {
|
|
|
|
// Connection errors don't return proper status message, only req.body
|
|
|
|
this.get('notifications').showAlert('There was a problem on the server.', {type: 'error', key: 'session.authenticate.failed'});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
2015-05-28 08:52:41 +03:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2017-04-19 13:27:32 +03:00
|
|
|
_sendImage(user) {
|
2015-10-28 14:36:45 +03:00
|
|
|
let image = this.get('image');
|
2015-05-28 08:52:41 +03:00
|
|
|
|
2016-01-19 16:03:27 +03:00
|
|
|
return new Promise((resolve, reject) => {
|
2015-05-28 08:52:41 +03:00
|
|
|
image.formData = {};
|
|
|
|
image.submit()
|
2015-12-18 22:18:13 +03:00
|
|
|
.success((response) => {
|
2016-01-18 18:37:14 +03:00
|
|
|
let usersUrl = this.get('ghostPaths.url').api('users', user.id.toString());
|
2015-05-28 08:52:41 +03:00
|
|
|
user.image = response;
|
2016-09-24 18:48:06 +03:00
|
|
|
|
|
|
|
return this.get('ajax').put(usersUrl, {
|
2015-05-28 08:52:41 +03:00
|
|
|
data: {
|
|
|
|
users: [user]
|
|
|
|
}
|
|
|
|
}).then(resolve).catch(reject);
|
|
|
|
})
|
|
|
|
.error(reject);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-09-30 14:43:40 +03:00
|
|
|
_passwordSetup() {
|
|
|
|
let setupProperties = ['blogTitle', 'name', 'email', 'password'];
|
|
|
|
let data = this.getProperties(setupProperties);
|
|
|
|
let config = this.get('config');
|
|
|
|
let method = this.get('blogCreated') ? 'put' : 'post';
|
|
|
|
|
|
|
|
this.set('flowErrors', '');
|
|
|
|
|
|
|
|
this.get('hasValidated').addObjects(setupProperties);
|
2016-09-24 18:48:06 +03:00
|
|
|
|
|
|
|
return this.validate().then(() => {
|
2016-09-30 14:43:40 +03:00
|
|
|
let authUrl = this.get('ghostPaths.url').api('authentication', 'setup');
|
2016-09-24 18:48:06 +03:00
|
|
|
|
|
|
|
return this.get('ajax')[method](authUrl, {
|
2016-09-30 14:43:40 +03:00
|
|
|
data: {
|
|
|
|
setup: [{
|
|
|
|
name: data.name,
|
|
|
|
email: data.email,
|
|
|
|
password: data.password,
|
|
|
|
blogTitle: data.blogTitle
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}).then((result) => {
|
|
|
|
config.set('blogTitle', data.blogTitle);
|
|
|
|
|
|
|
|
// don't try to login again if we are already logged in
|
|
|
|
if (this.get('session.isAuthenticated')) {
|
2017-04-19 13:27:32 +03:00
|
|
|
return this._afterAuthentication(result);
|
2016-09-30 14:43:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Don't call the success handler, otherwise we will be redirected to admin
|
|
|
|
this.set('session.skipAuthSuccessHandler', true);
|
2016-09-24 18:48:06 +03:00
|
|
|
|
|
|
|
return this.get('session').authenticate('authenticator:oauth2', this.get('email'), this.get('password')).then(() => {
|
2016-09-30 14:43:40 +03:00
|
|
|
this.set('blogCreated', true);
|
2017-04-19 13:27:32 +03:00
|
|
|
return this._afterAuthentication(result);
|
2016-09-30 14:43:40 +03:00
|
|
|
}).catch((error) => {
|
|
|
|
this._handleAuthenticationError(error);
|
|
|
|
}).finally(() => {
|
|
|
|
this.set('session.skipAuthSuccessHandler', undefined);
|
|
|
|
});
|
|
|
|
}).catch((error) => {
|
|
|
|
this._handleSaveError(error);
|
|
|
|
});
|
|
|
|
}).catch(() => {
|
|
|
|
this.set('flowErrors', 'Please fill out the form to setup your blog.');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-04-19 13:27:32 +03:00
|
|
|
// NOTE: for OAuth ghost is in the "setup completed" step as soon
|
2016-09-30 14:43:40 +03:00
|
|
|
// as a user has been authenticated so we need to use the standard settings
|
|
|
|
// update to set the blog title before redirecting
|
|
|
|
_oauthSetup() {
|
|
|
|
let blogTitle = this.get('blogTitle');
|
|
|
|
let config = this.get('config');
|
|
|
|
|
|
|
|
this.get('hasValidated').addObjects(['blogTitle', 'session']);
|
|
|
|
|
|
|
|
return this.validate().then(() => {
|
2017-03-17 20:16:21 +03:00
|
|
|
return this.get('settings').fetch()
|
2016-09-30 14:43:40 +03:00
|
|
|
.then((settings) => {
|
|
|
|
settings.set('title', blogTitle);
|
|
|
|
|
|
|
|
return settings.save()
|
|
|
|
.then((settings) => {
|
|
|
|
// update the config so that the blog title shown in
|
|
|
|
// the nav bar is also updated
|
|
|
|
config.set('blogTitle', settings.get('title'));
|
|
|
|
|
|
|
|
// this.blogCreated is used by step 3 to check if step 2
|
|
|
|
// has been completed
|
|
|
|
this.set('blogCreated', true);
|
2017-04-19 13:27:32 +03:00
|
|
|
return this._afterAuthentication(settings);
|
2016-09-30 14:43:40 +03:00
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
this._handleSaveError(error);
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
this.set('session.skipAuthSuccessHandler', undefined);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-04-19 13:27:32 +03:00
|
|
|
_handleSaveError(resp) {
|
|
|
|
if (isInvalidError(resp)) {
|
|
|
|
this.set('flowErrors', resp.errors[0].message);
|
|
|
|
} else {
|
|
|
|
this.get('notifications').showAPIError(resp, {key: 'setup.blog-details'});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_handleAuthenticationError(error) {
|
|
|
|
if (error && error.errors) {
|
|
|
|
this.set('flowErrors', error.errors[0].message);
|
|
|
|
} else {
|
|
|
|
// Connection errors don't return proper status message, only req.body
|
|
|
|
this.get('notifications').showAlert('There was a problem on the server.', {type: 'error', key: 'setup.authenticate.failed'});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_afterAuthentication(result) {
|
|
|
|
if (this.get('image')) {
|
|
|
|
return this._sendImage(result.users[0])
|
|
|
|
.then(() => {
|
|
|
|
|
|
|
|
// fetch settings for synchronous access before transitioning
|
|
|
|
return this.get('settings').fetch().then(() => {
|
|
|
|
return this.transitionToRoute('setup.three');
|
|
|
|
});
|
|
|
|
}).catch((resp) => {
|
|
|
|
this.get('notifications').showAPIError(resp, {key: 'setup.blog-details'});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// fetch settings for synchronous access before transitioning
|
|
|
|
return this.get('settings').fetch().then(() => {
|
|
|
|
return this.transitionToRoute('setup.three');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-03-29 21:10:53 +03:00
|
|
|
actions: {
|
2017-04-19 13:27:32 +03:00
|
|
|
setup() {
|
|
|
|
this.get('setup').perform();
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
preValidate(model) {
|
2015-08-27 23:28:41 +03:00
|
|
|
// Only triggers validation if a value has been entered, preventing empty errors on focusOut
|
2015-08-27 22:49:36 +03:00
|
|
|
if (this.get(model)) {
|
2016-09-24 18:48:06 +03:00
|
|
|
return this.validate({property: model});
|
2015-08-27 22:49:36 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
setImage(image) {
|
2015-05-28 08:52:41 +03:00
|
|
|
this.set('image', image);
|
2015-03-29 21:10:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|