mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
71951eabea
no issue - posts & pages live in the same table, need to use the event name
86 lines
2.7 KiB
JavaScript
86 lines
2.7 KiB
JavaScript
module.exports = (event, model) => {
|
|
const _ = require('lodash');
|
|
const sequence = require('../../lib/promise/sequence');
|
|
const api = require('../../api');
|
|
|
|
const apiVersion = model.get('api_version') || 'v2';
|
|
|
|
const resourceName = event.match(/(\w+)\./)[1];
|
|
const docName = `${resourceName}s`;
|
|
|
|
const ops = [];
|
|
|
|
if (Object.keys(model.attributes).length) {
|
|
ops.push(() => {
|
|
let frame = {options: {previous: false, context: {user: true}}};
|
|
|
|
if (['posts', 'pages'].includes(docName)) {
|
|
frame.options.formats = ['mobiledoc', 'html', 'plaintext'];
|
|
frame.options.withRelated = ['tags', 'authors'];
|
|
}
|
|
|
|
return api.shared
|
|
.serializers
|
|
.handle
|
|
.output(model, {docName: docName, method: 'read'}, api[apiVersion].serializers.output, frame)
|
|
.then(() => {
|
|
return frame.response[docName][0];
|
|
});
|
|
});
|
|
} else {
|
|
ops.push(() => {
|
|
return Promise.resolve({});
|
|
});
|
|
}
|
|
|
|
if (Object.keys(model._previousAttributes).length) {
|
|
ops.push(() => {
|
|
const frame = {options: {previous: true, context: {user: true}}};
|
|
|
|
if (['posts', 'pages'].includes(docName)) {
|
|
frame.options.formats = ['mobiledoc', 'html', 'plaintext'];
|
|
frame.options.withRelated = ['tags', 'authors'];
|
|
}
|
|
|
|
return api.shared
|
|
.serializers
|
|
.handle
|
|
.output(model, {docName: docName, method: 'read'}, api[apiVersion].serializers.output, frame)
|
|
.then(() => {
|
|
return frame.response[docName][0];
|
|
});
|
|
});
|
|
} else {
|
|
ops.push(() => {
|
|
return Promise.resolve({});
|
|
});
|
|
}
|
|
|
|
return sequence(ops)
|
|
.then((results) => {
|
|
const current = results[0];
|
|
const previous = results[1];
|
|
|
|
const changed = model._changed ? Object.keys(model._changed) : {};
|
|
|
|
const payload = {
|
|
[docName.replace(/s$/, '')]: {
|
|
current: current,
|
|
previous: _.pick(previous, changed)
|
|
}
|
|
};
|
|
|
|
// @TODO: remove in v3
|
|
// @NOTE: Our webhook format has changed, we still have to support the old format for subscribers events
|
|
if ('subscriber.added' === event) {
|
|
payload[docName] = [current];
|
|
}
|
|
|
|
if ('subscriber.deleted' === event) {
|
|
payload[docName] = [previous];
|
|
}
|
|
|
|
return payload;
|
|
});
|
|
};
|