Ghost/core/server/services/posts/posts-service.js
Naz 3c822e0457 Added ability to send newsletter and not publish the post
refs https://github.com/TryGhost/Team/issues/949

- When post is marked as "email-only" we can send it out to the selected audience when publishing without making the post publicly available
- The feature is available for experimentation behind "email only" alpha flag available in labs
2021-08-06 11:57:54 +04:00

124 lines
4.7 KiB
JavaScript

const {BadRequestError} = require('@tryghost/errors');
class PostsService {
constructor({mega, apiVersion, urlUtils, i18n, models, isSet}) {
this.apiVersion = apiVersion;
this.mega = mega;
this.urlUtils = urlUtils;
this.i18n = i18n;
this.models = models;
this.isSet = isSet;
}
async editPost(frame) {
let model;
if (!frame.options.email_recipient_filter && frame.options.send_email_when_published) {
await this.models.Base.transaction(async (transacting) => {
const options = {
...frame.options,
transacting
};
/**
* 1. We need to edit the post first in order to know what the visibility is.
* 2. We can only pass the email_recipient_filter when we change the status.
*
* So, we first edit the post as requested, with all information except the status,
* from there we can determine what the email_recipient_filter should be and then finish
* the edit, with the status and the email_recipient_filter option.
*/
const status = frame.data.posts[0].status;
delete frame.data.posts[0].status;
const interimModel = await this.models.Post.edit(frame.data.posts[0], options);
frame.data.posts[0].status = status;
options.email_recipient_filter = interimModel.get('visibility') === 'paid' ? 'paid' : 'all';
model = await this.models.Post.edit(frame.data.posts[0], options);
});
} else {
model = await this.models.Post.edit(frame.data.posts[0], frame.options);
}
/**Handle newsletter email */
const emailRecipientFilter = model.get('email_recipient_filter');
if (emailRecipientFilter !== 'none') {
if (emailRecipientFilter !== 'all') {
// check filter is valid
try {
await this.models.Member.findPage({filter: `subscribed:true+${emailRecipientFilter}`, limit: 1});
} catch (err) {
return Promise.reject(new BadRequestError({
message: this.i18n.t('errors.api.posts.invalidEmailRecipientFilter'),
context: err.message
}));
}
}
const postPublished = model.wasChanged() && (model.get('status') === 'published') && (model.previous('status') !== 'published');
const emailOnlyEnabled = model.related('posts_meta').get('email_only') && this.isSet('emailOnlyPosts');
if (postPublished || emailOnlyEnabled) {
let postEmail = model.relations.email;
if (!postEmail) {
const email = await this.mega.addEmail(model, Object.assign({}, frame.options, {apiVersion: this.apiVersion}));
model.set('email', email);
} else if (postEmail && postEmail.get('status') === 'failed') {
const email = await this.mega.retryFailedEmail(postEmail);
model.set('email', email);
}
}
}
return model;
}
handleCacheInvalidation(model) {
let cacheInvalidate;
if (
model.get('status') === 'published' && model.wasChanged() ||
model.get('status') === 'draft' && model.previous('status') === 'published'
) {
cacheInvalidate = true;
} else if (
model.get('status') === 'draft' && model.previous('status') !== 'published' ||
model.get('status') === 'scheduled' && model.wasChanged()
) {
cacheInvalidate = {
value: this.urlUtils.urlFor({
relativeUrl: this.urlUtils.urlJoin('/p', model.get('uuid'), '/')
})
};
} else {
cacheInvalidate = false;
}
return cacheInvalidate;
}
}
/**
* @param {string} apiVersion - API version to use within the service
* @returns {PostsService} instance of the PostsService
*/
const getPostServiceInstance = (apiVersion) => {
const urlUtils = require('../../../shared/url-utils');
const {mega} = require('../mega');
const labs = require('../../../shared/labs');
const i18n = require('../../../shared/i18n');
const models = require('../../models');
return new PostsService({
apiVersion: apiVersion,
mega: mega,
urlUtils: urlUtils,
i18n: i18n,
models: models,
isSet: labs.isSet.bind(labs)
});
};
module.exports = getPostServiceInstance;