2017-08-22 10:53:26 +03:00
|
|
|
import Controller from '@ember/controller';
|
2016-07-06 22:47:30 +03:00
|
|
|
import RSVP from 'rsvp';
|
2016-05-24 15:06:59 +03:00
|
|
|
import ValidationEngine from 'ghost-admin/mixins/validation-engine';
|
2017-04-13 15:05:29 +03:00
|
|
|
import {
|
|
|
|
VersionMismatchError,
|
|
|
|
isVersionMismatchError
|
|
|
|
} from 'ghost-admin/services/ajax';
|
2017-08-22 10:53:26 +03:00
|
|
|
import {isArray as isEmberArray} from '@ember/array';
|
2017-10-30 12:38:01 +03:00
|
|
|
import {inject as service} from '@ember/service';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {task} from 'ember-concurrency';
|
2014-06-24 04:47:51 +04:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
export default Controller.extend(ValidationEngine, {
|
2017-10-30 12:38:01 +03:00
|
|
|
ajax: service(),
|
|
|
|
config: service(),
|
|
|
|
ghostPaths: service(),
|
|
|
|
notifications: service(),
|
|
|
|
session: service(),
|
|
|
|
settings: service(),
|
2017-04-13 15:05:29 +03:00
|
|
|
|
2014-06-24 04:47:51 +04:00
|
|
|
// ValidationEngine settings
|
|
|
|
validationType: 'signup',
|
|
|
|
|
2015-08-10 20:45:50 +03:00
|
|
|
flowErrors: '',
|
2017-08-18 06:27:42 +03:00
|
|
|
profileImage: null,
|
2015-05-26 05:10:50 +03:00
|
|
|
|
2017-04-13 15:05:29 +03:00
|
|
|
authenticate: task(function* (authStrategy, authentication) {
|
|
|
|
try {
|
|
|
|
let authResult = yield this.get('session')
|
|
|
|
.authenticate(authStrategy, ...authentication);
|
2017-08-02 10:05:59 +03:00
|
|
|
let promises = [];
|
2017-04-13 15:05:29 +03:00
|
|
|
|
2017-08-02 10:05:59 +03:00
|
|
|
promises.pushObject(this.get('settings').fetch());
|
|
|
|
promises.pushObject(this.get('config').fetchPrivate());
|
|
|
|
|
|
|
|
// fetch settings and private config for synchronous access
|
|
|
|
yield RSVP.all(promises);
|
2017-04-13 15:05:29 +03:00
|
|
|
|
|
|
|
return authResult;
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
if (error && error.errors) {
|
|
|
|
// we don't get back an ember-data/ember-ajax error object
|
|
|
|
// back so we need to pass in a null status in order to
|
|
|
|
// test against the payload
|
|
|
|
if (isVersionMismatchError(null, error)) {
|
|
|
|
let versionMismatchError = new VersionMismatchError(error);
|
|
|
|
return this.get('notifications').showAPIError(versionMismatchError);
|
|
|
|
}
|
|
|
|
|
|
|
|
error.errors.forEach((err) => {
|
|
|
|
err.message = err.message.htmlSafe();
|
|
|
|
});
|
|
|
|
|
|
|
|
this.set('flowErrors', error.errors[0].message.string);
|
|
|
|
|
|
|
|
if (error.errors[0].message.string.match(/user with that email/)) {
|
|
|
|
this.get('model.errors').add('identification', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error.errors[0].message.string.match(/password is incorrect/)) {
|
|
|
|
this.get('model.errors').add('password', '');
|
|
|
|
}
|
|
|
|
} 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'});
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).drop(),
|
|
|
|
|
|
|
|
signup: task(function* () {
|
|
|
|
let setupProperties = ['name', 'email', 'password', 'token'];
|
|
|
|
let notifications = this.get('notifications');
|
|
|
|
|
|
|
|
this.set('flowErrors', '');
|
|
|
|
this.get('hasValidated').addObjects(setupProperties);
|
|
|
|
|
|
|
|
try {
|
|
|
|
yield this.validate();
|
|
|
|
yield this._completeInvitation();
|
|
|
|
|
|
|
|
try {
|
|
|
|
yield this._authenticateWithPassword();
|
|
|
|
yield this._sendImage();
|
|
|
|
} catch (error) {
|
|
|
|
notifications.showAPIError(error, {key: 'signup.complete'});
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
// ValidationEngine throws undefined
|
|
|
|
if (!error) {
|
|
|
|
this.set('flowErrors', 'Please fill out the form to complete your sign-up');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error && error.errors && isEmberArray(error.errors)) {
|
|
|
|
if (isVersionMismatchError(error)) {
|
|
|
|
notifications.showAPIError(error);
|
|
|
|
}
|
|
|
|
this.set('flowErrors', error.errors[0].message);
|
|
|
|
} else {
|
|
|
|
notifications.showAPIError(error, {key: 'signup.complete'});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
_completeInvitation() {
|
|
|
|
let authUrl = this.get('ghostPaths.url').api('authentication', 'invitation');
|
|
|
|
let model = this.get('model');
|
|
|
|
|
|
|
|
return this.get('ajax').post(authUrl, {
|
|
|
|
dataType: 'json',
|
|
|
|
data: {
|
|
|
|
invitation: [{
|
|
|
|
name: model.get('name'),
|
|
|
|
email: model.get('email'),
|
|
|
|
password: model.get('password'),
|
|
|
|
token: model.get('token')
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_authenticateWithPassword() {
|
|
|
|
let email = this.get('model.email');
|
|
|
|
let password = this.get('model.password');
|
|
|
|
|
|
|
|
return this.get('session')
|
|
|
|
.authenticate('authenticator:oauth2', email, password);
|
|
|
|
},
|
|
|
|
|
|
|
|
_sendImage() {
|
2017-08-18 06:27:42 +03:00
|
|
|
let formData = new FormData();
|
|
|
|
let imageFile = this.get('profileImage');
|
|
|
|
let uploadUrl = this.get('ghostPaths.url').api('uploads');
|
|
|
|
|
|
|
|
if (imageFile) {
|
|
|
|
formData.append('uploadimage', imageFile, imageFile.name);
|
2015-08-12 03:10:27 +03:00
|
|
|
|
2017-04-13 15:05:29 +03:00
|
|
|
return this.get('session.user').then((user) => {
|
2017-08-18 06:27:42 +03:00
|
|
|
return this.get('ajax').post(uploadUrl, {
|
|
|
|
data: formData,
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
|
|
|
dataType: 'text'
|
|
|
|
}).then((response) => {
|
|
|
|
let imageUrl = JSON.parse(response);
|
|
|
|
let usersUrl = this.get('ghostPaths.url').api('users', user.id.toString());
|
|
|
|
// eslint-disable-next-line
|
|
|
|
user.profile_image = imageUrl;
|
|
|
|
|
|
|
|
return this.get('ajax').put(usersUrl, {
|
|
|
|
data: {
|
|
|
|
users: [user]
|
|
|
|
}
|
|
|
|
});
|
2017-04-13 15:05:29 +03:00
|
|
|
});
|
2015-08-12 03:10:27 +03:00
|
|
|
});
|
2017-04-13 15:05:29 +03:00
|
|
|
}
|
2015-08-12 03:10:27 +03:00
|
|
|
},
|
|
|
|
|
2014-06-24 04:47:51 +04:00
|
|
|
actions: {
|
2015-10-28 14:36:45 +03:00
|
|
|
signup() {
|
2017-04-13 15:05:29 +03:00
|
|
|
this.get('signup').perform();
|
2015-08-12 03:10:27 +03:00
|
|
|
},
|
2015-10-28 14:36:45 +03:00
|
|
|
|
|
|
|
setImage(image) {
|
2017-04-24 20:22:39 +03:00
|
|
|
this.set('profileImage', image);
|
2014-06-24 04:47:51 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|