1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/rocketchat_ynh.git synced 2024-09-03 20:16:25 +02:00
rocketchat_ynh/sources/programs/server/packages/rocketchat_migrations.js
2016-04-29 16:32:48 +02:00

421 lines
45 KiB
JavaScript

(function () {
/* Imports */
var Meteor = Package.meteor.Meteor;
var RocketChat = Package['rocketchat:lib'].RocketChat;
var ECMAScript = Package.ecmascript.ECMAScript;
var _ = Package.underscore._;
var check = Package.check.check;
var Match = Package.check.Match;
var MongoInternals = Package.mongo.MongoInternals;
var Mongo = Package.mongo.Mongo;
var moment = Package['momentjs:moment'].moment;
var TAPi18next = Package['tap:i18n'].TAPi18next;
var TAPi18n = Package['tap:i18n'].TAPi18n;
var babelHelpers = Package['babel-runtime'].babelHelpers;
var Symbol = Package['ecmascript-runtime'].Symbol;
var Map = Package['ecmascript-runtime'].Map;
var Set = Package['ecmascript-runtime'].Set;
var Promise = Package.promise.Promise;
/* Package-scope variables */
var Migrations, migrated;
(function(){
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// //
// packages/rocketchat_migrations/migrations.js //
// //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
/* //
Adds migration capabilities. Migrations are defined like: //
//
Migrations.add({ //
up: function() {}, //*required* code to run to migrate upwards //
version: 1, //*required* number to identify migration order //
down: function() {}, //*optional* code to run to migrate downwards //
name: 'Something' //*optional* display name for the migration //
}); //
//
The ordering of migrations is determined by the version you set. //
//
To run the migrations, set the MIGRATE environment variable to either //
'latest' or the version number you want to migrate to. Optionally, append //
',exit' if you want the migrations to exit the meteor process, e.g if you're //
migrating from a script (remember to pass the --once parameter). //
//
e.g: //
MIGRATE="latest" mrt # ensure we'll be at the latest version and run the app //
MIGRATE="latest,exit" mrt --once # ensure we'll be at the latest version and exit //
MIGRATE="2,exit" mrt --once # migrate to version 2 and exit //
//
Note: Migrations will lock ensuring only 1 app can be migrating at once. If //
a migration crashes, the control record in the migrations collection will //
remain locked and at the version it was at previously, however the db could //
be in an inconsistant state. //
*/ //
//
// since we'll be at version 0 by default, we should have a migration set for //
// it. //
var DefaultMigration = { // 31
version: 0, // 32
up: function () { // 33
// @TODO: check if collection "migrations" exist //
// If exists, rename and rerun _migrateTo //
} //
}; //
//
Migrations = { // 39
_list: [DefaultMigration], // 40
options: { // 41
// false disables logging //
log: true, // 43
// null or a function //
logger: null, // 45
// enable/disable info log "already at latest." //
logIfLatest: true, // 47
// lock will be valid for this amount of minutes //
lockExpiration: 5, // 49
// retry interval in seconds //
retryInterval: 10, // 51
// max number of attempts to retry unlock //
maxAttempts: 30, // 53
// migrations collection name //
collectionName: "migrations" // 55
// collectionName: "rocketchat_migrations" //
}, //
config: function (opts) { // 58
this.options = _.extend({}, this.options, opts); // 59
} //
}; //
//
Migrations._collection = new Mongo.Collection(Migrations.options.collectionName); // 63
//
/* Create a box around messages for displaying on a console.log */ //
function makeABox(message) { // 66
var color = arguments.length <= 1 || arguments[1] === undefined ? 'red' : arguments[1]; //
//
if (!_.isArray(message)) { // 67
message = message.split("\n"); // 68
} //
var len = _(message).reduce(function (memo, msg) { // 70
return Math.max(memo, msg.length); // 71
}, 0) + 4; //
var text = message.map(function (msg) { // 73
return "|"[color] + s.lrpad(msg, len)[color] + "|"[color]; // 74
}).join("\n"); //
var topLine = "+"[color] + s.pad('', len, '-')[color] + "+"[color]; // 76
var separator = "|"[color] + s.pad('', len, '') + "|"[color]; // 77
var bottomLine = "+"[color] + s.pad('', len, '-')[color] + "+"[color]; // 78
return "\n" + topLine + "\n" + separator + "\n" + text + "\n" + separator + "\n" + bottomLine + "\n"; // 79
} //
//
/* //
Logger factory function. Takes a prefix string and options object //
and uses an injected `logger` if provided, else falls back to //
Meteor's `Log` package. //
Will send a log object to the injected logger, on the following form: //
message: String //
level: String (info, warn, error, debug) //
tag: 'Migrations' //
*/ //
function createLogger(prefix) { // 91
check(prefix, String); // 92
//
// Return noop if logging is disabled. //
if (Migrations.options.log === false) { // 95
return function () {}; // 96
} //
//
return function (level, message) { // 99
check(level, Match.OneOf('info', 'error', 'warn', 'debug')); // 100
check(message, Match.OneOf(String, [String])); // 101
//
var logger = Migrations.options && Migrations.options.logger; // 103
//
if (logger && _.isFunction(logger)) { // 105
//
logger({ // 107
level: level, // 108
message: message, // 109
tag: prefix // 110
}); //
} else { //
Log[level]({ // 114
message: prefix + ': ' + message // 115
}); //
} //
}; //
} //
//
var log; // 121
//
var options = Migrations.options; // 123
//
// collection holding the control record //
//
log = createLogger('Migrations'); // 127
//
['info', 'warn', 'error', 'debug'].forEach(function (level) { // 129
log[level] = _.partial(log, level); // 130
}); //
//
// if (process.env.MIGRATE) //
// Migrations.migrateTo(process.env.MIGRATE); //
//
// Add a new migration: //
// {up: function *required //
// version: Number *required //
// down: function *optional //
// name: String *optional //
// } //
Migrations.add = function (migration) { // 142
if (typeof migration.up !== 'function') throw new Meteor.Error('Migration must supply an up function.'); // 143
//
if (typeof migration.version !== 'number') throw new Meteor.Error('Migration must supply a version number.');
//
if (migration.version <= 0) throw new Meteor.Error('Migration version must be greater than 0'); // 149
//
// Freeze the migration object to make it hereafter immutable //
Object.freeze(migration); // 153
//
this._list.push(migration); // 155
this._list = _.sortBy(this._list, function (m) { // 156
return m.version; // 157
}); //
}; //
//
// Attempts to run the migrations using command in the form of: //
// e.g 'latest', 'latest,exit', 2 //
// use 'XX,rerun' to re-run the migration at that version //
Migrations.migrateTo = function (command) { // 164
if (_.isUndefined(command) || command === '' || this._list.length === 0) throw new Error("Cannot migrate using invalid command: " + command);
//
if (typeof command === 'number') { // 168
var version = command; // 169
} else { //
var version = command.split(',')[0]; // 171
var subcommand = command.split(',')[1]; // 172
} //
//
var maxAttempts = Migrations.options.maxAttempts; // 175
var retryInterval = Migrations.options.retryInterval; // 176
for (var attempts = 1; attempts <= maxAttempts; attempts++) { // 177
if (version === 'latest') { // 178
migrated = this._migrateTo(_.last(this._list).version); // 179
} else { //
migrated = this._migrateTo(parseInt(version), subcommand === 'rerun'); // 181
} //
if (migrated) { // 183
break; // 184
} else { //
var willRetry = undefined; // 186
if (attempts < maxAttempts) { // 187
willRetry = " Trying again in " + retryInterval + " seconds."; // 188
Meteor._sleepForMs(retryInterval * 1000); // 189
} else { //
willRetry = ""; // 191
} //
console.log(("Not migrating, control is locked. Attempt " + attempts + "/" + maxAttempts + "." + willRetry).yellow);
} //
} //
if (!migrated) { // 196
var control = this._getControl(); // Side effect: upserts control document. // 197
console.log(makeABox(["ERROR! SERVER STOPPED", "", "Your database migration control is locked.", "Please make sure you are running the latest version and try again.", "If the problem persists, please contact support.", "", "This Rocket.Chat version: " + RocketChat.Info.version, "Database locked at version: " + control.version, "Database target version: " + (version === 'latest' ? _.last(this._list).version : version), "", "Commit: " + RocketChat.Info.commit.hash, "Date: " + RocketChat.Info.commit.date, "Branch: " + RocketChat.Info.commit.branch, "Tag: " + RocketChat.Info.commit.tag]));
process.exit(1); // 214
} //
//
// remember to run meteor with --once otherwise it will restart //
if (subcommand === 'exit') process.exit(0); // 218
}; //
//
// just returns the current version //
Migrations.getVersion = function () { // 223
return this._getControl().version; // 224
}; //
//
// migrates to the specific version passed in //
Migrations._migrateTo = function (version, rerun) { // 228
var self = this; // 229
var control = this._getControl(); // Side effect: upserts control document. // 230
var currentVersion = control.version; // 231
//
if (lock() === false) { // 233
// log.info('Not migrating, control is locked.'); //
// Warning //
return false; // 236
} //
//
if (rerun) { // 239
log.info('Rerunning version ' + version); // 240
migrate('up', version); // 241
log.info('Finished migrating.'); // 242
unlock(); // 243
return true; // 244
} //
//
if (currentVersion === version) { // 247
if (this.options.logIfLatest) { // 248
log.info('Not migrating, already at version ' + version); // 249
} //
unlock(); // 251
return true; // 252
} //
//
var startIdx = this._findIndexByVersion(currentVersion); // 255
var endIdx = this._findIndexByVersion(version); // 256
//
// log.info('startIdx:' + startIdx + ' endIdx:' + endIdx); //
log.info('Migrating from version ' + this._list[startIdx].version + ' -> ' + this._list[endIdx].version); // 259
//
// run the actual migration //
function migrate(direction, idx) { // 262
var migration = self._list[idx]; // 263
//
if (typeof migration[direction] !== 'function') { // 265
unlock(); // 266
throw new Meteor.Error('Cannot migrate ' + direction + ' on version ' + migration.version); // 267
} //
//
function maybeName() { // 270
return migration.name ? ' (' + migration.name + ')' : ''; // 271
} //
//
log.info('Running ' + direction + '() on version ' + migration.version + maybeName()); // 274
//
try { // 276
migration[direction](migration); // 277
} catch (e) { //
console.log(makeABox(["ERROR! SERVER STOPPED", "", "Your database migration failed:", e.message, "", "Please make sure you are running the latest version and try again.", "If the problem persists, please contact support.", "", "This Rocket.Chat version: " + RocketChat.Info.version, "Database locked at version: " + control.version, "Database target version: " + version, "", "Commit: " + RocketChat.Info.commit.hash, "Date: " + RocketChat.Info.commit.date, "Branch: " + RocketChat.Info.commit.branch, "Tag: " + RocketChat.Info.commit.tag]));
process.exit(1); // 297
} //
} //
//
// Returns true if lock was acquired. //
function lock() { // 302
var date = new Date(); // 303
var dateMinusInterval = moment(date).subtract(self.options.lockExpiration, 'minutes').toDate(); // 304
var build = RocketChat.Info ? RocketChat.Info.build.date : date; // 305
//
// This is atomic. The selector ensures only one caller at a time will see //
// the unlocked control, and locking occurs in the same update's modifier. //
// All other simultaneous callers will get false back from the update. //
return self._collection.update({ // 310
_id: 'control', // 311
$or: [{ // 312
locked: false // 313
}, { //
lockedAt: { // 315
$lt: dateMinusInterval // 316
} //
}, { //
buildAt: { // 319
$ne: build // 320
} //
}] //
}, { //
$set: { // 324
locked: true, // 325
lockedAt: date, // 326
buildAt: build // 327
} //
}) === 1; //
} //
//
// Side effect: saves version. //
function unlock() { // 334
self._setControl({ // 335
locked: false, // 336
version: currentVersion // 337
}); //
} //
//
if (currentVersion < version) { // 341
for (var i = startIdx; i < endIdx; i++) { // 342
migrate('up', i + 1); // 343
currentVersion = self._list[i + 1].version; // 344
self._setControl({ // 345
locked: true, // 346
version: currentVersion // 347
}); //
} //
} else { //
for (var i = startIdx; i > endIdx; i--) { // 351
migrate('down', i); // 352
currentVersion = self._list[i - 1].version; // 353
self._setControl({ // 354
locked: true, // 355
version: currentVersion // 356
}); //
} //
} //
//
unlock(); // 361
log.info('Finished migrating.'); // 362
}; //
//
// gets the current control record, optionally creating it if non-existant //
Migrations._getControl = function () { // 366
var control = this._collection.findOne({ // 367
_id: 'control' // 368
}); //
//
return control || this._setControl({ // 371
version: 0, // 372
locked: false // 373
}); //
}; //
//
// sets the control record //
Migrations._setControl = function (control) { // 378
// be quite strict //
check(control.version, Number); // 380
check(control.locked, Boolean); // 381
//
this._collection.update({ // 383
_id: 'control' // 384
}, { //
$set: { // 386
version: control.version, // 387
locked: control.locked // 388
} //
}, { //
upsert: true // 391
}); //
//
return control; // 394
}; //
//
// returns the migration index in _list or throws if not found //
Migrations._findIndexByVersion = function (version) { // 398
for (var i = 0; i < this._list.length; i++) { // 399
if (this._list[i].version === version) return i; // 400
} //
//
throw new Meteor.Error('Can\'t find migration version ' + version); // 404
}; //
//
//reset (mainly intended for tests) //
Migrations._reset = function () { // 408
this._list = [{ // 409
version: 0, // 410
up: function () {} // 411
}]; //
this._collection.remove({}); // 413
}; //
//
RocketChat.Migrations = Migrations; // 416
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
}).call(this);
/* Exports */
if (typeof Package === 'undefined') Package = {};
Package['rocketchat:migrations'] = {};
})();
//# sourceMappingURL=rocketchat_migrations.js.map