2022-04-19 02:48:41 -07:00
|
|
|
import { IDataObject, INodeExecutionData, JsonObject } from 'n8n-workflow';
|
2022-04-08 14:32:08 -07:00
|
|
|
import pgPromise from 'pg-promise';
|
|
|
|
import pg from 'pg-promise/typescript/pg-subset';
|
2020-07-10 01:48:19 -07:00
|
|
|
|
|
|
|
/**
|
2021-04-24 13:55:14 -07:00
|
|
|
* Returns of a shallow copy of the items which only contains the json data and
|
2020-07-10 01:48:19 -07:00
|
|
|
* of that only the define properties
|
|
|
|
*
|
|
|
|
* @param {INodeExecutionData[]} items The items to copy
|
|
|
|
* @param {string[]} properties The properties it should include
|
|
|
|
* @returns
|
|
|
|
*/
|
2022-04-19 02:48:41 -07:00
|
|
|
export function getItemsCopy(items: INodeExecutionData[], properties: string[], guardedColumns?: {[key: string]: string}): IDataObject[] {
|
2020-07-10 01:48:19 -07:00
|
|
|
let newItem: IDataObject;
|
|
|
|
return items.map(item => {
|
|
|
|
newItem = {};
|
2022-04-19 02:48:41 -07:00
|
|
|
if (guardedColumns) {
|
|
|
|
Object.keys(guardedColumns).forEach( column => {
|
|
|
|
newItem[column] = item.json[guardedColumns[column]];
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
for (const property of properties) {
|
|
|
|
newItem[property] = item.json[property];
|
|
|
|
}
|
2020-07-10 01:48:19 -07:00
|
|
|
}
|
|
|
|
return newItem;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-24 13:55:14 -07:00
|
|
|
/**
|
|
|
|
* Returns of a shallow copy of the item which only contains the json data and
|
|
|
|
* of that only the define properties
|
|
|
|
*
|
|
|
|
* @param {INodeExecutionData} item The item to copy
|
|
|
|
* @param {string[]} properties The properties it should include
|
|
|
|
* @returns
|
|
|
|
*/
|
2022-04-19 02:48:41 -07:00
|
|
|
export function getItemCopy(item: INodeExecutionData, properties: string[], guardedColumns?: {[key: string]: string}): IDataObject {
|
2021-04-24 13:55:14 -07:00
|
|
|
const newItem: IDataObject = {};
|
2022-04-19 02:48:41 -07:00
|
|
|
if (guardedColumns) {
|
|
|
|
Object.keys(guardedColumns).forEach( column => {
|
|
|
|
newItem[column] = item.json[guardedColumns[column]];
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
for (const property of properties) {
|
|
|
|
newItem[property] = item.json[property];
|
|
|
|
}
|
2021-04-24 13:55:14 -07:00
|
|
|
}
|
|
|
|
return newItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a returning clause from a comma separated string
|
|
|
|
* @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance
|
|
|
|
* @param string returning The comma separated string
|
|
|
|
* @returns string
|
|
|
|
*/
|
|
|
|
export function generateReturning(pgp: pgPromise.IMain<{}, pg.IClient>, returning: string): string {
|
|
|
|
return ' RETURNING ' + returning.split(',').map(returnedField => pgp.as.name(returnedField.trim())).join(', ');
|
|
|
|
}
|
|
|
|
|
2020-07-10 01:48:19 -07:00
|
|
|
/**
|
|
|
|
* Executes the given SQL query on the database.
|
|
|
|
*
|
|
|
|
* @param {Function} getNodeParam The getter for the Node's parameters
|
|
|
|
* @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance
|
|
|
|
* @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection
|
|
|
|
* @param {input[]} input The Node's input data
|
2021-04-24 13:55:14 -07:00
|
|
|
* @returns Promise<Array<IDataObject>>
|
2020-07-10 01:48:19 -07:00
|
|
|
*/
|
2021-04-24 13:55:14 -07:00
|
|
|
export async function pgQuery(
|
2020-07-10 01:48:19 -07:00
|
|
|
getNodeParam: Function,
|
|
|
|
pgp: pgPromise.IMain<{}, pg.IClient>,
|
|
|
|
db: pgPromise.IDatabase<{}, pg.IClient>,
|
2021-04-30 15:35:34 -07:00
|
|
|
items: INodeExecutionData[],
|
2021-04-24 13:55:14 -07:00
|
|
|
continueOnFail: boolean,
|
|
|
|
overrideMode?: string,
|
|
|
|
): Promise<IDataObject[]> {
|
|
|
|
const additionalFields = getNodeParam('additionalFields', 0) as IDataObject;
|
2021-04-30 15:35:34 -07:00
|
|
|
|
|
|
|
let valuesArray = [] as string[][];
|
|
|
|
if (additionalFields.queryParams) {
|
|
|
|
const propertiesString = additionalFields.queryParams as string;
|
|
|
|
const properties = propertiesString.split(',').map(column => column.trim());
|
|
|
|
const paramsItems = getItemsCopy(items, properties);
|
|
|
|
valuesArray = paramsItems.map((row) => properties.map(col => row[col])) as string[][];
|
|
|
|
}
|
|
|
|
|
|
|
|
const allQueries = [] as Array<{query: string, values?: string[]}>;
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
const query = getNodeParam('query', i) as string;
|
|
|
|
const values = valuesArray[i];
|
|
|
|
const queryFormat = { query, values };
|
|
|
|
allQueries.push(queryFormat);
|
|
|
|
}
|
|
|
|
|
2021-04-24 13:55:14 -07:00
|
|
|
const mode = overrideMode ? overrideMode : (additionalFields.mode ?? 'multiple') as string;
|
|
|
|
if (mode === 'multiple') {
|
2021-04-30 15:35:34 -07:00
|
|
|
return (await db.multi(pgp.helpers.concat(allQueries))).flat(1);
|
2021-04-24 13:55:14 -07:00
|
|
|
} else if (mode === 'transaction') {
|
|
|
|
return db.tx(async t => {
|
|
|
|
const result: IDataObject[] = [];
|
2021-04-30 15:35:34 -07:00
|
|
|
for (let i = 0; i < allQueries.length; i++) {
|
2021-04-24 13:55:14 -07:00
|
|
|
try {
|
2021-04-30 15:35:34 -07:00
|
|
|
Array.prototype.push.apply(result, await t.any(allQueries[i].query, allQueries[i].values));
|
2021-04-24 13:55:14 -07:00
|
|
|
} catch (err) {
|
|
|
|
if (continueOnFail === false) throw err;
|
2022-04-19 02:48:41 -07:00
|
|
|
result.push({ ...items[i].json, code: (err as JsonObject).code, message: (err as JsonObject).message });
|
2021-04-24 13:55:14 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
});
|
|
|
|
} else if (mode === 'independently') {
|
|
|
|
return db.task(async t => {
|
|
|
|
const result: IDataObject[] = [];
|
2021-04-30 15:35:34 -07:00
|
|
|
for (let i = 0; i < allQueries.length; i++) {
|
2021-04-24 13:55:14 -07:00
|
|
|
try {
|
2021-04-30 15:35:34 -07:00
|
|
|
Array.prototype.push.apply(result, await t.any(allQueries[i].query, allQueries[i].values));
|
2021-04-24 13:55:14 -07:00
|
|
|
} catch (err) {
|
|
|
|
if (continueOnFail === false) throw err;
|
2022-04-19 02:48:41 -07:00
|
|
|
result.push({ ...items[i].json, code: (err as JsonObject).code, message: (err as JsonObject).message });
|
2021-04-24 13:55:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
});
|
2020-07-10 01:48:19 -07:00
|
|
|
}
|
2021-04-24 13:55:14 -07:00
|
|
|
throw new Error('multiple, independently or transaction are valid options');
|
2020-07-10 01:48:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inserts the given items into the database.
|
|
|
|
*
|
|
|
|
* @param {Function} getNodeParam The getter for the Node's parameters
|
|
|
|
* @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance
|
|
|
|
* @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection
|
|
|
|
* @param {INodeExecutionData[]} items The items to be inserted
|
|
|
|
* @returns Promise<Array<IDataObject>>
|
|
|
|
*/
|
|
|
|
export async function pgInsert(
|
|
|
|
getNodeParam: Function,
|
|
|
|
pgp: pgPromise.IMain<{}, pg.IClient>,
|
|
|
|
db: pgPromise.IDatabase<{}, pg.IClient>,
|
2020-10-22 09:00:28 -07:00
|
|
|
items: INodeExecutionData[],
|
2021-04-24 13:55:14 -07:00
|
|
|
continueOnFail: boolean,
|
|
|
|
overrideMode?: string,
|
|
|
|
): Promise<IDataObject[]> {
|
2020-07-10 01:48:19 -07:00
|
|
|
const table = getNodeParam('table', 0) as string;
|
|
|
|
const schema = getNodeParam('schema', 0) as string;
|
|
|
|
const columnString = getNodeParam('columns', 0) as string;
|
2022-04-19 02:48:41 -07:00
|
|
|
const guardedColumns: {[key: string]: string} = {};
|
|
|
|
|
2021-04-03 07:53:47 -07:00
|
|
|
const columns = columnString.split(',')
|
|
|
|
.map(column => column.trim().split(':'))
|
2022-04-19 02:48:41 -07:00
|
|
|
.map(([name, cast], i) => {
|
|
|
|
guardedColumns[`column${i}`] = name;
|
|
|
|
return { name, cast, prop: `column${i}` };
|
|
|
|
});
|
|
|
|
|
2021-04-03 07:53:47 -07:00
|
|
|
const columnNames = columns.map(column => column.name);
|
|
|
|
|
2021-04-24 13:55:14 -07:00
|
|
|
const cs = new pgp.helpers.ColumnSet(columns, { table: { table, schema } });
|
2020-07-10 01:48:19 -07:00
|
|
|
|
2021-04-24 13:55:14 -07:00
|
|
|
const additionalFields = getNodeParam('additionalFields', 0) as IDataObject;
|
|
|
|
const mode = overrideMode ? overrideMode : (additionalFields.mode ?? 'multiple') as string;
|
2020-07-10 01:48:19 -07:00
|
|
|
|
2021-04-24 13:55:14 -07:00
|
|
|
const returning = generateReturning(pgp, getNodeParam('returnFields', 0) as string);
|
|
|
|
if (mode === 'multiple') {
|
2022-04-19 02:48:41 -07:00
|
|
|
const query = pgp.helpers.insert(getItemsCopy(items, columnNames, guardedColumns), cs) + returning;
|
2021-04-24 13:55:14 -07:00
|
|
|
return db.any(query);
|
|
|
|
} else if (mode === 'transaction') {
|
|
|
|
return db.tx(async t => {
|
|
|
|
const result: IDataObject[] = [];
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
2022-04-19 02:48:41 -07:00
|
|
|
const itemCopy = getItemCopy(items[i], columnNames, guardedColumns);
|
2021-04-24 13:55:14 -07:00
|
|
|
try {
|
|
|
|
result.push(await t.one(pgp.helpers.insert(itemCopy, cs) + returning));
|
|
|
|
} catch (err) {
|
|
|
|
if (continueOnFail === false) throw err;
|
2022-04-19 02:48:41 -07:00
|
|
|
result.push({ ...itemCopy, code: (err as JsonObject).code, message: (err as JsonObject).message });
|
2021-04-24 13:55:14 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
});
|
|
|
|
} else if (mode === 'independently') {
|
|
|
|
return db.task(async t => {
|
|
|
|
const result: IDataObject[] = [];
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
2022-04-19 02:48:41 -07:00
|
|
|
const itemCopy = getItemCopy(items[i], columnNames, guardedColumns);
|
2021-04-24 13:55:14 -07:00
|
|
|
try {
|
|
|
|
const insertResult = await t.oneOrNone(pgp.helpers.insert(itemCopy, cs) + returning);
|
|
|
|
if (insertResult !== null) {
|
|
|
|
result.push(insertResult);
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
if (continueOnFail === false) {
|
|
|
|
throw err;
|
|
|
|
}
|
2022-04-19 02:48:41 -07:00
|
|
|
result.push({ ...itemCopy, code: (err as JsonObject).code, message: (err as JsonObject).message });
|
2021-04-24 13:55:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
});
|
|
|
|
}
|
2020-07-10 01:48:19 -07:00
|
|
|
|
2021-04-24 13:55:14 -07:00
|
|
|
throw new Error('multiple, independently or transaction are valid options');
|
2020-07-10 01:48:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the given items in the database.
|
|
|
|
*
|
|
|
|
* @param {Function} getNodeParam The getter for the Node's parameters
|
|
|
|
* @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance
|
|
|
|
* @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection
|
|
|
|
* @param {INodeExecutionData[]} items The items to be updated
|
|
|
|
* @returns Promise<Array<IDataObject>>
|
|
|
|
*/
|
|
|
|
export async function pgUpdate(
|
|
|
|
getNodeParam: Function,
|
|
|
|
pgp: pgPromise.IMain<{}, pg.IClient>,
|
|
|
|
db: pgPromise.IDatabase<{}, pg.IClient>,
|
2020-10-22 09:00:28 -07:00
|
|
|
items: INodeExecutionData[],
|
2021-04-24 13:55:14 -07:00
|
|
|
continueOnFail = false,
|
2020-07-14 04:59:37 -07:00
|
|
|
): Promise<IDataObject[]> {
|
2020-07-10 01:48:19 -07:00
|
|
|
const table = getNodeParam('table', 0) as string;
|
2020-09-29 12:57:22 -07:00
|
|
|
const schema = getNodeParam('schema', 0) as string;
|
2020-07-10 01:48:19 -07:00
|
|
|
const updateKey = getNodeParam('updateKey', 0) as string;
|
|
|
|
const columnString = getNodeParam('columns', 0) as string;
|
2022-04-19 02:48:41 -07:00
|
|
|
const guardedColumns: {[key: string]: string} = {};
|
|
|
|
|
|
|
|
const columns: Array<{name:string, cast: string, prop:string}> = columnString.split(',')
|
2021-04-03 07:53:47 -07:00
|
|
|
.map(column => column.trim().split(':'))
|
2022-04-19 02:48:41 -07:00
|
|
|
.map(([name, cast], i) => {
|
|
|
|
guardedColumns[`column${i}`] = name;
|
|
|
|
return { name, cast, prop: `column${i}` };
|
|
|
|
});
|
2020-07-10 01:48:19 -07:00
|
|
|
|
2022-04-19 02:48:41 -07:00
|
|
|
const updateKeys = updateKey.split(',').map((key, i) => {
|
2021-04-24 13:55:14 -07:00
|
|
|
const [name, cast] = key.trim().split(':');
|
|
|
|
const targetCol = columns.find((column) => column.name === name);
|
2022-04-19 02:48:41 -07:00
|
|
|
const updateColumn = { name, cast, prop: targetCol ? targetCol.prop : `updateColumn${i}` };
|
2021-04-24 13:55:14 -07:00
|
|
|
if (!targetCol) {
|
2022-04-19 02:48:41 -07:00
|
|
|
guardedColumns[updateColumn.prop] = name;
|
2021-04-24 13:55:14 -07:00
|
|
|
columns.unshift(updateColumn);
|
|
|
|
}
|
|
|
|
else if (!targetCol.cast) {
|
|
|
|
targetCol.cast = updateColumn.cast || targetCol.cast;
|
|
|
|
}
|
|
|
|
return updateColumn;
|
|
|
|
});
|
|
|
|
|
|
|
|
const additionalFields = getNodeParam('additionalFields', 0) as IDataObject;
|
|
|
|
const mode = additionalFields.mode ?? 'multiple' as string;
|
2020-09-29 12:57:22 -07:00
|
|
|
|
2021-04-24 13:55:14 -07:00
|
|
|
const cs = new pgp.helpers.ColumnSet(columns, { table: { table, schema } });
|
2020-07-10 01:48:19 -07:00
|
|
|
|
|
|
|
// Prepare the data to update and copy it to be returned
|
2021-04-03 07:53:47 -07:00
|
|
|
const columnNames = columns.map(column => column.name);
|
2022-04-19 02:48:41 -07:00
|
|
|
const updateItems = getItemsCopy(items, columnNames, guardedColumns);
|
2021-04-03 07:53:47 -07:00
|
|
|
|
2021-04-24 13:55:14 -07:00
|
|
|
const returning = generateReturning(pgp, getNodeParam('returnFields', 0) as string);
|
|
|
|
if (mode === 'multiple') {
|
|
|
|
const query =
|
|
|
|
pgp.helpers.update(updateItems, cs)
|
|
|
|
+ ' WHERE ' + updateKeys.map(updateKey => {
|
|
|
|
const key = pgp.as.name(updateKey.name);
|
|
|
|
return 'v.' + key + ' = t.' + key;
|
|
|
|
}).join(' AND ')
|
|
|
|
+ returning;
|
|
|
|
return await db.any(query);
|
|
|
|
} else {
|
2022-04-19 02:48:41 -07:00
|
|
|
const where = ' WHERE ' +
|
|
|
|
updateKeys.map(updateKey => pgp.as.name(updateKey.name) +
|
|
|
|
' = ${' + updateKey.prop + '}').join(' AND ');
|
2021-04-24 13:55:14 -07:00
|
|
|
if (mode === 'transaction') {
|
|
|
|
return db.tx(async t => {
|
|
|
|
const result: IDataObject[] = [];
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
2022-04-19 02:48:41 -07:00
|
|
|
const itemCopy = getItemCopy(items[i], columnNames, guardedColumns);
|
2021-04-24 13:55:14 -07:00
|
|
|
try {
|
|
|
|
Array.prototype.push.apply(result, await t.any(pgp.helpers.update(itemCopy, cs) + pgp.as.format(where, itemCopy) + returning));
|
|
|
|
} catch (err) {
|
|
|
|
if (continueOnFail === false) throw err;
|
2022-04-19 02:48:41 -07:00
|
|
|
result.push({ ...itemCopy, code: (err as JsonObject).code, message: (err as JsonObject).message });
|
2021-04-24 13:55:14 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
});
|
|
|
|
} else if (mode === 'independently') {
|
|
|
|
return db.task(async t => {
|
|
|
|
const result: IDataObject[] = [];
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
2022-04-19 02:48:41 -07:00
|
|
|
const itemCopy = getItemCopy(items[i], columnNames, guardedColumns);
|
2021-04-24 13:55:14 -07:00
|
|
|
try {
|
|
|
|
Array.prototype.push.apply(result, await t.any(pgp.helpers.update(itemCopy, cs) + pgp.as.format(where, itemCopy) + returning));
|
|
|
|
} catch (err) {
|
|
|
|
if (continueOnFail === false) throw err;
|
2022-04-19 02:48:41 -07:00
|
|
|
result.push({ ...itemCopy, code: (err as JsonObject).code, message: (err as JsonObject).message });
|
2021-04-24 13:55:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new Error('multiple, independently or transaction are valid options');
|
2020-07-10 01:48:19 -07:00
|
|
|
}
|