mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
273e220327
refs 829e8ed010
- i18n is used everywhere but only requires shared or external packages, therefore it's a good candidate for living in shared
- this reduces invalid requires across frontend and server, and lets us use it everywhere until we come up with a better option
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
const errors = require('@tryghost/errors');
|
|
const i18n = require('../../../shared/i18n');
|
|
const models = require('../../models');
|
|
const security = require('@tryghost/security');
|
|
|
|
async function accept(invitation) {
|
|
const data = invitation.invitation[0];
|
|
const inviteToken = security.url.decodeBase64(data.token);
|
|
const options = {context: {internal: true}};
|
|
|
|
let invite = await models.Invite.findOne({token: inviteToken, status: 'sent'}, options);
|
|
|
|
if (!invite) {
|
|
throw new errors.NotFoundError({message: i18n.t('errors.api.invites.inviteNotFound')});
|
|
}
|
|
|
|
if (invite.get('expires') < Date.now()) {
|
|
throw new errors.NotFoundError({message: i18n.t('errors.api.invites.inviteExpired')});
|
|
}
|
|
|
|
let user = await models.User.findOne({email: data.email});
|
|
if (user) {
|
|
throw new errors.ValidationError({
|
|
message: i18n.t('errors.api.invites.inviteEmailAlreadyExist.message'),
|
|
context: i18n.t('errors.api.invites.inviteEmailAlreadyExist.context'),
|
|
help: i18n.t('errors.api.invites.inviteEmailAlreadyExist.help')
|
|
});
|
|
}
|
|
|
|
await models.User.add({
|
|
email: data.email,
|
|
name: data.name,
|
|
password: data.password,
|
|
roles: [invite.toJSON().role_id]
|
|
}, options);
|
|
|
|
return invite.destroy(options);
|
|
}
|
|
|
|
module.exports = accept;
|