index.js
12.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
// Migrator
// -------
import fs from 'fs';
import path from 'path';
import mkdirp from 'mkdirp';
import Promise from 'bluebird';
import * as helpers from '../helpers';
import {
assign, bind, difference, each, filter, get, includes, isBoolean,
isEmpty, isUndefined, map, max, template
} from 'lodash'
import inherits from 'inherits';
function LockError(msg) {
this.name = 'MigrationLocked';
this.message = msg;
}
inherits(LockError, Error);
const SUPPORTED_EXTENSIONS = Object.freeze([
'.co', '.coffee', '.eg', '.iced', '.js', '.litcoffee', '.ls', '.ts'
]);
const CONFIG_DEFAULT = Object.freeze({
extension: 'js',
tableName: 'knex_migrations',
directory: './migrations',
disableTransactions: false
});
// The new migration we're performing, typically called from the `knex.migrate`
// interface on the main `knex` object. Passes the `knex` instance performing
// the migration.
export default class Migrator {
constructor(knex) {
this.knex = knex
this.config = this.setConfig(knex.client.config.migrations);
}
// Migrators to the latest configuration.
latest(config) {
this.config = this.setConfig(config);
return this._migrationData()
.tap(validateMigrationList)
.spread((all, completed) => {
return this._runBatch(difference(all, completed), 'up');
})
}
// Rollback the last "batch" of migrations that were run.
rollback(config) {
return Promise.try(() => {
this.config = this.setConfig(config);
return this._migrationData()
.tap(validateMigrationList)
.then((val) => this._getLastBatch(val))
.then((migrations) => {
return this._runBatch(map(migrations, 'name'), 'down');
});
})
}
status(config) {
this.config = this.setConfig(config);
return Promise.all([
this.knex(this.config.tableName).select('*'),
this._listAll()
])
.spread((db, code) => db.length - code.length);
}
// Retrieves and returns the current migration version we're on, as a promise.
// If no migrations have been run yet, return "none".
currentVersion(config) {
this.config = this.setConfig(config);
return this._listCompleted(config)
.then((completed) => {
const val = max(map(completed, value => value.split('_')[0]));
return (isUndefined(val) ? 'none' : val);
})
}
forceFreeMigrationsLock(config) {
this.config = this.setConfig(config);
const lockTable = this._getLockTableName();
return this.knex.schema.hasTable(lockTable)
.then(exist => exist && this._freeLock());
}
// Creates a new migration, with a given name.
make(name, config) {
this.config = this.setConfig(config);
if (!name) {
return Promise.reject(new Error('A name must be specified for the generated migration'));
}
return this._ensureFolder(config)
.then((val) => this._generateStubTemplate(val))
.then((val) => this._writeNewMigration(name, val));
}
// Lists all available migration versions, as a sorted array.
_listAll(config) {
this.config = this.setConfig(config);
return Promise.promisify(fs.readdir, {context: fs})(this._absoluteConfigDir())
.then(migrations => {
return filter(migrations, function(value) {
const extension = path.extname(value);
return includes(SUPPORTED_EXTENSIONS, extension);
}).sort();
})
}
// Ensures a folder for the migrations exist, dependent on the migration
// config settings.
_ensureFolder() {
const dir = this._absoluteConfigDir();
return Promise.promisify(fs.stat, {context: fs})(dir)
.catch(() => Promise.promisify(mkdirp)(dir));
}
// Ensures that a proper table has been created, dependent on the migration
// config settings.
_ensureTable() {
const table = this.config.tableName;
const lockTable = this._getLockTableName();
return this.knex.schema.hasTable(table)
.then(exists => !exists && this._createMigrationTable(table))
.then(() => this.knex.schema.hasTable(lockTable))
.then(exists => !exists && this._createMigrationLockTable(lockTable))
.then(() => this.knex(lockTable).select('*'))
.then(data => !data.length && this.knex(lockTable).insert({ is_locked: 0 }));
}
// Create the migration table, if it doesn't already exist.
_createMigrationTable(tableName) {
return this.knex.schema.createTableIfNotExists(tableName, function(t) {
t.increments();
t.string('name');
t.integer('batch');
t.timestamp('migration_time');
});
}
_createMigrationLockTable(tableName) {
return this.knex.schema.createTableIfNotExists(tableName, function(t) {
t.integer('is_locked');
});
}
_getLockTableName() {
return this.config.tableName + '_lock';
}
_isLocked(trx) {
const tableName = this._getLockTableName();
return this.knex(tableName)
.transacting(trx)
.forUpdate()
.select('*')
.then(data => data[0].is_locked);
}
_lockMigrations(trx) {
const tableName = this._getLockTableName();
return this.knex(tableName)
.transacting(trx)
.update({ is_locked: 1 });
}
_getLock() {
return this.knex.transaction(trx => {
return this._isLocked(trx)
.then(isLocked => {
if (isLocked) {
throw new Error("Migration table is already locked");
}
})
.then(() => this._lockMigrations(trx));
}).catch(err => {
throw new LockError(err.message);
});
}
_freeLock() {
const tableName = this._getLockTableName();
return this.knex(tableName)
.update({ is_locked: 0 });
}
// Run a batch of current migrations, in sequence.
_runBatch(migrations, direction) {
return this._getLock()
.then(() => Promise.all(map(migrations, bind(this._validateMigrationStructure, this))))
.then(() => this._latestBatchNumber())
.then(batchNo => {
if (direction === 'up') batchNo++;
return batchNo;
})
.then(batchNo => {
return this._waterfallBatch(batchNo, migrations, direction)
})
.tap(() => this._freeLock())
.catch(error => {
let cleanupReady = Promise.resolve();
if (error instanceof LockError) {
// If locking error do not free the lock.
helpers.warn(`Can't take lock to run migrations: ${error.message}`);
helpers.warn(
'If you are sure migrations are not running you can release the ' +
'lock manually by deleting all the rows from migrations lock ' +
'table: ' + this._getLockTableName()
);
} else {
helpers.warn(`migrations failed with error: ${error.message}`)
// If the error was not due to a locking issue, then remove the lock.
cleanupReady = this._freeLock();
}
return cleanupReady.finally(function() {
throw error;
});
});
}
// Validates some migrations by requiring and checking for an `up` and `down`
// function.
_validateMigrationStructure(name) {
const migration = require(path.join(this._absoluteConfigDir(), name));
if (typeof migration.up !== 'function' || typeof migration.down !== 'function') {
throw new Error(`Invalid migration: ${name} must have both an up and down function`);
}
return name;
}
// Lists all migrations that have been completed for the current db, as an
// array.
_listCompleted() {
const { tableName } = this.config
return this._ensureTable(tableName)
.then(() => this.knex(tableName).orderBy('id').select('name'))
.then((migrations) => map(migrations, 'name'))
}
// Gets the migration list from the specified migration directory, as well as
// the list of completed migrations to check what should be run.
_migrationData() {
return Promise.all([
this._listAll(),
this._listCompleted()
]);
}
// Generates the stub template for the current migration, returning a compiled
// template.
_generateStubTemplate() {
const stubPath = this.config.stub ||
path.join(__dirname, 'stub', this.config.extension + '.stub');
return Promise.promisify(fs.readFile, {context: fs})(stubPath).then(stub =>
template(stub.toString(), {variable: 'd'})
);
}
// Write a new migration to disk, using the config and generated filename,
// passing any `variables` given in the config to the template.
_writeNewMigration(name, tmpl) {
const { config } = this;
const dir = this._absoluteConfigDir();
if (name[0] === '-') name = name.slice(1);
const filename = yyyymmddhhmmss() + '_' + name + '.' + config.extension;
return Promise.promisify(fs.writeFile, {context: fs})(
path.join(dir, filename),
tmpl(config.variables || {})
).return(path.join(dir, filename));
}
// Get the last batch of migrations, by name, ordered by insert id in reverse
// order.
_getLastBatch() {
const { tableName } = this.config;
return this.knex(tableName)
.where('batch', function(qb) {
qb.max('batch').from(tableName)
})
.orderBy('id', 'desc');
}
// Returns the latest batch number.
_latestBatchNumber() {
return this.knex(this.config.tableName)
.max('batch as max_batch').then(obj => obj[0].max_batch || 0);
}
// If transaction config for a single migration is defined, use that.
// Otherwise, rely on the common config. This allows enabling/disabling
// transaction for a single migration at will, regardless of the common
// config.
_useTransaction(migration, allTransactionsDisabled) {
const singleTransactionValue = get(migration, 'config.transaction');
return isBoolean(singleTransactionValue) ?
singleTransactionValue :
!allTransactionsDisabled;
}
// Runs a batch of `migrations` in a specified `direction`, saving the
// appropriate database information as the migrations are run.
_waterfallBatch(batchNo, migrations, direction) {
const { knex } = this;
const {tableName, disableTransactions} = this.config
const directory = this._absoluteConfigDir()
let current = Promise.bind({failed: false, failedOn: 0});
const log = [];
each(migrations, (migration) => {
const name = migration;
migration = require(directory + '/' + name);
// We're going to run each of the migrations in the current "up".
current = current.then(() => {
if (this._useTransaction(migration, disableTransactions)) {
return this._transaction(migration, direction, name)
}
return warnPromise(migration[direction](knex, Promise), name)
})
.then(() => {
log.push(path.join(directory, name));
if (direction === 'up') {
return knex(tableName).insert({
name,
batch: batchNo,
migration_time: new Date()
});
}
if (direction === 'down') {
return knex(tableName).where({name}).del();
}
});
})
return current.thenReturn([batchNo, log]);
}
_transaction(migration, direction, name) {
return this.knex.transaction((trx) => {
return warnPromise(migration[direction](trx, Promise), name, () => {
trx.commit()
})
})
}
_absoluteConfigDir() {
return path.resolve(process.cwd(), this.config.directory);
}
setConfig(config) {
return assign({}, CONFIG_DEFAULT, this.config || {}, config);
}
}
// Validates that migrations are present in the appropriate directories.
function validateMigrationList(migrations) {
const all = migrations[0];
const completed = migrations[1];
const diff = difference(completed, all);
if (!isEmpty(diff)) {
throw new Error(
`The migration directory is corrupt, the following files are missing: ${diff.join(', ')}`
);
}
}
function warnPromise(value, name, fn) {
if (!value || typeof value.then !== 'function') {
helpers.warn(`migration ${name} did not return a promise`);
if (fn && typeof fn === 'function') fn()
}
return value;
}
// Ensure that we have 2 places for each of the date segments.
function padDate(segment) {
segment = segment.toString();
return segment[1] ? segment : `0${segment}`;
}
// Get a date object in the correct format, without requiring a full out library
// like "moment.js".
function yyyymmddhhmmss() {
const d = new Date();
return d.getFullYear().toString() +
padDate(d.getMonth() + 1) +
padDate(d.getDate()) +
padDate(d.getHours()) +
padDate(d.getMinutes()) +
padDate(d.getSeconds());
}