1
0
Fork 0
peertube/server/initializers/migrator.ts

94 lines
2.7 KiB
TypeScript
Raw Normal View History

2017-06-05 15:53:49 -04:00
import * as path from 'path'
import { logger, readdirPromise } from '../helpers'
2017-12-12 11:53:50 -05:00
import { ApplicationModel } from '../models/application/application'
import { LAST_MIGRATION_VERSION } from './constants'
import { sequelizeTypescript } from './database'
async function migrate () {
2017-12-12 11:53:50 -05:00
const tables = await sequelizeTypescript.getQueryInterface().showAllTables()
// No tables, we don't need to migrate anything
// The installer will do that
if (tables.length === 0) return
2017-02-18 05:56:28 -05:00
2017-12-12 11:53:50 -05:00
let actualVersion = await ApplicationModel.loadMigrationVersion()
if (actualVersion === null) {
2017-12-12 11:53:50 -05:00
await ApplicationModel.create({ migrationVersion: 0 })
actualVersion = 0
}
// No need migrations, abort
if (actualVersion >= LAST_MIGRATION_VERSION) return
// If there are a new migration scripts
logger.info('Begin migrations.')
const migrationScripts = await getMigrationScripts()
for (const migrationScript of migrationScripts) {
2017-11-27 03:47:21 -05:00
try {
await executeMigration(actualVersion, migrationScript)
} catch (err) {
logger.error('Cannot execute migration %s.', migrationScript.version, err)
process.exit(0)
}
}
logger.info('Migrations finished. New migration version schema: %s', LAST_MIGRATION_VERSION)
}
// ---------------------------------------------------------------------------
2017-05-15 16:22:03 -04:00
export {
migrate
}
2016-12-25 03:44:57 -05: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 03:44:57 -05:00
})
})
2016-12-25 03:44:57 -05:00
return filesToMigrate
2016-12-25 03:44:57 -05:00
}
async function executeMigration (actualVersion: number, entity: { version: string, script: string }) {
2017-05-22 14:58:25 -04:00
const versionScript = parseInt(entity.version, 10)
2016-12-25 03:44:57 -05:00
// Do not execute old migration scripts
if (versionScript <= actualVersion) return undefined
2016-12-25 03:44:57 -05: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 11:53:50 -05:00
await sequelizeTypescript.transaction(async t => {
2017-02-16 13:19:56 -05:00
const options = {
transaction: t,
2017-12-12 11:53:50 -05:00
queryInterface: sequelizeTypescript.getQueryInterface(),
sequelize: sequelizeTypescript
2017-02-16 13:19:56 -05:00
}
2016-12-25 03:44:57 -05:00
await migrationScript.up(options)
// Update the new migration version
2017-12-12 11:53:50 -05:00
await ApplicationModel.updateMigrationVersion(versionScript, t)
2016-12-25 03:44:57 -05:00
})
}