2021-08-13 09:12:54 +03:00
|
|
|
const i18n = require('../../../shared/i18n');
|
|
|
|
const errors = require('@tryghost/errors');
|
|
|
|
const models = require('../../models');
|
|
|
|
const ALLOWED_INCLUDES = ['authors', 'tags'];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
docName: 'email_post',
|
|
|
|
|
|
|
|
read: {
|
|
|
|
permissions: true,
|
|
|
|
options: [
|
|
|
|
'include'
|
|
|
|
],
|
|
|
|
data: [
|
2021-08-19 11:27:45 +03:00
|
|
|
'uuid'
|
2021-08-13 09:12:54 +03:00
|
|
|
],
|
|
|
|
validation: {
|
|
|
|
options: {
|
|
|
|
include: {
|
|
|
|
values: ALLOWED_INCLUDES
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data: {
|
2021-08-19 11:27:45 +03:00
|
|
|
uuid: {
|
2021-08-13 09:12:54 +03:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async query(frame) {
|
|
|
|
const model = await models.Post.findOne(Object.assign(frame.data, {status: 'sent'}), frame.options);
|
|
|
|
|
|
|
|
if (!model) {
|
|
|
|
throw new errors.NotFoundError({
|
|
|
|
message: i18n.t('errors.api.posts.postNotFound')
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return model;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|