2017-06-05 21:53:49 +02:00
|
|
|
import * as path from 'path'
|
2017-07-05 13:26:25 +02:00
|
|
|
import { logger, readdirPromise } from '../helpers'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { LAST_MIGRATION_VERSION } from './constants'
|
|
|
|
import { sequelizeTypescript } from './database'
|
2017-07-05 13:26:25 +02:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function migrate () {
|
2017-12-12 17:53:50 +01:00
|
|
|
const tables = await sequelizeTypescript.getQueryInterface().showAllTables()
|
2017-03-04 10:40:09 +01:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
// No tables, we don't need to migrate anything
|
|
|
|
// The installer will do that
|
|
|
|
if (tables.length === 0) return
|
2017-02-18 11:56:28 +01:00
|
|
|
|
2017-12-13 17:46:23 +01:00
|
|
|
let actualVersion: number = null
|
|
|
|
|
|
|
|
// Search in "Applications" or "application" tables
|
|
|
|
try {
|
|
|
|
const [ rows ] = await sequelizeTypescript.query('SELECT "migrationVersion" FROM "Applications"')
|
|
|
|
if (rows && rows[ 0 ] && rows[ 0 ].migrationVersion) {
|
|
|
|
actualVersion = rows[ 0 ].migrationVersion
|
|
|
|
}
|
|
|
|
} catch {
|
|
|
|
const [ rows ] = await sequelizeTypescript.query('SELECT "migrationVersion" FROM "application"')
|
|
|
|
if (rows && rows[0] && rows[0].migrationVersion) {
|
|
|
|
actualVersion = rows[0].migrationVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
if (actualVersion === null) {
|
2017-12-13 17:46:23 +01:00
|
|
|
await sequelizeTypescript.query('INSERT INTO "application" ("migrationVersion") VALUES (0)')
|
2017-10-25 16:03:33 +02:00
|
|
|
actualVersion = 0
|
|
|
|
}
|
2016-09-26 22:36:36 +02:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
// No need migrations, abort
|
|
|
|
if (actualVersion >= LAST_MIGRATION_VERSION) return
|
2016-09-26 22:36:36 +02:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
// If there are a new migration scripts
|
|
|
|
logger.info('Begin migrations.')
|
|
|
|
|
|
|
|
const migrationScripts = await getMigrationScripts()
|
2016-09-26 22:36:36 +02:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
for (const migrationScript of migrationScripts) {
|
2017-11-27 09:47:21 +01:00
|
|
|
try {
|
|
|
|
await executeMigration(actualVersion, migrationScript)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot execute migration %s.', migrationScript.version, err)
|
|
|
|
process.exit(0)
|
|
|
|
}
|
2017-10-25 16:03:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
logger.info('Migrations finished. New migration version schema: %s', LAST_MIGRATION_VERSION)
|
2016-09-26 22:36:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
migrate
|
|
|
|
}
|
2016-09-26 22:36:36 +02:00
|
|
|
|
2016-12-25 09:44:57 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function getMigrationScripts () {
|
|
|
|
const files = await readdirPromise(path.join(__dirname, 'migrations'))
|
|
|
|
const filesToMigrate: {
|
|
|
|
version: string,
|
|
|
|
script: string
|
|
|
|
}[] = []
|
|
|
|
|
|
|
|
files
|
|
|
|
.filter(file => file.endsWith('.js.map') === false)
|
|
|
|
.forEach(file => {
|
|
|
|
// Filename is something like 'version-blabla.js'
|
|
|
|
const version = file.split('-')[0]
|
|
|
|
filesToMigrate.push({
|
|
|
|
version,
|
|
|
|
script: file
|
2016-12-25 09:44:57 +01:00
|
|
|
})
|
2017-10-25 16:03:33 +02:00
|
|
|
})
|
2016-12-25 09:44:57 +01:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
return filesToMigrate
|
2016-12-25 09:44:57 +01:00
|
|
|
}
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function executeMigration (actualVersion: number, entity: { version: string, script: string }) {
|
2017-05-22 20:58:25 +02:00
|
|
|
const versionScript = parseInt(entity.version, 10)
|
2016-12-25 09:44:57 +01:00
|
|
|
|
|
|
|
// Do not execute old migration scripts
|
2017-07-05 13:26:25 +02:00
|
|
|
if (versionScript <= actualVersion) return undefined
|
2016-12-25 09:44:57 +01:00
|
|
|
|
|
|
|
// Load the migration module and run it
|
|
|
|
const migrationScriptName = entity.script
|
|
|
|
logger.info('Executing %s migration script.', migrationScriptName)
|
|
|
|
|
|
|
|
const migrationScript = require(path.join(__dirname, 'migrations', migrationScriptName))
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
await sequelizeTypescript.transaction(async t => {
|
2017-02-16 19:19:56 +01:00
|
|
|
const options = {
|
|
|
|
transaction: t,
|
2017-12-12 17:53:50 +01:00
|
|
|
queryInterface: sequelizeTypescript.getQueryInterface(),
|
|
|
|
sequelize: sequelizeTypescript
|
2017-02-16 19:19:56 +01:00
|
|
|
}
|
2016-12-25 09:44:57 +01:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
await migrationScript.up(options)
|
|
|
|
|
|
|
|
// Update the new migration version
|
2017-12-13 17:46:23 +01:00
|
|
|
await sequelizeTypescript.query('UPDATE "application" SET "migrationVersion" = ' + versionScript, { transaction: t })
|
2016-12-25 09:44:57 +01:00
|
|
|
})
|
|
|
|
}
|