import { Db, IExternalHooksFunctions, IExternalHooksClass, } from './'; import * as config from '../config'; class ExternalHooksClass implements IExternalHooksClass { externalHooks: { [key: string]: Array<() => {}> } = {}; initDidRun = false; async init(): Promise { if (this.initDidRun === true) { return; } const externalHookFiles = config.get('externalHookFiles').split(':'); // Load all the provided hook-files for (let hookFilePath of externalHookFiles) { hookFilePath = hookFilePath.trim(); if (hookFilePath !== '') { try { const hookFile = require(hookFilePath); for (const resource of Object.keys(hookFile)) { for (const operation of Object.keys(hookFile[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] = []; } this.externalHooks[hookString].push.apply(this.externalHooks[hookString], hookFile[resource][operation]); } } } catch (error) { throw new Error(`Problem loading external hook file "${hookFilePath}": ${error.message}`); } } } this.initDidRun = true; } async run(hookName: string, hookParameters?: any[]): Promise { // tslint:disable-line:no-any const externalHookFunctions: IExternalHooksFunctions = { dbCollections: Db.collections, }; if (this.externalHooks[hookName] === undefined) { return; } for(const externalHookFunction of this.externalHooks[hookName]) { await externalHookFunction.apply(externalHookFunctions, hookParameters); } } exists(hookName: string): boolean { return !!this.externalHooks[hookName]; } } let externalHooksInstance: ExternalHooksClass | undefined; export function ExternalHooks(): ExternalHooksClass { if (externalHooksInstance === undefined) { externalHooksInstance = new ExternalHooksClass(); } return externalHooksInstance; }