2019-11-13 13:52:23 +03:00
|
|
|
const _ = require('lodash');
|
2019-11-04 08:36:10 +03:00
|
|
|
const common = require('../../lib/common');
|
2019-11-13 06:56:31 +03:00
|
|
|
const mailgunProvider = require('./mailgun');
|
|
|
|
const configService = require('../../config');
|
2019-11-14 18:09:51 +03:00
|
|
|
const settingsCache = require('../settings/cache');
|
2019-11-04 08:36:10 +03:00
|
|
|
|
2019-11-15 14:25:33 +03:00
|
|
|
/**
|
|
|
|
* An object representing batch request result
|
|
|
|
* @typedef { Object } BatchResultBase
|
|
|
|
* @property { string } data - data that is returned from Mailgun or one which Mailgun was called with
|
|
|
|
*/
|
|
|
|
class BatchResultBase {
|
|
|
|
}
|
|
|
|
|
|
|
|
class SuccessfulBatch extends BatchResultBase {
|
|
|
|
constructor(data) {
|
|
|
|
super();
|
|
|
|
this.data = data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class FailedBatch extends BatchResultBase {
|
|
|
|
constructor(error, data) {
|
|
|
|
super();
|
|
|
|
this.error = error;
|
|
|
|
this.data = data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 13:24:02 +03:00
|
|
|
/**
|
2019-11-04 08:36:10 +03:00
|
|
|
* An email address
|
|
|
|
* @typedef { string } EmailAddress
|
|
|
|
*/
|
|
|
|
|
2019-11-04 13:24:02 +03:00
|
|
|
/**
|
2019-11-04 08:36:10 +03:00
|
|
|
* An object representing an email to send
|
|
|
|
* @typedef { Object } Email
|
|
|
|
* @property { string } html - The html content of the email
|
2019-11-04 08:36:10 +03:00
|
|
|
* @property { string } subject - The subject of the email
|
2019-11-04 08:36:10 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
2019-11-15 14:25:33 +03:00
|
|
|
SuccessfulBatch,
|
|
|
|
FailedBatch,
|
2019-11-04 08:36:10 +03:00
|
|
|
/**
|
|
|
|
* @param {Email} message - The message to send
|
|
|
|
* @param {[EmailAddress]} recipients - the recipients to send the email to
|
2019-11-06 13:50:41 +03:00
|
|
|
* @param {[object]} recipientData - list of data keyed by email to inject into the email
|
2019-11-15 14:25:33 +03:00
|
|
|
* @returns {Promise<Array<BatchResultBase>>} An array of promises representing the success of the batch email sending
|
2019-11-04 08:36:10 +03:00
|
|
|
*/
|
2019-11-13 14:31:37 +03:00
|
|
|
async send(message, recipients, recipientData = {}) {
|
2019-11-13 13:52:23 +03:00
|
|
|
let BATCH_SIZE = 1000;
|
2019-11-14 08:15:26 +03:00
|
|
|
const mailgunInstance = mailgunProvider.getInstance();
|
2019-11-08 07:13:43 +03:00
|
|
|
if (!mailgunInstance) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let fromAddress = message.from;
|
2019-11-13 13:52:23 +03:00
|
|
|
if (/@localhost$/.test(message.from) || /@ghost.local$/.test(message.from)) {
|
2019-11-08 07:13:43 +03:00
|
|
|
fromAddress = 'localhost@example.com';
|
|
|
|
common.logging.warn(`Rewriting bulk email from address ${message.from} to ${fromAddress}`);
|
2019-11-13 13:52:23 +03:00
|
|
|
|
|
|
|
BATCH_SIZE = 2;
|
2019-11-08 07:13:43 +03:00
|
|
|
}
|
2019-11-13 13:36:19 +03:00
|
|
|
|
2019-11-15 14:25:33 +03:00
|
|
|
const blogTitle = settingsCache.get('title');
|
|
|
|
fromAddress = blogTitle ? `${blogTitle}<${fromAddress}>` : fromAddress;
|
|
|
|
|
|
|
|
const chunkedRecipients = _.chunk(recipients, BATCH_SIZE);
|
|
|
|
|
|
|
|
return Promise.mapSeries(chunkedRecipients, (toAddresses) => {
|
|
|
|
const recipientVariables = {};
|
|
|
|
toAddresses.forEach((email) => {
|
|
|
|
recipientVariables[email] = recipientData[email];
|
|
|
|
});
|
|
|
|
|
|
|
|
const batchData = {
|
|
|
|
to: toAddresses,
|
|
|
|
from: fromAddress,
|
|
|
|
'recipient-variables': recipientVariables
|
|
|
|
};
|
|
|
|
|
|
|
|
const bulkEmailConfig = configService.get('bulkEmail');
|
|
|
|
|
|
|
|
if (bulkEmailConfig && bulkEmailConfig.mailgun && bulkEmailConfig.mailgun.tag) {
|
|
|
|
Object.assign(batchData, {
|
|
|
|
'o:tag': [bulkEmailConfig.mailgun.tag, 'bulk-email']
|
2019-11-13 13:52:23 +03:00
|
|
|
});
|
2019-11-15 14:25:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const messageData = Object.assign({}, message, batchData);
|
2019-11-13 13:52:23 +03:00
|
|
|
|
2019-11-15 14:25:33 +03:00
|
|
|
return new Promise((resolve) => {
|
|
|
|
mailgunInstance.messages().send(messageData, (error, body) => {
|
|
|
|
if (error) {
|
|
|
|
// NOTE: logging an error here only but actual handling should happen in more sophisticated batch retry handler
|
|
|
|
// REF: possible mailgun errors https://documentation.mailgun.com/en/latest/api-intro.html#errors
|
|
|
|
common.logging.warn(new common.errors.GhostError({
|
|
|
|
err: error,
|
|
|
|
context: common.i18n.t('errors.services.mega.requestFailed.error')
|
|
|
|
}));
|
2019-11-13 13:52:23 +03:00
|
|
|
|
2019-11-15 14:25:33 +03:00
|
|
|
// NOTE: these are generated variables, so can be regenerated when retry is done
|
|
|
|
const data = _.omit(batchData, ['recipient-variables']);
|
|
|
|
resolve(new FailedBatch(error, data));
|
|
|
|
} else {
|
|
|
|
resolve(new SuccessfulBatch(body));
|
|
|
|
}
|
|
|
|
});
|
2019-11-13 13:52:23 +03:00
|
|
|
});
|
2019-11-15 14:25:33 +03:00
|
|
|
});
|
2019-11-04 08:36:10 +03:00
|
|
|
}
|
|
|
|
};
|