mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
acf4a4b227
refs: #13380 The i18n package is deprecated. It is being replaced with the tpl package. * Replaced i18n.t w/ tpl helper in email * Replaced i18n.t w/ tpl helper in integrations
80 lines
2.0 KiB
JavaScript
80 lines
2.0 KiB
JavaScript
const models = require('../../models');
|
|
const tpl = require('@tryghost/tpl');
|
|
const errors = require('@tryghost/errors');
|
|
const megaService = require('../../services/mega');
|
|
|
|
const messages = {
|
|
emailNotFound: 'Email not found.',
|
|
retryNotAllowed: 'Only failed emails can be retried'
|
|
};
|
|
|
|
module.exports = {
|
|
docName: 'emails',
|
|
|
|
browse: {
|
|
options: [
|
|
'limit',
|
|
'fields',
|
|
'filter',
|
|
'order',
|
|
'page'
|
|
],
|
|
permissions: true,
|
|
async query(frame) {
|
|
return await models.Email.findPage(frame.options);
|
|
}
|
|
},
|
|
|
|
read: {
|
|
options: [
|
|
'fields'
|
|
],
|
|
validation: {
|
|
options: {
|
|
fields: ['html', 'plaintext', 'subject']
|
|
}
|
|
},
|
|
data: [
|
|
'id'
|
|
],
|
|
permissions: true,
|
|
query(frame) {
|
|
return models.Email.findOne(frame.data, frame.options)
|
|
.then((model) => {
|
|
if (!model) {
|
|
throw new errors.NotFoundError({
|
|
message: tpl(messages.emailNotFound)
|
|
});
|
|
}
|
|
|
|
return model;
|
|
});
|
|
}
|
|
},
|
|
|
|
retry: {
|
|
data: [
|
|
'id'
|
|
],
|
|
permissions: true,
|
|
query(frame) {
|
|
return models.Email.findOne(frame.data, frame.options)
|
|
.then(async (model) => {
|
|
if (!model) {
|
|
throw new errors.NotFoundError({
|
|
message: tpl(messages.emailNotFound)
|
|
});
|
|
}
|
|
|
|
if (model.get('status') !== 'failed') {
|
|
throw new errors.IncorrectUsageError({
|
|
message: tpl(messages.retryNotAllowed)
|
|
});
|
|
}
|
|
|
|
return await megaService.mega.retryFailedEmail(model);
|
|
});
|
|
}
|
|
}
|
|
};
|