2014-01-03 19:50:03 +04:00
|
|
|
// # Update Checking Service
|
|
|
|
//
|
|
|
|
// Makes a request to Ghost.org to check if there is a new version of Ghost available.
|
|
|
|
// The service is provided in return for users opting in to anonymous usage data collection
|
|
|
|
// Blog owners can opt-out of update checks by setting 'updateCheck: false' in their config.js
|
|
|
|
//
|
|
|
|
// The data collected is as follows:
|
|
|
|
// - blog id - a hash of the blog hostname, pathname and dbHash, we do not store URL, IP or other identifiable info
|
|
|
|
// - ghost version
|
|
|
|
// - node version
|
|
|
|
// - npm version
|
|
|
|
// - env - production or development
|
|
|
|
// - database type - SQLite, MySQL, pg
|
|
|
|
// - email transport - mail.options.service, or otherwise mail.transport
|
|
|
|
// - created date - the date the database was created
|
|
|
|
// - post count - total number of posts
|
|
|
|
// - user count - total number of users
|
|
|
|
// - theme - name of the currently active theme
|
2014-01-21 12:45:27 +04:00
|
|
|
// - apps - names of any active apps
|
2014-01-03 19:50:03 +04:00
|
|
|
|
|
|
|
var crypto = require('crypto'),
|
|
|
|
exec = require('child_process').exec,
|
|
|
|
https = require('https'),
|
|
|
|
moment = require('moment'),
|
|
|
|
semver = require('semver'),
|
|
|
|
when = require('when'),
|
|
|
|
nodefn = require('when/node/function'),
|
2014-02-05 12:40:30 +04:00
|
|
|
_ = require('lodash'),
|
2014-01-03 19:50:03 +04:00
|
|
|
url = require('url'),
|
|
|
|
|
|
|
|
api = require('./api'),
|
|
|
|
config = require('./config'),
|
|
|
|
errors = require('./errorHandling'),
|
2014-01-14 23:46:36 +04:00
|
|
|
packageInfo = require('../../package.json'),
|
2014-01-03 19:50:03 +04:00
|
|
|
|
|
|
|
allowedCheckEnvironments = ['development', 'production'],
|
|
|
|
checkEndpoint = 'updates.ghost.org',
|
2014-01-14 23:46:36 +04:00
|
|
|
currentVersion = packageInfo.version;
|
2014-01-03 19:50:03 +04:00
|
|
|
|
|
|
|
function updateCheckError(error) {
|
|
|
|
errors.logError(
|
|
|
|
error,
|
|
|
|
"Checking for updates failed, your blog will continue to function.",
|
2014-01-13 01:49:24 +04:00
|
|
|
"If you get this error repeatedly, please seek help from https://ghost.org/forum."
|
2014-01-03 19:50:03 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateCheckData() {
|
|
|
|
var data = {},
|
|
|
|
ops = [],
|
|
|
|
mailConfig = config().mail;
|
|
|
|
|
2014-05-07 04:49:25 +04:00
|
|
|
ops.push(api.settings.read.call({ internal: true }, 'dbHash').otherwise(errors.rejectError));
|
|
|
|
ops.push(api.settings.read.call({ internal: true }, 'activeTheme').otherwise(errors.rejectError));
|
|
|
|
ops.push(api.settings.read.call({ internal: true }, 'activeApps')
|
2014-04-28 03:28:50 +04:00
|
|
|
.then(function (response) {
|
|
|
|
var apps = response.settings[0];
|
2014-01-03 19:50:03 +04:00
|
|
|
try {
|
|
|
|
apps = JSON.parse(apps.value);
|
|
|
|
} catch (e) {
|
|
|
|
return errors.rejectError(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return _.reduce(apps, function (memo, item) { return memo === '' ? memo + item : memo + ', ' + item; }, '');
|
|
|
|
}).otherwise(errors.rejectError));
|
|
|
|
ops.push(api.posts.browse().otherwise(errors.rejectError));
|
2014-05-04 05:30:30 +04:00
|
|
|
ops.push(api.users.browse.call({user: 1}).otherwise(errors.rejectError));
|
2014-01-03 19:50:03 +04:00
|
|
|
ops.push(nodefn.call(exec, 'npm -v').otherwise(errors.rejectError));
|
|
|
|
|
|
|
|
data.ghost_version = currentVersion;
|
|
|
|
data.node_version = process.versions.node;
|
|
|
|
data.env = process.env.NODE_ENV;
|
|
|
|
data.database_type = require('./models/base').client;
|
2014-01-08 01:32:43 +04:00
|
|
|
data.email_transport = mailConfig && (mailConfig.options && mailConfig.options.service ? mailConfig.options.service : mailConfig.transport);
|
2014-01-03 19:50:03 +04:00
|
|
|
|
|
|
|
return when.settle(ops).then(function (descriptors) {
|
2014-04-28 03:28:50 +04:00
|
|
|
var hash = descriptors[0].value.settings[0],
|
|
|
|
theme = descriptors[1].value.settings[0],
|
2014-01-03 19:50:03 +04:00
|
|
|
apps = descriptors[2].value,
|
|
|
|
posts = descriptors[3].value,
|
|
|
|
users = descriptors[4].value,
|
|
|
|
npm = descriptors[5].value,
|
|
|
|
blogUrl = url.parse(config().url),
|
|
|
|
blogId = blogUrl.hostname + blogUrl.pathname.replace(/\//, '') + hash.value;
|
|
|
|
|
|
|
|
data.blog_id = crypto.createHash('md5').update(blogId).digest('hex');
|
|
|
|
data.theme = theme ? theme.value : '';
|
|
|
|
data.apps = apps || '';
|
2014-05-04 05:30:30 +04:00
|
|
|
data.post_count = posts && posts.meta && posts.meta.pagination ? posts.meta.pagination.total : 0;
|
|
|
|
data.user_count = users && users.users && users.users.length ? users.users.length : 0;
|
2014-04-28 03:28:50 +04:00
|
|
|
data.blog_created_at = users && users.users && users.users[0] && users.users[0].created_at ? moment(users.users[0].created_at).unix() : '';
|
2014-01-03 19:50:03 +04:00
|
|
|
data.npm_version = _.isArray(npm) && npm[0] ? npm[0].toString().replace(/\n/, '') : '';
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}).otherwise(updateCheckError);
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateCheckRequest() {
|
|
|
|
return updateCheckData().then(function (reqData) {
|
|
|
|
var deferred = when.defer(),
|
|
|
|
resData = '',
|
|
|
|
headers,
|
|
|
|
req;
|
|
|
|
|
|
|
|
reqData = JSON.stringify(reqData);
|
|
|
|
|
|
|
|
headers = {
|
|
|
|
'Content-Length': reqData.length
|
|
|
|
};
|
|
|
|
|
|
|
|
req = https.request({
|
|
|
|
hostname: checkEndpoint,
|
|
|
|
method: 'POST',
|
|
|
|
headers: headers
|
|
|
|
}, function (res) {
|
|
|
|
res.on('error', function (error) { deferred.reject(error); });
|
|
|
|
res.on('data', function (chunk) { resData += chunk; });
|
|
|
|
res.on('end', function () {
|
|
|
|
try {
|
|
|
|
resData = JSON.parse(resData);
|
|
|
|
deferred.resolve(resData);
|
|
|
|
} catch (e) {
|
|
|
|
deferred.reject('Unable to decode update response');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
req.write(reqData);
|
|
|
|
req.end();
|
|
|
|
|
|
|
|
req.on('error', function (error) {
|
|
|
|
deferred.reject(error);
|
|
|
|
});
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// ## Update Check Response
|
|
|
|
// Handles the response from the update check
|
|
|
|
// Does two things with the information received:
|
|
|
|
// 1. Updates the time we can next make a check
|
|
|
|
// 2. Checks if the version in the response is new, and updates the notification setting
|
|
|
|
function updateCheckResponse(response) {
|
2014-01-14 23:46:36 +04:00
|
|
|
var ops = [];
|
2014-01-03 19:50:03 +04:00
|
|
|
|
2014-05-08 04:10:14 +04:00
|
|
|
ops.push(api.settings.edit.call({internal: true}, 'nextUpdateCheck', response.next_check)
|
2014-01-03 19:50:03 +04:00
|
|
|
.otherwise(errors.rejectError));
|
|
|
|
|
2014-05-08 04:10:14 +04:00
|
|
|
ops.push(api.settings.edit.call({internal: true}, 'displayUpdateNotification', response.version)
|
2014-01-03 19:50:03 +04:00
|
|
|
.otherwise(errors.rejectError));
|
|
|
|
|
|
|
|
return when.settle(ops).then(function (descriptors) {
|
|
|
|
descriptors.forEach(function (d) {
|
|
|
|
if (d.state === 'rejected') {
|
|
|
|
errors.rejectError(d.reason);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return when.resolve();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-01-14 23:46:36 +04:00
|
|
|
function updateCheck() {
|
2014-01-03 19:50:03 +04:00
|
|
|
var deferred = when.defer();
|
|
|
|
|
|
|
|
// The check will not happen if:
|
|
|
|
// 1. updateCheck is defined as false in config.js
|
|
|
|
// 2. we've already done a check this session
|
|
|
|
// 3. we're not in production or development mode
|
|
|
|
if (config().updateCheck === false || _.indexOf(allowedCheckEnvironments, process.env.NODE_ENV) === -1) {
|
|
|
|
// No update check
|
|
|
|
deferred.resolve();
|
|
|
|
} else {
|
2014-05-07 04:49:25 +04:00
|
|
|
api.settings.read.call({ internal: true }, 'nextUpdateCheck').then(function (result) {
|
2014-04-28 03:28:50 +04:00
|
|
|
var nextUpdateCheck = result.settings[0];
|
|
|
|
|
2014-01-03 19:50:03 +04:00
|
|
|
if (nextUpdateCheck && nextUpdateCheck.value && nextUpdateCheck.value > moment().unix()) {
|
|
|
|
// It's not time to check yet
|
|
|
|
deferred.resolve();
|
|
|
|
} else {
|
2014-01-14 23:46:36 +04:00
|
|
|
// We need to do a check
|
2014-01-03 19:50:03 +04:00
|
|
|
return updateCheckRequest()
|
|
|
|
.then(updateCheckResponse)
|
|
|
|
.otherwise(updateCheckError);
|
|
|
|
}
|
|
|
|
}).otherwise(updateCheckError)
|
|
|
|
.then(deferred.resolve);
|
|
|
|
}
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
}
|
|
|
|
|
2014-01-14 23:46:36 +04:00
|
|
|
function showUpdateNotification() {
|
2014-05-07 04:49:25 +04:00
|
|
|
return api.settings.read.call({ internal: true }, 'displayUpdateNotification').then(function (response) {
|
2014-04-28 03:28:50 +04:00
|
|
|
var display = response.settings[0];
|
|
|
|
|
2014-01-14 23:46:36 +04:00
|
|
|
// Version 0.4 used boolean to indicate the need for an update. This special case is
|
|
|
|
// translated to the version string.
|
|
|
|
// TODO: remove in future version.
|
2014-02-25 23:15:32 +04:00
|
|
|
if (display.value === 'false' || display.value === 'true' || display.value === '1' || display.value === '0') {
|
2014-01-14 23:46:36 +04:00
|
|
|
display.value = '0.4.0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (display && display.value && currentVersion && semver.gt(display.value, currentVersion)) {
|
|
|
|
return when(true);
|
|
|
|
}
|
|
|
|
return when(false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-01-08 01:32:43 +04:00
|
|
|
module.exports = updateCheck;
|
2014-01-14 23:46:36 +04:00
|
|
|
module.exports.showUpdateNotification = showUpdateNotification;
|