2023-12-17 03:16:30 +00:00
|
|
|
import _ from 'lodash';
|
2022-05-30 15:10:32 +00:00
|
|
|
import { QueryInterface, Sequelize } from 'sequelize';
|
|
|
|
import Database from './database';
|
|
|
|
|
|
|
|
export interface MigrationContext {
|
|
|
|
db: Database;
|
|
|
|
queryInterface: QueryInterface;
|
|
|
|
sequelize: Sequelize;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Migration {
|
|
|
|
public name: string;
|
|
|
|
|
2022-06-17 02:25:59 +00:00
|
|
|
public context: { db: Database; [key: string]: any };
|
2022-05-30 15:10:32 +00:00
|
|
|
|
|
|
|
constructor(context: MigrationContext) {
|
|
|
|
this.context = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
get db() {
|
|
|
|
return this.context.db;
|
|
|
|
}
|
|
|
|
|
|
|
|
get sequelize() {
|
|
|
|
return this.context.db.sequelize;
|
|
|
|
}
|
|
|
|
|
|
|
|
get queryInterface() {
|
|
|
|
return this.context.db.sequelize.getQueryInterface();
|
|
|
|
}
|
|
|
|
|
|
|
|
async up() {
|
|
|
|
// todo
|
|
|
|
}
|
|
|
|
|
|
|
|
async down() {
|
|
|
|
// todo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MigrationItem {
|
|
|
|
name: string;
|
|
|
|
migration?: typeof Migration;
|
2022-06-17 02:25:59 +00:00
|
|
|
context?: any;
|
2022-05-30 15:10:32 +00:00
|
|
|
up?: any;
|
|
|
|
down?: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Migrations {
|
|
|
|
items = [];
|
|
|
|
context: any;
|
|
|
|
|
|
|
|
constructor(context: any) {
|
|
|
|
this.context = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
clear() {
|
|
|
|
this.items = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
add(item: MigrationItem) {
|
|
|
|
const Migration = item.migration;
|
|
|
|
if (Migration) {
|
2022-06-17 02:25:59 +00:00
|
|
|
const migration = new Migration({ ...this.context, ...item.context });
|
2022-05-30 15:10:32 +00:00
|
|
|
migration.name = item.name;
|
|
|
|
this.items.push(migration);
|
|
|
|
} else {
|
|
|
|
this.items.push(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
callback() {
|
2022-06-17 02:25:59 +00:00
|
|
|
return async (ctx) => {
|
2023-12-17 03:16:30 +00:00
|
|
|
return _.sortBy(this.items, (item) => {
|
|
|
|
const keys = item.name.split('/');
|
|
|
|
return keys.pop() || item.name;
|
|
|
|
});
|
2022-05-30 15:10:32 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|