const _ = require('lodash'); const errors = require('@tryghost/errors'); const moment = require('moment'); const config = require('../../../shared/config'); const i18n = require('../../../shared/i18n'); const urlUtils = require('../../../shared/url-utils'); const api = require('../../api'); class PostSchedulingService { /** * * @param {Object} options * @param {String} options.apiVersion - api version */ constructor({apiVersion}) { this.api = api[apiVersion]; } /** * Publishes scheduled resource (a post or a page at the moment of writing) * * @param {String} resourceType one of 'post' or 'page' resources * @param {String} id resource id * @param {Boolean} force force publish flag * @param {Object} options api query options * @returns {Promise} */ async publish(resourceType, id, force, options) { const publishAPostBySchedulerToleranceInMinutes = config.get('times').publishAPostBySchedulerToleranceInMinutes; const result = await this.api[resourceType].read({id}, options); const preScheduledResource = result[resourceType][0]; const publishedAtMoment = moment(preScheduledResource.published_at); if (publishedAtMoment.diff(moment(), 'minutes') > publishAPostBySchedulerToleranceInMinutes) { return Promise.reject(new errors.NotFoundError({message: i18n.t('errors.api.job.notFound')})); } if (publishedAtMoment.diff(moment(), 'minutes') < publishAPostBySchedulerToleranceInMinutes * -1 && force !== true) { return Promise.reject(new errors.NotFoundError({message: i18n.t('errors.api.job.publishInThePast')})); } const editedResource = {}; editedResource[resourceType] = [{ status: 'published', updated_at: moment(preScheduledResource.updated_at).toISOString(true) }]; const editResult = await this.api[resourceType].edit( editedResource, _.pick(options, ['context', 'id', 'transacting', 'forUpdate']) ); const scheduledResource = editResult[resourceType][0]; return {scheduledResource, preScheduledResource}; } /** * * @param {Object} scheduledResource post or page resource object * @param {Object} preScheduledResource post or page resource object in state before publishing * @returns {Boolean|Object} */ handleCacheInvalidation(scheduledResource, preScheduledResource) { if ( (scheduledResource.status === 'published' && preScheduledResource.status !== 'published') || (scheduledResource.status === 'draft' && preScheduledResource.status === 'published') ) { return true; } else if ( (scheduledResource.status === 'draft' && preScheduledResource.status !== 'published') || (scheduledResource.status === 'scheduled' && preScheduledResource.status !== 'scheduled') ) { return { value: urlUtils.urlFor({ relativeUrl: urlUtils.urlJoin('/p', scheduledResource.uuid, '/') }) }; } else { return false; } } } /** * @param {string} apiVersion - API version to use within the service * @returns {PostSchedulingService} instance of the PostsService */ const getPostSchedulingServiceInstance = (apiVersion) => { return new PostSchedulingService({ apiVersion: apiVersion }); }; module.exports = getPostSchedulingServiceInstance;