Ghost/core/server/services/invitations/accept.js
Hannah Wolfe 273e220327 Moved i18n to shared
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
2021-05-04 13:03:38 +01:00

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;