2018-03-26 20:23:34 +00:00
|
|
|
/* eslint-env browser */
|
|
|
|
|
2018-04-02 19:08:53 +00:00
|
|
|
const {
|
|
|
|
head,
|
|
|
|
isFunction,
|
|
|
|
isObject,
|
|
|
|
isString,
|
|
|
|
last,
|
|
|
|
} = require('lodash');
|
|
|
|
|
2018-03-26 19:17:19 +00:00
|
|
|
|
2018-03-28 17:10:54 +00:00
|
|
|
const db = require('../database');
|
2018-03-26 19:34:36 +00:00
|
|
|
const { deferredToPromise } = require('../deferred_to_promise');
|
2018-03-26 19:17:19 +00:00
|
|
|
|
2018-03-26 19:34:36 +00:00
|
|
|
|
2018-03-28 17:00:52 +00:00
|
|
|
const closeDatabaseConnection = ({ Backbone } = {}) =>
|
2018-03-28 14:54:01 +00:00
|
|
|
deferredToPromise(Backbone.sync('closeall'));
|
2018-03-26 20:23:34 +00:00
|
|
|
|
|
|
|
exports.runMigrations = async ({ Backbone, database } = {}) => {
|
2018-03-26 19:17:19 +00:00
|
|
|
if (!isObject(Backbone) || !isObject(Backbone.Collection) ||
|
|
|
|
!isFunction(Backbone.Collection.extend)) {
|
2018-04-11 19:44:52 +00:00
|
|
|
throw new TypeError("'Backbone' is required");
|
2018-03-26 19:17:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!isObject(database) || !isString(database.id) ||
|
|
|
|
!Array.isArray(database.migrations)) {
|
2018-04-11 19:44:52 +00:00
|
|
|
throw new TypeError("'database' is required");
|
2018-03-26 19:17:19 +00:00
|
|
|
}
|
|
|
|
|
2018-03-28 17:10:54 +00:00
|
|
|
const {
|
|
|
|
firstVersion: firstMigrationVersion,
|
|
|
|
lastVersion: lastMigrationVersion,
|
|
|
|
} = getMigrationVersions(database);
|
|
|
|
|
|
|
|
const databaseVersion = await db.getVersion(database.id);
|
|
|
|
const isAlreadyUpgraded = databaseVersion >= lastMigrationVersion;
|
|
|
|
|
2018-03-28 18:45:07 +00:00
|
|
|
console.log('Database status', {
|
2018-03-28 17:10:54 +00:00
|
|
|
firstMigrationVersion,
|
|
|
|
lastMigrationVersion,
|
|
|
|
databaseVersion,
|
|
|
|
isAlreadyUpgraded,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (isAlreadyUpgraded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-26 19:17:19 +00:00
|
|
|
const migrationCollection = new (Backbone.Collection.extend({
|
|
|
|
database,
|
|
|
|
storeName: 'items',
|
|
|
|
}))();
|
|
|
|
|
2018-03-26 23:11:21 +00:00
|
|
|
await deferredToPromise(migrationCollection.fetch({ limit: 1 }));
|
2018-03-28 14:38:05 +00:00
|
|
|
console.log('Close database connection');
|
2018-03-28 17:00:52 +00:00
|
|
|
await closeDatabaseConnection({ Backbone });
|
2018-03-26 19:17:19 +00:00
|
|
|
};
|
2018-03-28 17:05:49 +00:00
|
|
|
|
|
|
|
const getMigrationVersions = (database) => {
|
|
|
|
if (!isObject(database) || !Array.isArray(database.migrations)) {
|
2018-04-11 19:44:52 +00:00
|
|
|
throw new TypeError("'database' is required");
|
2018-03-28 17:05:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const firstMigration = head(database.migrations);
|
|
|
|
const lastMigration = last(database.migrations);
|
|
|
|
|
|
|
|
const firstVersion = firstMigration ? parseInt(firstMigration.version, 10) : null;
|
|
|
|
const lastVersion = lastMigration ? parseInt(lastMigration.version, 10) : null;
|
|
|
|
|
|
|
|
return { firstVersion, lastVersion };
|
|
|
|
};
|