2019-11-26 20:39:50 +03:00
|
|
|
const _ = require('lodash');
|
2019-11-05 13:02:23 +03:00
|
|
|
const url = require('url');
|
2019-11-06 11:12:45 +03:00
|
|
|
const moment = require('moment');
|
2019-11-04 13:53:42 +03:00
|
|
|
const common = require('../../lib/common');
|
|
|
|
const membersService = require('../members');
|
|
|
|
const bulkEmailService = require('../bulk-email');
|
|
|
|
const models = require('../../models');
|
2019-11-05 08:14:54 +03:00
|
|
|
const postEmailSerializer = require('./post-email-serializer');
|
2020-02-13 08:13:36 +03:00
|
|
|
const config = require('../../config');
|
2019-11-04 13:53:42 +03:00
|
|
|
|
2019-11-27 08:28:21 +03:00
|
|
|
const getEmailData = async (postModel, recipients = []) => {
|
2019-11-26 19:07:04 +03:00
|
|
|
const emailTmpl = await postEmailSerializer.serialize(postModel);
|
2019-11-08 06:56:57 +03:00
|
|
|
emailTmpl.from = membersService.config.getEmailFromAddress();
|
2019-11-04 13:53:42 +03:00
|
|
|
|
2019-11-27 08:28:21 +03:00
|
|
|
const emails = recipients.map(recipient => recipient.email);
|
|
|
|
const emailData = recipients.reduce((emailData, recipient) => {
|
2019-11-06 13:52:45 +03:00
|
|
|
return Object.assign({
|
2019-11-27 08:28:21 +03:00
|
|
|
[recipient.email]: {
|
|
|
|
unique_id: recipient.uuid,
|
|
|
|
unsubscribe_url: postEmailSerializer.createUnsubscribeUrl(recipient.uuid)
|
2019-11-06 13:52:45 +03:00
|
|
|
}
|
|
|
|
}, emailData);
|
|
|
|
}, {});
|
2019-11-04 13:53:42 +03:00
|
|
|
|
2019-11-06 14:32:43 +03:00
|
|
|
return {emailTmpl, emails, emailData};
|
|
|
|
};
|
|
|
|
|
2019-11-26 19:07:04 +03:00
|
|
|
const sendEmail = async (postModel, members) => {
|
|
|
|
const membersToSendTo = members.filter((member) => {
|
|
|
|
return membersService.contentGating.checkPostAccess(postModel.toJSON(), member);
|
|
|
|
});
|
|
|
|
|
|
|
|
const {emailTmpl, emails, emailData} = await getEmailData(postModel, membersToSendTo);
|
2019-11-06 14:32:43 +03:00
|
|
|
|
|
|
|
return bulkEmailService.send(emailTmpl, emails, emailData);
|
2019-11-04 13:53:42 +03:00
|
|
|
};
|
|
|
|
|
2019-11-26 19:07:04 +03:00
|
|
|
const sendTestEmail = async (postModel, toEmails) => {
|
2019-11-27 08:28:21 +03:00
|
|
|
const recipients = toEmails.map((email) => {
|
2019-11-26 19:07:04 +03:00
|
|
|
return {email};
|
|
|
|
});
|
2019-11-27 08:28:21 +03:00
|
|
|
const {emailTmpl, emails, emailData} = await getEmailData(postModel, recipients);
|
2019-12-03 18:26:25 +03:00
|
|
|
emailTmpl.subject = `[Test] ${emailTmpl.subject}`;
|
2019-11-13 20:23:33 +03:00
|
|
|
return bulkEmailService.send(emailTmpl, emails, emailData);
|
2019-11-05 12:09:07 +03:00
|
|
|
};
|
|
|
|
|
2019-11-07 07:10:36 +03:00
|
|
|
/**
|
|
|
|
* addEmail
|
|
|
|
*
|
2019-11-26 19:07:04 +03:00
|
|
|
* Accepts a post model and creates an email record based on it. Only creates one
|
2019-11-07 07:10:36 +03:00
|
|
|
* record per post
|
|
|
|
*
|
2019-11-26 19:07:04 +03:00
|
|
|
* @param {object} postModel Post Model Object
|
2019-11-07 07:10:36 +03:00
|
|
|
*/
|
2019-11-27 13:00:27 +03:00
|
|
|
|
2019-11-26 19:07:04 +03:00
|
|
|
const addEmail = async (postModel, options) => {
|
2019-11-26 20:39:50 +03:00
|
|
|
const knexOptions = _.pick(options, ['transacting', 'forUpdate']);
|
|
|
|
|
2019-11-27 13:00:27 +03:00
|
|
|
const {members} = await membersService.api.members.list(Object.assign(knexOptions, {filter: 'subscribed:true'}, {limit: 'all'}));
|
2019-11-27 05:39:48 +03:00
|
|
|
const {emailTmpl, emails} = await getEmailData(postModel, members);
|
2019-11-06 14:32:43 +03:00
|
|
|
|
2019-11-07 12:00:18 +03:00
|
|
|
// NOTE: don't create email object when there's nobody to send the email to
|
|
|
|
if (!emails.length) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-11-26 20:39:50 +03:00
|
|
|
|
2019-11-26 19:07:04 +03:00
|
|
|
const postId = postModel.get('id');
|
2019-11-26 20:39:50 +03:00
|
|
|
const existing = await models.Email.findOne({post_id: postId}, knexOptions);
|
2019-11-06 14:32:43 +03:00
|
|
|
|
|
|
|
if (!existing) {
|
|
|
|
return models.Email.add({
|
2019-11-26 19:07:04 +03:00
|
|
|
post_id: postId,
|
2019-11-06 14:32:43 +03:00
|
|
|
status: 'pending',
|
|
|
|
email_count: emails.length,
|
|
|
|
subject: emailTmpl.subject,
|
|
|
|
html: emailTmpl.html,
|
|
|
|
plaintext: emailTmpl.plaintext,
|
|
|
|
submitted_at: moment().toDate()
|
2019-11-26 20:39:50 +03:00
|
|
|
}, knexOptions);
|
2019-11-06 14:32:43 +03:00
|
|
|
} else {
|
|
|
|
return existing;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-11-18 17:28:54 +03:00
|
|
|
/**
|
|
|
|
* retryFailedEmail
|
|
|
|
*
|
|
|
|
* Accepts an Email model and resets it's fields to trigger retry listeners
|
|
|
|
*
|
|
|
|
* @param {object} model Email model
|
|
|
|
*/
|
|
|
|
const retryFailedEmail = async (model) => {
|
|
|
|
return await models.Email.edit({
|
|
|
|
status: 'pending'
|
|
|
|
}, {
|
|
|
|
id: model.get('id')
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-11-05 13:02:23 +03:00
|
|
|
/**
|
|
|
|
* handleUnsubscribeRequest
|
|
|
|
*
|
|
|
|
* Takes a request/response pair and reads the `unsubscribe` query parameter,
|
|
|
|
* using the content to update the members service to set the `subscribed` flag
|
|
|
|
* to false on the member
|
|
|
|
*
|
|
|
|
* If any operation fails, or the request is invalid the function will error - so using
|
|
|
|
* as middleware should consider wrapping with `try/catch`
|
|
|
|
*
|
|
|
|
* @param {Request} req
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
async function handleUnsubscribeRequest(req) {
|
|
|
|
if (!req.url) {
|
|
|
|
throw new common.errors.BadRequestError({
|
2019-11-26 13:02:53 +03:00
|
|
|
message: 'Unsubscribe failed! Could not find member'
|
2019-11-05 13:02:23 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const {query} = url.parse(req.url, true);
|
2019-11-15 12:36:49 +03:00
|
|
|
if (!query || !query.uuid) {
|
2019-11-05 13:02:23 +03:00
|
|
|
throw new common.errors.BadRequestError({
|
2019-11-26 13:02:53 +03:00
|
|
|
message: (query.preview ? 'Unsubscribe preview' : 'Unsubscribe failed! Could not find member')
|
2019-11-05 13:02:23 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const member = await membersService.api.members.get({
|
2019-11-15 12:36:49 +03:00
|
|
|
uuid: query.uuid
|
2019-11-05 13:02:23 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!member) {
|
|
|
|
throw new common.errors.BadRequestError({
|
2019-11-26 13:02:53 +03:00
|
|
|
message: 'Unsubscribe failed! Could not find member'
|
2019-11-05 13:02:23 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2019-11-15 12:36:49 +03:00
|
|
|
return await membersService.api.members.update({subscribed: false}, {id: member.id});
|
2019-11-05 13:02:23 +03:00
|
|
|
} catch (err) {
|
|
|
|
throw new common.errors.InternalServerError({
|
|
|
|
message: 'Failed to unsubscribe member'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-13 08:13:36 +03:00
|
|
|
function checkHostLimitForMembers(members = []) {
|
|
|
|
const membersHostLimit = config.get('host_settings:limits:members');
|
|
|
|
if (membersHostLimit) {
|
|
|
|
const allowedMembersLimit = membersHostLimit.max;
|
|
|
|
const hostUpgradeLink = config.get('host_settings:limits').upgrade_url;
|
|
|
|
if (members.length > allowedMembersLimit) {
|
|
|
|
throw new common.errors.HostLimitError({
|
|
|
|
message: `Your current plan allows you to send email to up to ${allowedMembersLimit} members, but you currently have ${members.length} members`,
|
|
|
|
help: hostUpgradeLink,
|
|
|
|
errorDetails: {
|
|
|
|
limit: allowedMembersLimit,
|
|
|
|
total: members.length
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-18 17:28:54 +03:00
|
|
|
async function pendingEmailHandler(emailModel, options) {
|
2019-11-04 13:53:42 +03:00
|
|
|
// CASE: do not send email if we import a database
|
|
|
|
// TODO: refactor post.published events to never fire on importing
|
|
|
|
if (options && options.importing) {
|
|
|
|
return;
|
|
|
|
}
|
2019-11-14 08:15:05 +03:00
|
|
|
const postModel = await models.Post.findOne({id: emailModel.get('post_id')}, {withRelated: ['authors']});
|
2019-11-04 13:53:42 +03:00
|
|
|
|
2019-11-06 14:32:43 +03:00
|
|
|
if (emailModel.get('status') !== 'pending') {
|
2019-11-04 13:53:42 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-06 11:12:45 +03:00
|
|
|
const {members} = await membersService.api.members.list(Object.assign({filter: 'subscribed:true'}, {limit: 'all'}));
|
|
|
|
|
|
|
|
if (!members.length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-07 11:53:50 +03:00
|
|
|
await models.Email.edit({
|
|
|
|
status: 'submitting'
|
|
|
|
}, {
|
2019-11-07 13:09:22 +03:00
|
|
|
id: emailModel.id
|
2019-11-07 11:53:50 +03:00
|
|
|
});
|
|
|
|
|
2019-11-15 14:25:33 +03:00
|
|
|
let meta = [];
|
2019-11-18 17:28:54 +03:00
|
|
|
let error = null;
|
2019-11-07 11:53:50 +03:00
|
|
|
|
2019-11-15 14:25:33 +03:00
|
|
|
try {
|
2020-02-13 08:13:36 +03:00
|
|
|
// Check host limit for allowed member count and throw error if over limit
|
|
|
|
checkHostLimitForMembers(members);
|
2019-11-15 14:25:33 +03:00
|
|
|
// NOTE: meta can contains an array which can be a mix of successful and error responses
|
|
|
|
// needs filtering and saving objects of {error, batchData} form to separate property
|
2019-11-26 19:07:04 +03:00
|
|
|
meta = await sendEmail(postModel, members);
|
2019-11-15 14:25:33 +03:00
|
|
|
} catch (err) {
|
|
|
|
common.logging.error(new common.errors.GhostError({
|
|
|
|
err: err,
|
|
|
|
context: common.i18n.t('errors.services.mega.requestFailed.error')
|
|
|
|
}));
|
|
|
|
error = err.message;
|
|
|
|
}
|
|
|
|
|
|
|
|
const successes = meta.filter(response => (response instanceof bulkEmailService.SuccessfulBatch));
|
|
|
|
const failures = meta.filter(response => (response instanceof bulkEmailService.FailedBatch));
|
|
|
|
const batchStatus = successes.length ? 'submitted' : 'failed';
|
|
|
|
|
|
|
|
if (!error && failures.length) {
|
|
|
|
error = failures[0].error.message;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error && error.length > 2000) {
|
|
|
|
error = error.substring(0, 2000);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
// CASE: the batch partially succeeded
|
|
|
|
await models.Email.edit({
|
|
|
|
status: batchStatus,
|
|
|
|
meta: JSON.stringify(successes),
|
|
|
|
error: error,
|
|
|
|
error_data: JSON.stringify(failures) // NOTE:need to discuss how we store this
|
|
|
|
}, {
|
|
|
|
id: emailModel.id
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
common.logging.error(err);
|
|
|
|
}
|
2019-11-04 13:53:42 +03:00
|
|
|
}
|
|
|
|
|
2019-11-18 17:28:54 +03:00
|
|
|
const statusChangedHandler = (emailModel, options) => {
|
|
|
|
const emailRetried = emailModel.wasChanged() && (emailModel.get('status') === 'pending') && (emailModel.previous('status') === 'failed');
|
|
|
|
|
|
|
|
if (emailRetried) {
|
|
|
|
pendingEmailHandler(emailModel, options);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-11-04 13:53:42 +03:00
|
|
|
function listen() {
|
2019-11-18 17:28:54 +03:00
|
|
|
common.events.on('email.added', pendingEmailHandler);
|
|
|
|
common.events.on('email.edited', statusChangedHandler);
|
2019-11-04 13:53:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Public API
|
|
|
|
module.exports = {
|
2019-11-05 12:09:07 +03:00
|
|
|
listen,
|
2019-11-06 14:32:43 +03:00
|
|
|
addEmail,
|
2019-11-18 17:28:54 +03:00
|
|
|
retryFailedEmail,
|
2019-11-05 13:02:23 +03:00
|
|
|
sendTestEmail,
|
2019-11-26 19:07:04 +03:00
|
|
|
handleUnsubscribeRequest
|
2019-11-04 13:53:42 +03:00
|
|
|
};
|