2023-04-03 08:18:01 -07:00
|
|
|
import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import { NodeOperationError } from 'n8n-workflow';
|
|
|
|
|
|
|
|
import type { PostgresType } from './node.type';
|
|
|
|
|
|
|
|
import * as database from './database/Database.resource';
|
2023-05-19 06:42:24 -07:00
|
|
|
import { configurePostgres } from '../transport';
|
2023-04-03 08:18:01 -07:00
|
|
|
import { configureQueryRunner } from '../helpers/utils';
|
|
|
|
|
|
|
|
export async function router(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
let returnData: INodeExecutionData[] = [];
|
|
|
|
|
|
|
|
const items = this.getInputData();
|
|
|
|
const resource = this.getNodeParameter<PostgresType>('resource', 0);
|
|
|
|
const operation = this.getNodeParameter('operation', 0);
|
|
|
|
|
|
|
|
const credentials = await this.getCredentials('postgres');
|
|
|
|
const options = this.getNodeParameter('options', 0, {});
|
2023-05-04 08:25:54 -07:00
|
|
|
options.nodeVersion = this.getNode().typeVersion;
|
2023-04-03 08:18:01 -07:00
|
|
|
|
2023-05-19 06:42:24 -07:00
|
|
|
const { db, pgp, sshClient } = await configurePostgres(credentials, options);
|
2023-04-03 08:18:01 -07:00
|
|
|
|
|
|
|
const runQueries = configureQueryRunner(
|
|
|
|
this.getNode(),
|
|
|
|
this.helpers.constructExecutionMetaData,
|
|
|
|
this.continueOnFail(),
|
|
|
|
pgp,
|
|
|
|
db,
|
|
|
|
);
|
|
|
|
|
|
|
|
const postgresNodeData = {
|
|
|
|
resource,
|
|
|
|
operation,
|
|
|
|
} as PostgresType;
|
|
|
|
|
|
|
|
try {
|
|
|
|
switch (postgresNodeData.resource) {
|
|
|
|
case 'database':
|
|
|
|
returnData = await database[postgresNodeData.operation].execute.call(
|
|
|
|
this,
|
|
|
|
runQueries,
|
|
|
|
items,
|
|
|
|
options,
|
|
|
|
db,
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new NodeOperationError(
|
|
|
|
this.getNode(),
|
|
|
|
`The operation "${operation}" is not supported!`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
throw error;
|
|
|
|
} finally {
|
|
|
|
if (sshClient) {
|
|
|
|
sshClient.end();
|
|
|
|
}
|
|
|
|
pgp.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.prepareOutputData(returnData);
|
|
|
|
}
|