You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/upgrade.js

197 lines
5.5 KiB
JavaScript

/* jslint node: true */
'use strict';
var async = require('async');
var path = require('path');
var semver = require('semver');
var db = require('./database');
var utils = require('../public/src/utils');
/*
* Need to write an upgrade script for NodeBB? Cool.
*
* 1. Copy TEMPLATE to a file name of your choice. Try to be succinct.
* 2. Open up that file and change the user-friendly name (can be longer/more descriptive than the file name)
* and timestamp
* 3. Add your script under the "method" property
* 4. Append your filename to the array below for the next NodeBB version.
*/
var Upgrade = {
available: [
{
version: '1.0.0',
upgrades: ['chat_upgrade', 'chat_room_hashes', 'theme_to_active_plugins', 'user_best_posts', 'users_notvalidated', 'global_moderators', 'social_post_sharing'],
},
{
version: '1.1.0',
upgrades: ['group_title_update', 'user_post_count_per_tid', 'dismiss_flags_from_deleted_topics', 'assign_topic_read_privilege', 'separate_upvote_downvote'],
},
{
version: '1.1.1',
upgrades: ['upload_privileges', 'remove_negative_best_posts'],
},
{
version: '1.2.0',
upgrades: ['category_recent_tids', 'edit_delete_deletetopic_privileges'],
},
{
version: '1.3.0',
upgrades: ['favourites_to_bookmarks', 'sorted_sets_for_post_replies'],
},
{
version: '1.4.0',
upgrades: ['global_and_user_language_keys', 'sorted_set_for_pinned_topics'],
},
{
version: 'master', // rename this to whenever the next NodeBB version is (non-breaking)
upgrades: ['sound_settings', 'config_urls_update'],
},
{
version: 'develop', // rename this to whatever the next NodeBB version is (breaking)
upgrades: ['flags_refactor', 'post_votes_zset'],
},
],
};
Upgrade.getAll = function (callback) {
async.waterfall([
async.apply(utils.walk, path.join(__dirname, './upgrades')),
function (files, next) {
// Sort the upgrade scripts based on version
var versionA;
var versionB;
setImmediate(next, null, files.filter(function (file) {
return path.basename(file) !== 'TEMPLATE';
}).sort(function (a, b) {
versionA = path.dirname(a).split('/').pop();
versionB = path.dirname(b).split('/').pop();
return semver.compare(versionA, versionB);
}));
},
], callback);
};
Upgrade.check = function (callback) {
// Throw 'schema-out-of-date' if not all upgrade scripts have run
async.waterfall([
async.apply(Upgrade.getAll),
function (files, next) {
db.getSortedSetRange('schemaLog', 0, -1, function (err, executed) {
if (err) {
return callback(err);
}
var remainder = files.filter(function (name) {
return executed.indexOf(path.basename(name, '.js')) === -1;
});
next(remainder.length > 1 ? new Error('schema-out-of-date') : null);
});
},
], callback);
// var all = Upgrade.available.reduce(function (memo, current) {
// memo = memo.concat(current.upgrades);
// return memo;
// }, []);
};
Upgrade.run = function (callback) {
process.stdout.write('\nParsing upgrade scripts... ');
var queue = [];
var skipped = 0;
async.parallel({
// Retrieve list of upgrades that have already been run
completed: async.apply(db.getSortedSetRange, 'schemaLog', 0, -1),
// ... and those available to be run
available: Upgrade.getAll,
}, function (err, data) {
if (err) {
return callback(err);
}
queue = data.available.reduce(function (memo, cur) {
if (data.completed.indexOf(path.basename(cur, '.js')) === -1) {
memo.push(cur);
} else {
skipped += 1;
}
return memo;
}, queue);
Upgrade.process(queue, skipped, callback);
});
};
Upgrade.runSingle = function (query, callback) {
process.stdout.write('\nParsing upgrade scripts... ');
async.waterfall([
async.apply(utils.walk, path.join(__dirname, './upgrades')),
function (files, next) {
next(null, files.filter(function (file) {
return path.basename(file, '.js') === query;
}));
},
], function (err, files) {
if (err) {
return callback(err);
}
Upgrade.process(files, 0, callback);
});
};
Upgrade.process = function (files, skipCount, callback) {
process.stdout.write('OK'.green + ' | '.reset + String(files.length).cyan + ' script(s) found'.cyan + (skipCount > 0 ? ', '.cyan + String(skipCount).cyan + ' skipped'.cyan : '') + '\n'.reset);
async.waterfall([
async.apply(db.get, 'schemaDate'),
function (schemaDate, next) {
var schemaTime = new Date(schemaDate);
async.eachSeries(files, function (file, next) {
var scriptExport = require(file);
var date = new Date(scriptExport.timestamp);
process.stdout.write(' → '.white + String('[' + [date.getUTCFullYear(), date.getUTCMonth() + 1, date.getUTCDate()].join('/') + '] ').gray + String(scriptExport.name).reset + '... ');
// For backwards compatibility, cross-reference with schemaDate (if found). If a script's date is older, skip it
if (scriptExport.timestamp <= schemaTime) {
process.stdout.write('skipped\n'.grey);
db.sortedSetAdd('schemaLog', Date.now(), path.basename(file, '.js'));
return next();
}
// Do the upgrade...
scriptExport.method(function (err) {
if (err) {
process.stdout.write('error\n'.red);
return next(err);
}
// Record success in schemaLog
db.sortedSetAdd('schemaLog', Date.now(), path.basename(file, '.js'));
process.stdout.write('OK\n'.green);
next();
});
}, function (err) {
if (err) {
return next(err);
}
process.stdout.write('Upgrade complete!\n\n'.green);
next();
});
},
], callback);
};
module.exports = Upgrade;