mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
000e76e3b4
This also gets rid of `Db.collection`, which was another source of circular dependencies.
122 lines
3.3 KiB
TypeScript
122 lines
3.3 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
import { Service } from 'typedi';
|
|
import type {
|
|
IExternalHooksClass,
|
|
IExternalHooksFileData,
|
|
IExternalHooksFunctions,
|
|
} from '@/Interfaces';
|
|
import config from '@/config';
|
|
import { UserRepository } from '@db/repositories/user.repository';
|
|
import { CredentialsRepository } from '@db/repositories/credentials.repository';
|
|
import { SettingsRepository } from '@db/repositories/settings.repository';
|
|
import { WorkflowRepository } from '@db/repositories/workflow.repository';
|
|
|
|
@Service()
|
|
export class ExternalHooks implements IExternalHooksClass {
|
|
externalHooks: {
|
|
[key: string]: Array<() => {}>;
|
|
} = {};
|
|
|
|
private initDidRun = false;
|
|
|
|
private dbCollections: IExternalHooksFunctions['dbCollections'];
|
|
|
|
constructor(
|
|
userRepository: UserRepository,
|
|
settingsRepository: SettingsRepository,
|
|
credentialsRepository: CredentialsRepository,
|
|
workflowRepository: WorkflowRepository,
|
|
) {
|
|
/* eslint-disable @typescript-eslint/naming-convention */
|
|
this.dbCollections = {
|
|
User: userRepository,
|
|
Settings: settingsRepository,
|
|
Credentials: credentialsRepository,
|
|
Workflow: workflowRepository,
|
|
};
|
|
/* eslint-enable @typescript-eslint/naming-convention */
|
|
}
|
|
|
|
async init(): Promise<void> {
|
|
if (this.initDidRun) {
|
|
return;
|
|
}
|
|
|
|
await this.loadHooksFiles();
|
|
|
|
this.initDidRun = true;
|
|
}
|
|
|
|
async reload(externalHooks?: IExternalHooksFileData) {
|
|
this.externalHooks = {};
|
|
|
|
if (externalHooks === undefined) {
|
|
await this.loadHooksFiles(true);
|
|
} else {
|
|
this.loadHooks(externalHooks);
|
|
}
|
|
}
|
|
|
|
async loadHooksFiles(reload = false) {
|
|
const externalHookFiles = config.getEnv('externalHookFiles').split(':');
|
|
|
|
// Load all the provided hook-files
|
|
for (let hookFilePath of externalHookFiles) {
|
|
hookFilePath = hookFilePath.trim();
|
|
if (hookFilePath !== '') {
|
|
try {
|
|
if (reload) {
|
|
delete require.cache[require.resolve(hookFilePath)];
|
|
}
|
|
|
|
const hookFile = require(hookFilePath) as IExternalHooksFileData;
|
|
this.loadHooks(hookFile);
|
|
} catch (error) {
|
|
throw new Error(
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
|
`Problem loading external hook file "${hookFilePath}": ${error.message}`,
|
|
{ cause: error as Error },
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
loadHooks(hookFileData: IExternalHooksFileData) {
|
|
for (const resource of Object.keys(hookFileData)) {
|
|
for (const operation of Object.keys(hookFileData[resource])) {
|
|
// Save all the hook functions directly under their string
|
|
// format in an array
|
|
const hookString = `${resource}.${operation}`;
|
|
if (this.externalHooks[hookString] === undefined) {
|
|
this.externalHooks[hookString] = [];
|
|
}
|
|
|
|
// eslint-disable-next-line prefer-spread
|
|
this.externalHooks[hookString].push.apply(
|
|
this.externalHooks[hookString],
|
|
hookFileData[resource][operation],
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
async run(hookName: string, hookParameters?: any[]): Promise<void> {
|
|
if (this.externalHooks[hookName] === undefined) {
|
|
return;
|
|
}
|
|
|
|
const externalHookFunctions: IExternalHooksFunctions = {
|
|
dbCollections: this.dbCollections,
|
|
};
|
|
|
|
for (const externalHookFunction of this.externalHooks[hookName]) {
|
|
await externalHookFunction.apply(externalHookFunctions, hookParameters);
|
|
}
|
|
}
|
|
|
|
exists(hookName: string): boolean {
|
|
return !!this.externalHooks[hookName];
|
|
}
|
|
}
|