PeerTube/server/initializers/migrator.ts

106 lines
2.9 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as path from 'path'
import * as Promise from 'bluebird'
2017-05-22 18:58:25 +00:00
import { database as db } from './database'
2017-05-15 20:22:03 +00:00
import { LAST_MIGRATION_VERSION } from './constants'
import { logger, readdirPromise } from '../helpers'
function migrate () {
const p = db.sequelize.getQueryInterface().showAllTables()
.then(tables => {
// No tables, we don't need to migrate anything
// The installer will do that
if (tables.length === 0) throw null
})
.then(() => {
return db.Application.loadMigrationVersion()
})
.then(actualVersion => {
if (actualVersion === null) {
return db.Application.create({ migrationVersion: 0 }).then(() => 0)
}
return actualVersion
})
.then(actualVersion => {
// No need migrations, abort
if (actualVersion >= LAST_MIGRATION_VERSION) throw null
2017-02-18 10:56:28 +00:00
return actualVersion
})
.then(actualVersion => {
2017-02-18 10:56:28 +00:00
// If there are a new migration scripts
logger.info('Begin migrations.')
return getMigrationScripts().then(migrationScripts => ({ actualVersion, migrationScripts }))
})
.then(({ actualVersion, migrationScripts }) => {
2017-07-07 14:57:28 +00:00
return Promise.each(migrationScripts, entity => executeMigration(actualVersion, entity))
})
.then(() => {
logger.info('Migrations finished. New migration version schema: %s', LAST_MIGRATION_VERSION)
})
.catch(err => {
if (err === null) return undefined
throw err
})
return p
}
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
migrate
}
2016-12-25 08:44:57 +00:00
// ---------------------------------------------------------------------------
function getMigrationScripts () {
return readdirPromise(path.join(__dirname, 'migrations')).then(files => {
const filesToMigrate: {
version: string,
script: string
}[] = []
2016-12-25 08:44:57 +00:00
files.forEach(function (file) {
// Filename is something like 'version-blabla.js'
const version = file.split('-')[0]
filesToMigrate.push({
version,
script: file
})
})
return filesToMigrate
2016-12-25 08:44:57 +00:00
})
}
function executeMigration (actualVersion: number, entity: { version: string, script: string }) {
2017-05-22 18:58:25 +00:00
const versionScript = parseInt(entity.version, 10)
2016-12-25 08:44:57 +00:00
// Do not execute old migration scripts
if (versionScript <= actualVersion) return undefined
2016-12-25 08:44:57 +00: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))
return db.sequelize.transaction(t => {
2017-02-16 18:19:56 +00:00
const options = {
transaction: t,
queryInterface: db.sequelize.getQueryInterface(),
sequelize: db.sequelize
2017-02-16 18:19:56 +00:00
}
2016-12-25 08:44:57 +00:00
migrationScript.up(options)
.then(() => {
// Update the new migration version
db.Application.updateMigrationVersion(versionScript, t)
2016-12-25 08:44:57 +00:00
})
})
}