2016-09-21 17:48:14 +03:00
|
|
|
var _ = require('lodash'),
|
|
|
|
Promise = require('bluebird'),
|
|
|
|
pipeline = require('../utils/pipeline'),
|
|
|
|
dataProvider = require('../models'),
|
|
|
|
settings = require('./settings'),
|
|
|
|
mail = require('./../mail'),
|
|
|
|
apiMail = require('./mail'),
|
|
|
|
globalUtils = require('../utils'),
|
|
|
|
utils = require('./utils'),
|
|
|
|
errors = require('../errors'),
|
2016-10-04 18:33:43 +03:00
|
|
|
logging = require('../logging'),
|
2016-09-21 17:48:14 +03:00
|
|
|
config = require('../config'),
|
|
|
|
i18n = require('../i18n'),
|
|
|
|
docName = 'invites',
|
2016-11-16 12:33:44 +03:00
|
|
|
allowedIncludes = ['created_by', 'updated_by'],
|
2016-09-21 17:48:14 +03:00
|
|
|
invites;
|
|
|
|
|
|
|
|
invites = {
|
|
|
|
browse: function browse(options) {
|
|
|
|
var tasks;
|
|
|
|
|
|
|
|
function modelQuery(options) {
|
|
|
|
return dataProvider.Invite.findPage(options);
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks = [
|
|
|
|
utils.validate(docName, {opts: utils.browseDefaultOptions}),
|
|
|
|
utils.handlePublicPermissions(docName, 'browse'),
|
|
|
|
utils.convertOptions(allowedIncludes),
|
|
|
|
modelQuery
|
|
|
|
];
|
|
|
|
|
|
|
|
return pipeline(tasks, options);
|
|
|
|
},
|
|
|
|
|
|
|
|
read: function read(options) {
|
|
|
|
var attrs = ['id', 'email'],
|
|
|
|
tasks;
|
|
|
|
|
|
|
|
function modelQuery(options) {
|
|
|
|
return dataProvider.Invite.findOne(options.data, _.omit(options, ['data']));
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks = [
|
|
|
|
utils.validate(docName, {attrs: attrs}),
|
|
|
|
utils.handlePublicPermissions(docName, 'read'),
|
|
|
|
utils.convertOptions(allowedIncludes),
|
|
|
|
modelQuery
|
|
|
|
];
|
|
|
|
|
|
|
|
return pipeline(tasks, options)
|
|
|
|
.then(function formatResponse(result) {
|
|
|
|
if (result) {
|
|
|
|
return {invites: [result.toJSON(options)]};
|
|
|
|
}
|
|
|
|
|
2016-10-06 15:27:35 +03:00
|
|
|
return Promise.reject(new errors.NotFoundError({message: i18n.t('errors.api.invites.inviteNotFound')}));
|
2016-09-21 17:48:14 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function destroy(options) {
|
|
|
|
var tasks;
|
|
|
|
|
|
|
|
function modelQuery(options) {
|
|
|
|
return dataProvider.Invite.findOne({id: options.id}, _.omit(options, ['data']))
|
|
|
|
.then(function (invite) {
|
|
|
|
if (!invite) {
|
2016-10-06 15:27:35 +03:00
|
|
|
throw new errors.NotFoundError({message: i18n.t('errors.api.invites.inviteNotFound')});
|
2016-09-21 17:48:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return invite.destroy(options).return(null);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks = [
|
|
|
|
utils.validate(docName, {opts: utils.idDefaultOptions}),
|
|
|
|
utils.handlePermissions(docName, 'destroy'),
|
|
|
|
utils.convertOptions(allowedIncludes),
|
|
|
|
modelQuery
|
|
|
|
];
|
|
|
|
|
|
|
|
return pipeline(tasks, options);
|
|
|
|
},
|
|
|
|
|
|
|
|
add: function add(object, options) {
|
|
|
|
var tasks,
|
|
|
|
loggedInUser = options.context.user,
|
|
|
|
emailData,
|
|
|
|
invite;
|
|
|
|
|
|
|
|
function addInvite(options) {
|
|
|
|
var data = options.data;
|
|
|
|
|
2017-01-25 15:07:31 +03:00
|
|
|
return dataProvider.Invite.add(data.invites[0], _.omit(options, 'data'))
|
2016-09-21 17:48:14 +03:00
|
|
|
.then(function (_invite) {
|
|
|
|
invite = _invite;
|
|
|
|
|
|
|
|
return settings.read({key: 'title'});
|
|
|
|
})
|
|
|
|
.then(function (response) {
|
2017-01-23 11:22:37 +03:00
|
|
|
var baseUrl = config.get('forceAdminSSL') ? globalUtils.url.urlFor('home', {secure: true}, true) : globalUtils.url.urlFor('home', true);
|
2016-09-21 17:48:14 +03:00
|
|
|
|
|
|
|
emailData = {
|
|
|
|
blogName: response.settings[0].value,
|
|
|
|
invitedByName: loggedInUser.get('name'),
|
|
|
|
invitedByEmail: loggedInUser.get('email'),
|
|
|
|
// @TODO: resetLink sounds weird
|
2016-11-14 17:38:55 +03:00
|
|
|
resetLink: globalUtils.url.urlJoin(baseUrl, 'ghost/signup', globalUtils.encodeBase64URLsafe(invite.get('token')), '/')
|
2016-09-21 17:48:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
return mail.utils.generateContent({data: emailData, template: 'invite-user'});
|
|
|
|
}).then(function (emailContent) {
|
|
|
|
var payload = {
|
|
|
|
mail: [{
|
|
|
|
message: {
|
|
|
|
to: invite.get('email'),
|
|
|
|
subject: i18n.t('common.api.users.mail.invitedByName', {
|
|
|
|
invitedByName: emailData.invitedByName,
|
|
|
|
blogName: emailData.blogName
|
|
|
|
}),
|
|
|
|
html: emailContent.html,
|
|
|
|
text: emailContent.text
|
|
|
|
},
|
|
|
|
options: {}
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
|
|
|
|
return apiMail.send(payload, {context: {internal: true}});
|
|
|
|
}).then(function () {
|
|
|
|
options.id = invite.id;
|
|
|
|
return dataProvider.Invite.edit({status: 'sent'}, options);
|
|
|
|
}).then(function () {
|
|
|
|
invite.set('status', 'sent');
|
|
|
|
var inviteAsJSON = invite.toJSON();
|
|
|
|
return {invites: [inviteAsJSON]};
|
|
|
|
}).catch(function (error) {
|
|
|
|
if (error && error.errorType === 'EmailError') {
|
|
|
|
error.message = i18n.t('errors.api.invites.errorSendingEmail.error', {message: error.message}) + ' ' +
|
|
|
|
i18n.t('errors.api.invites.errorSendingEmail.help');
|
2016-10-04 18:33:43 +03:00
|
|
|
logging.warn(error.message);
|
2016-09-21 17:48:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.reject(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function destroyOldInvite(options) {
|
|
|
|
var data = options.data;
|
|
|
|
|
|
|
|
return dataProvider.Invite.findOne({email: data.invites[0].email}, _.omit(options, 'data'))
|
|
|
|
.then(function (invite) {
|
|
|
|
if (!invite) {
|
|
|
|
return Promise.resolve(options);
|
|
|
|
}
|
|
|
|
|
|
|
|
return invite.destroy(options);
|
|
|
|
})
|
|
|
|
.then(function () {
|
|
|
|
return options;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function validation(options) {
|
|
|
|
if (!options.data.invites[0].email) {
|
2016-10-06 15:27:35 +03:00
|
|
|
return Promise.reject(new errors.ValidationError({message: i18n.t('errors.api.invites.emailIsRequired')}));
|
2016-09-21 17:48:14 +03:00
|
|
|
}
|
|
|
|
|
2016-11-16 12:33:44 +03:00
|
|
|
if (!options.data.invites[0].role_id) {
|
2016-10-06 15:27:35 +03:00
|
|
|
return Promise.reject(new errors.ValidationError({message: i18n.t('errors.api.invites.roleIsRequired')}));
|
2016-09-21 17:48:14 +03:00
|
|
|
}
|
|
|
|
|
2017-01-25 15:07:31 +03:00
|
|
|
// @TODO remove when we have a new permission unit
|
2016-09-21 17:48:14 +03:00
|
|
|
// Make sure user is allowed to add a user with this role
|
2017-01-25 15:07:31 +03:00
|
|
|
// We cannot use permissible because we don't have access to the role_id!!!
|
|
|
|
// Adding a permissible function to the invite model, doesn't give us much context of the invite we would like to add
|
|
|
|
// As we are looking forward to replace the permission system completely, we do not add a hack here
|
|
|
|
return dataProvider.Role.findOne({id: options.data.invites[0].role_id}).then(function (roleToInvite) {
|
|
|
|
if (!roleToInvite) {
|
2016-11-16 12:33:44 +03:00
|
|
|
return Promise.reject(new errors.NotFoundError({message: i18n.t('errors.api.invites.roleNotFound')}));
|
|
|
|
}
|
|
|
|
|
2017-01-25 15:07:31 +03:00
|
|
|
if (roleToInvite.get('name') === 'Owner') {
|
2016-10-06 15:27:35 +03:00
|
|
|
return Promise.reject(new errors.NoPermissionError({message: i18n.t('errors.api.invites.notAllowedToInviteOwner')}));
|
2016-09-21 17:48:14 +03:00
|
|
|
}
|
2017-01-25 15:07:31 +03:00
|
|
|
|
|
|
|
var loggedInUserRole = loggedInUser.related('roles').models[0].get('name'),
|
|
|
|
allowed = [];
|
|
|
|
|
|
|
|
if (loggedInUserRole === 'Owner' || loggedInUserRole === 'Administrator') {
|
|
|
|
allowed = ['Administrator', 'Editor', 'Author'];
|
|
|
|
} else if (loggedInUserRole === 'Editor') {
|
|
|
|
allowed = ['Author'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (allowed.indexOf(roleToInvite.get('name')) === -1) {
|
|
|
|
return Promise.reject(new errors.NoPermissionError({
|
|
|
|
message: i18n.t('errors.api.invites.notAllowedToInvite')
|
|
|
|
}));
|
|
|
|
}
|
2016-09-21 17:48:14 +03:00
|
|
|
}).then(function () {
|
|
|
|
return options;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-01-25 15:07:31 +03:00
|
|
|
function fetchLoggedInUser(options) {
|
|
|
|
return dataProvider.User.findOne({id: loggedInUser}, _.merge({}, options, {include: ['roles']}))
|
|
|
|
.then(function (user) {
|
|
|
|
if (!user) {
|
|
|
|
return Promise.reject(new errors.NotFoundError({message: i18n.t('errors.api.users.userNotFound')}));
|
|
|
|
}
|
|
|
|
|
|
|
|
loggedInUser = user;
|
|
|
|
return options;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-09-21 17:48:14 +03:00
|
|
|
tasks = [
|
|
|
|
utils.validate(docName, {opts: ['email']}),
|
|
|
|
utils.handlePermissions(docName, 'add'),
|
|
|
|
utils.convertOptions(allowedIncludes),
|
2017-01-25 15:07:31 +03:00
|
|
|
fetchLoggedInUser,
|
2016-09-21 17:48:14 +03:00
|
|
|
validation,
|
|
|
|
destroyOldInvite,
|
|
|
|
addInvite
|
|
|
|
];
|
|
|
|
|
|
|
|
return pipeline(tasks, object, options);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = invites;
|