2023-07-12 02:15:38 -07:00
|
|
|
import type {
|
|
|
|
IDataObject,
|
|
|
|
IExecuteFunctions,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeProperties,
|
2024-07-31 00:39:37 -07:00
|
|
|
NodeParameterValueType,
|
2023-07-12 02:15:38 -07:00
|
|
|
} from 'n8n-workflow';
|
2023-04-03 08:18:01 -07:00
|
|
|
import { NodeOperationError } from 'n8n-workflow';
|
|
|
|
|
2024-04-09 08:41:51 -07:00
|
|
|
import type {
|
|
|
|
PgpDatabase,
|
|
|
|
PostgresNodeOptions,
|
|
|
|
QueriesRunner,
|
|
|
|
QueryWithValues,
|
|
|
|
} from '../../helpers/interfaces';
|
2023-04-03 08:18:01 -07:00
|
|
|
|
|
|
|
import { replaceEmptyStringsByNulls } from '../../helpers/utils';
|
|
|
|
|
|
|
|
import { optionsCollection } from '../common.descriptions';
|
2023-09-19 03:16:35 -07:00
|
|
|
import { getResolvables, updateDisplayOptions } from '@utils/utilities';
|
2023-04-03 08:18:01 -07:00
|
|
|
|
|
|
|
const properties: INodeProperties[] = [
|
|
|
|
{
|
|
|
|
displayName: 'Query',
|
|
|
|
name: 'query',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
placeholder: 'e.g. SELECT id, name FROM product WHERE quantity > $1 AND price <= $2',
|
2023-06-22 07:47:28 -07:00
|
|
|
noDataExpression: true,
|
2023-04-03 08:18:01 -07:00
|
|
|
required: true,
|
|
|
|
description:
|
|
|
|
"The SQL query to execute. You can use n8n expressions and $1, $2, $3, etc to refer to the 'Query Parameters' set in options below.",
|
|
|
|
typeOptions: {
|
2023-04-25 09:18:27 -07:00
|
|
|
editor: 'sqlEditor',
|
2023-06-22 07:47:28 -07:00
|
|
|
sqlDialect: 'PostgreSQL',
|
2023-04-03 08:18:01 -07:00
|
|
|
},
|
2023-07-12 03:26:46 -07:00
|
|
|
hint: 'Consider using query parameters to prevent SQL injection attacks. Add them in the options below',
|
2023-04-03 08:18:01 -07:00
|
|
|
},
|
|
|
|
optionsCollection,
|
|
|
|
];
|
|
|
|
|
|
|
|
const displayOptions = {
|
|
|
|
show: {
|
|
|
|
resource: ['database'],
|
|
|
|
operation: ['executeQuery'],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
|
|
|
|
export async function execute(
|
|
|
|
this: IExecuteFunctions,
|
|
|
|
runQueries: QueriesRunner,
|
|
|
|
items: INodeExecutionData[],
|
2024-04-09 08:41:51 -07:00
|
|
|
nodeOptions: PostgresNodeOptions,
|
2023-04-03 08:18:01 -07:00
|
|
|
_db?: PgpDatabase,
|
|
|
|
): Promise<INodeExecutionData[]> {
|
|
|
|
items = replaceEmptyStringsByNulls(items, nodeOptions.replaceEmptyStrings as boolean);
|
|
|
|
|
|
|
|
const queries: QueryWithValues[] = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
2023-06-22 07:47:28 -07:00
|
|
|
let query = this.getNodeParameter('query', i) as string;
|
|
|
|
|
|
|
|
for (const resolvable of getResolvables(query)) {
|
|
|
|
query = query.replace(resolvable, this.evaluateExpression(resolvable, i) as string);
|
|
|
|
}
|
2023-04-03 08:18:01 -07:00
|
|
|
|
2023-07-25 05:34:45 -07:00
|
|
|
let values: Array<IDataObject | string> = [];
|
2023-04-03 08:18:01 -07:00
|
|
|
|
2023-09-29 03:27:31 -07:00
|
|
|
let queryReplacement = this.getNodeParameter('options.queryReplacement', i, '');
|
|
|
|
|
|
|
|
if (typeof queryReplacement === 'number') {
|
|
|
|
queryReplacement = String(queryReplacement);
|
|
|
|
}
|
2023-04-03 08:18:01 -07:00
|
|
|
|
|
|
|
if (typeof queryReplacement === 'string') {
|
2023-07-25 05:34:45 -07:00
|
|
|
const node = this.getNode();
|
|
|
|
|
|
|
|
const rawReplacements = (node.parameters.options as IDataObject)?.queryReplacement as string;
|
|
|
|
|
2024-07-31 00:39:37 -07:00
|
|
|
const stringToArray = (str: NodeParameterValueType | undefined) => {
|
|
|
|
if (!str) return [];
|
|
|
|
return String(str)
|
2023-07-25 05:34:45 -07:00
|
|
|
.split(',')
|
|
|
|
.filter((entry) => entry)
|
|
|
|
.map((entry) => entry.trim());
|
2024-07-31 00:39:37 -07:00
|
|
|
};
|
2023-07-25 05:34:45 -07:00
|
|
|
|
2024-07-31 00:39:37 -07:00
|
|
|
if (rawReplacements) {
|
|
|
|
const nodeVersion = nodeOptions.nodeVersion as number;
|
2023-07-25 05:34:45 -07:00
|
|
|
|
2024-07-31 00:39:37 -07:00
|
|
|
if (nodeVersion >= 2.5) {
|
|
|
|
const rawValues = rawReplacements.replace(/^=+/, '');
|
|
|
|
const resolvables = getResolvables(rawValues);
|
2023-07-25 05:34:45 -07:00
|
|
|
if (resolvables.length) {
|
|
|
|
for (const resolvable of resolvables) {
|
2024-07-31 00:39:37 -07:00
|
|
|
const evaluatedValues = stringToArray(this.evaluateExpression(`${resolvable}`, i));
|
|
|
|
if (evaluatedValues.length) values.push(...evaluatedValues);
|
2023-07-25 05:34:45 -07:00
|
|
|
}
|
|
|
|
} else {
|
2024-07-31 00:39:37 -07:00
|
|
|
values.push(...stringToArray(rawValues));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const rawValues = rawReplacements
|
|
|
|
.replace(/^=+/, '')
|
|
|
|
.split(',')
|
|
|
|
.filter((entry) => entry)
|
|
|
|
.map((entry) => entry.trim());
|
|
|
|
|
|
|
|
for (const rawValue of rawValues) {
|
|
|
|
const resolvables = getResolvables(rawValue);
|
|
|
|
|
|
|
|
if (resolvables.length) {
|
|
|
|
for (const resolvable of resolvables) {
|
|
|
|
values.push(this.evaluateExpression(`${resolvable}`, i) as IDataObject);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
values.push(rawValue);
|
|
|
|
}
|
2023-07-25 05:34:45 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-04-03 08:18:01 -07:00
|
|
|
} else {
|
2023-07-25 05:34:45 -07:00
|
|
|
if (Array.isArray(queryReplacement)) {
|
|
|
|
values = queryReplacement as IDataObject[];
|
|
|
|
} else {
|
|
|
|
throw new NodeOperationError(
|
|
|
|
this.getNode(),
|
|
|
|
'Query Parameters must be a string of comma-separated values or an array of values',
|
|
|
|
{ itemIndex: i },
|
|
|
|
);
|
|
|
|
}
|
2023-04-03 08:18:01 -07:00
|
|
|
}
|
|
|
|
|
2024-07-29 04:48:11 -07:00
|
|
|
if (!queryReplacement || nodeOptions.treatQueryParametersInSingleQuotesAsText) {
|
|
|
|
let nextValueIndex = values.length + 1;
|
|
|
|
const literals = query.match(/'\$[0-9]+'/g) ?? [];
|
|
|
|
for (const literal of literals) {
|
|
|
|
query = query.replace(literal, `$${nextValueIndex}`);
|
|
|
|
values.push(literal.replace(/'/g, ''));
|
|
|
|
nextValueIndex++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-03 08:18:01 -07:00
|
|
|
queries.push({ query, values });
|
|
|
|
}
|
|
|
|
|
2024-01-17 07:08:50 -08:00
|
|
|
return await runQueries(queries, items, nodeOptions);
|
2023-04-03 08:18:01 -07:00
|
|
|
}
|