mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 09:22:49 +03:00
bd597db829
- This is part of the quest to separate the frontend and server & get rid of all the places where there are cross-requires - At the moment the settings cache is one big shared cache used by the frontend and server liberally - This change doesn't really solve the fundamental problems, as we still depend on events, and requires from inside frontend - However it allows us to control the misuse slightly better by getting rid of restricted requires and turning on that eslint ruleset
126 lines
3.8 KiB
JavaScript
126 lines
3.8 KiB
JavaScript
const _ = require('lodash');
|
|
const xml = require('xml');
|
|
const config = require('../../shared/config');
|
|
const urlService = require('../../frontend/services/url');
|
|
const errors = require('@tryghost/errors');
|
|
const events = require('../lib/common/events');
|
|
const i18n = require('../../shared/i18n');
|
|
const logging = require('@tryghost/logging');
|
|
const request = require('@tryghost/request');
|
|
const settingsCache = require('../../shared/settings-cache');
|
|
const sentry = require('../../shared/sentry');
|
|
|
|
const defaultPostSlugs = [
|
|
'welcome',
|
|
'the-editor',
|
|
'using-tags',
|
|
'managing-users',
|
|
'private-sites',
|
|
'advanced-markdown',
|
|
'themes'
|
|
];
|
|
|
|
// ToDo: Make this configurable
|
|
const pingList = [
|
|
{
|
|
url: 'http://rpc.pingomatic.com'
|
|
}
|
|
];
|
|
|
|
function ping(post) {
|
|
let pingXML;
|
|
const title = post.title;
|
|
const url = urlService.getUrlByResourceId(post.id, {absolute: true});
|
|
|
|
if (post.type === 'page' || config.isPrivacyDisabled('useRpcPing') || settingsCache.get('is_private')) {
|
|
return;
|
|
}
|
|
|
|
// Don't ping for the default posts.
|
|
// This also handles the case where during ghost's first run
|
|
// models.init() inserts this post but permissions.init() hasn't
|
|
// (can't) run yet.
|
|
if (defaultPostSlugs.indexOf(post.slug) > -1) {
|
|
return;
|
|
}
|
|
|
|
// Build XML object.
|
|
pingXML = xml({
|
|
methodCall: [{
|
|
methodName: 'weblogUpdates.ping'
|
|
}, {
|
|
params: [{
|
|
param: [{
|
|
value: [{
|
|
string: title
|
|
}]
|
|
}]
|
|
}, {
|
|
param: [{
|
|
value: [{
|
|
string: url
|
|
}]
|
|
}]
|
|
}]
|
|
}]
|
|
}, {declaration: true});
|
|
|
|
// Ping each of the defined services.
|
|
_.each(pingList, function (pingHost) {
|
|
const options = {
|
|
body: pingXML,
|
|
timeout: 2 * 1000
|
|
};
|
|
|
|
const goodResponse = /<member>[\s]*<name>flerror<\/name>[\s]*<value>[\s]*<boolean>0<\/boolean><\/value><\/member>/;
|
|
const errorMessage = /<name>(?:faultString|message)<\/name>[\s]*<value>[\s]*<string>([^<]+)/;
|
|
|
|
request(pingHost.url, options)
|
|
.then(function (res) {
|
|
if (!goodResponse.test(res.body)) {
|
|
const matches = res.body.match(errorMessage);
|
|
const message = matches ? matches[1] : res.body;
|
|
throw new Error(message);
|
|
}
|
|
})
|
|
.catch(function (err) {
|
|
let error;
|
|
if (err.statusCode === 429) {
|
|
error = new errors.TooManyRequestsError({
|
|
err,
|
|
message: err.message,
|
|
context: i18n.t('errors.services.ping.requestFailed.error', {service: 'xmlrpc'}),
|
|
help: i18n.t('errors.services.ping.requestFailed.help', {url: 'https://ghost.org/docs/'})
|
|
});
|
|
} else {
|
|
error = new errors.GhostError({
|
|
err: err,
|
|
message: err.message,
|
|
context: i18n.t('errors.services.ping.requestFailed.error', {service: 'xmlrpc'}),
|
|
help: i18n.t('errors.services.ping.requestFailed.help', {url: 'https://ghost.org/docs/'})
|
|
});
|
|
}
|
|
logging.error(error);
|
|
sentry.captureException(error);
|
|
});
|
|
});
|
|
}
|
|
|
|
function listener(model, options) {
|
|
// CASE: do not rpc ping if we import a database
|
|
// TODO: refactor post.published events to never fire on importing
|
|
if (options && options.importing) {
|
|
return;
|
|
}
|
|
|
|
ping(model.toJSON());
|
|
}
|
|
|
|
function listen() {
|
|
events.on('post.published', listener);
|
|
}
|
|
|
|
module.exports = {
|
|
listen: listen
|
|
};
|