mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 20:43:01 +03:00
677502813e
closes #6629 - i had the case that in gravatar process.env.NODE_ENV was undefined and indexOf of undefined crashe my application - so always use config to read current env
95 lines
2.4 KiB
JavaScript
95 lines
2.4 KiB
JavaScript
var _ = require('lodash'),
|
|
http = require('http'),
|
|
xml = require('xml'),
|
|
config = require('../../config'),
|
|
utils = require('../../utils'),
|
|
errors = require('../../errors'),
|
|
logging = require('../../logging'),
|
|
events = require('../../events'),
|
|
i18n = require('../../i18n'),
|
|
pingList;
|
|
|
|
// ToDo: Make this configurable
|
|
pingList = [{
|
|
host: 'blogsearch.google.com',
|
|
path: '/ping/RPC2'
|
|
}, {
|
|
host: 'rpc.pingomatic.com',
|
|
path: '/'
|
|
}];
|
|
|
|
function ping(post) {
|
|
var pingXML,
|
|
title = post.title,
|
|
url = utils.url.urlFor('post', {post: post}, true);
|
|
|
|
// Only ping when in production and not a page
|
|
if (config.get('env') !== 'production' || post.page || config.isPrivacyDisabled('useRpcPing')) {
|
|
return;
|
|
}
|
|
|
|
// Don't ping for the welcome to ghost post.
|
|
// 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 (post.slug === 'welcome-to-ghost') {
|
|
return;
|
|
}
|
|
|
|
// Build XML object.
|
|
pingXML = xml({
|
|
methodCall: [{
|
|
methodName: 'weblogUpdate.ping'
|
|
}, {
|
|
params: [{
|
|
param: [{
|
|
value: [{
|
|
string: title
|
|
}]
|
|
}]
|
|
}, {
|
|
param: [{
|
|
value: [{
|
|
string: url
|
|
}]
|
|
}]
|
|
}]
|
|
}]
|
|
}, {declaration: true});
|
|
|
|
// Ping each of the defined services.
|
|
_.each(pingList, function (pingHost) {
|
|
var options = {
|
|
hostname: pingHost.host,
|
|
path: pingHost.path,
|
|
method: 'POST'
|
|
},
|
|
req;
|
|
|
|
req = http.request(options);
|
|
req.write(pingXML);
|
|
|
|
req.on('error', function handleError(err) {
|
|
logging.error(new errors.GhostError({
|
|
err: err,
|
|
context: i18n.t('errors.data.xml.xmlrpc.pingUpdateFailed.error'),
|
|
help: i18n.t('errors.data.xml.xmlrpc.pingUpdateFailed.help', {url: 'http://support.ghost.org'})
|
|
}));
|
|
});
|
|
|
|
req.end();
|
|
});
|
|
}
|
|
|
|
function listener(model) {
|
|
ping(model.toJSON());
|
|
}
|
|
|
|
function listen() {
|
|
events.on('post.published', listener);
|
|
}
|
|
|
|
module.exports = {
|
|
listen: listen
|
|
};
|