import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; import { NodeOperationError } from 'n8n-workflow'; import * as database from './database/Database.resource'; import type { MySqlType } from './node.type'; import { addExecutionHints } from '../../../../utils/utilities'; import type { MysqlNodeCredentials, QueryRunner } from '../helpers/interfaces'; import { configureQueryRunner } from '../helpers/utils'; import { createPool } from '../transport'; export async function router(this: IExecuteFunctions): Promise { let returnData: INodeExecutionData[] = []; const items = this.getInputData(); const resource = this.getNodeParameter('resource', 0); const operation = this.getNodeParameter('operation', 0); const nodeOptions = this.getNodeParameter('options', 0); const node = this.getNode(); nodeOptions.nodeVersion = node.typeVersion; const credentials = await this.getCredentials('mySql'); const pool = await createPool.call(this, credentials, nodeOptions); const runQueries: QueryRunner = configureQueryRunner.call(this, nodeOptions, pool); const mysqlNodeData = { resource, operation, } as MySqlType; try { switch (mysqlNodeData.resource) { case 'database': returnData = await database[mysqlNodeData.operation].execute.call( this, items, runQueries, nodeOptions, ); break; default: throw new NodeOperationError( this.getNode(), `The operation "${operation}" is not supported!`, ); } } finally { await pool.end(); } addExecutionHints(this, node, items, operation, node.executeOnce); return [returnData]; }