2021-12-06 13:12:54 +00:00
|
|
|
import lodash from 'lodash';
|
2022-02-17 08:16:05 +00:00
|
|
|
import type { SequelizeHooks } from 'sequelize/types/lib/hooks';
|
|
|
|
import Database from './database';
|
2022-02-23 10:18:38 +00:00
|
|
|
import { Model } from './model';
|
2021-12-06 13:12:54 +00:00
|
|
|
|
|
|
|
const { hooks } = require('sequelize/lib/hooks');
|
|
|
|
|
|
|
|
export class ModelHook {
|
|
|
|
database: Database;
|
|
|
|
boundEvent = new Set<string>();
|
|
|
|
|
|
|
|
constructor(database: Database) {
|
|
|
|
this.database = database;
|
|
|
|
}
|
|
|
|
|
|
|
|
isModelHook(eventName: string | symbol): keyof SequelizeHooks | false {
|
|
|
|
if (lodash.isString(eventName)) {
|
|
|
|
const hookType = eventName.split('.').pop();
|
|
|
|
|
|
|
|
if (hooks[hookType]) {
|
|
|
|
return <keyof SequelizeHooks>hookType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
findModelName(hookArgs) {
|
|
|
|
for (const arg of hookArgs) {
|
2022-04-29 13:42:54 +00:00
|
|
|
if (arg?._previousDataValues) {
|
2021-12-06 13:12:54 +00:00
|
|
|
return (<Model>arg).constructor.name;
|
|
|
|
}
|
2022-03-14 05:24:00 +00:00
|
|
|
if (lodash.isPlainObject(arg)) {
|
|
|
|
if (arg['model']) {
|
|
|
|
return arg['model'].name;
|
|
|
|
}
|
2022-06-01 13:37:48 +00:00
|
|
|
const plural = arg?.name?.plural;
|
|
|
|
if (this.database.sequelize.isDefined(plural)) {
|
|
|
|
return plural;
|
|
|
|
}
|
|
|
|
const singular = arg?.name?.singular;
|
|
|
|
if (this.database.sequelize.isDefined(singular)) {
|
|
|
|
return singular;
|
2022-03-14 05:24:00 +00:00
|
|
|
}
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
bindEvent(eventName) {
|
|
|
|
this.boundEvent.add(eventName);
|
|
|
|
}
|
|
|
|
|
|
|
|
hasBindEvent(eventName) {
|
|
|
|
return this.boundEvent.has(eventName);
|
|
|
|
}
|
|
|
|
|
|
|
|
sequelizeHookBuilder(eventName) {
|
|
|
|
return async (...args: any[]) => {
|
|
|
|
const modelName = this.findModelName(args);
|
2022-03-14 05:24:00 +00:00
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
if (modelName) {
|
|
|
|
// emit model event
|
|
|
|
await this.database.emitAsync(`${modelName}.${eventName}`, ...args);
|
|
|
|
}
|
|
|
|
|
|
|
|
// emit sequelize global event
|
|
|
|
await this.database.emitAsync(eventName, ...args);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|