extract update function

This commit is contained in:
Ben Hesseldieck 2020-07-08 14:36:40 +02:00
parent 0108538fcc
commit 2fea79f5f1
2 changed files with 52 additions and 38 deletions

View file

@ -38,7 +38,7 @@ function getItemCopy(
* @param {input[]} input The Node's input data * @param {input[]} input The Node's input data
* @returns Promise<Array<object>> * @returns Promise<Array<object>>
*/ */
export function executeQuery( export function pgQuery(
getNodeParam: Function, getNodeParam: Function,
pgp: pgPromise.IMain<{}, pg.IClient>, pgp: pgPromise.IMain<{}, pg.IClient>,
db: pgPromise.IDatabase<{}, pg.IClient>, db: pgPromise.IDatabase<{}, pg.IClient>,
@ -53,16 +53,15 @@ export function executeQuery(
} }
/** /**
* Returns of copy of the items which only contains the json data and * Inserts the given items into the database.
* of that only the define properties
* *
* @param {Function} getNodeParam The getter of the Node * @param {Function} getNodeParam The getter of the Node
* @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance * @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance
* @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection * @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection
* @param {input[]} input The Node's input data * @param {input[]} input The Node's input data
* @returns Promise<object> * @returns Promise<Array<IDataObject>>
*/ */
export async function executeInsert( export async function pgInsert(
getNodeParam: Function, getNodeParam: Function,
pgp: pgPromise.IMain<{}, pg.IClient>, pgp: pgPromise.IMain<{}, pg.IClient>,
db: pgPromise.IDatabase<{}, pg.IClient>, db: pgPromise.IDatabase<{}, pg.IClient>,
@ -96,3 +95,46 @@ export async function executeInsert(
return [insertData, insertItems]; return [insertData, insertItems];
} }
/**
* Updates the given items in the database.
*
* @param {Function} getNodeParam The getter of the Node
* @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
* @returns Promise<Array<IDataObject>>
*/
export async function pgUpdate(
getNodeParam: Function,
pgp: pgPromise.IMain<{}, pg.IClient>,
db: pgPromise.IDatabase<{}, pg.IClient>,
items: INodeExecutionData[],
): Promise<Array<IDataObject>> {
const table = getNodeParam('table', 0) as string;
const updateKey = getNodeParam('updateKey', 0) as string;
const columnString = getNodeParam('columns', 0) as string;
const columns = columnString.split(',').map(column => column.trim());
// Make sure that the updateKey does also get queried
if (!columns.includes(updateKey)) {
columns.unshift(updateKey);
}
// Prepare the data to update and copy it to be returned
const updateItems = getItemCopy(items, columns);
// Generate the multi-row update query
const query =
pgp.helpers.update(updateItems, columns, table) +
' WHERE v.' +
updateKey +
' = t.' +
updateKey;
// Executing the query to update the data
await db.none(query);
return updateItems;
}

View file

@ -8,7 +8,7 @@ import {
import * as pgPromise from 'pg-promise'; import * as pgPromise from 'pg-promise';
import { executeInsert, executeQuery } from './Postgres.node.functions'; import { pgInsert, pgQuery, pgUpdate } from './Postgres.node.functions';
export class Postgres implements INodeType { export class Postgres implements INodeType {
description: INodeTypeDescription = { description: INodeTypeDescription = {
@ -214,12 +214,7 @@ export class Postgres implements INodeType {
// executeQuery // executeQuery
// ---------------------------------- // ----------------------------------
const queryResult = await executeQuery( const queryResult = await pgQuery(this.getNodeParameter, pgp, db, items);
this.getNodeParameter,
pgp,
db,
items,
);
returnItems = this.helpers.returnJsonArray(queryResult as IDataObject[]); returnItems = this.helpers.returnJsonArray(queryResult as IDataObject[]);
} else if (operation === 'insert') { } else if (operation === 'insert') {
@ -227,7 +222,7 @@ export class Postgres implements INodeType {
// insert // insert
// ---------------------------------- // ----------------------------------
const [insertData, insertItems] = await executeInsert( const [insertData, insertItems] = await pgInsert(
this.getNodeParameter, this.getNodeParameter,
pgp, pgp,
db, db,
@ -248,32 +243,9 @@ export class Postgres implements INodeType {
// update // update
// ---------------------------------- // ----------------------------------
const table = this.getNodeParameter('table', 0) as string; const updateItems = await pgUpdate(this.getNodeParameter, pgp, db, items);
const updateKey = this.getNodeParameter('updateKey', 0) as string;
const columnString = this.getNodeParameter('columns', 0) as string;
const columns = columnString.split(',').map(column => column.trim()); returnItems = this.helpers.returnJsonArray(updateItems);
// // Make sure that the updateKey does also get queried
// if (!columns.includes(updateKey)) {
// columns.unshift(updateKey);
// }
// // Prepare the data to update and copy it to be returned
// const updateItems = getItemCopy(items, columns);
// // Generate the multi-row update query
// const query =
// pgp.helpers.update(updateItems, columns, table) +
// ' WHERE v.' +
// updateKey +
// ' = t.' +
// updateKey;
// // Executing the query to update the data
// await db.none(query);
// returnItems = this.helpers.returnJsonArray(updateItems as IDataObject[]);
} else { } else {
await pgp.end(); await pgp.end();
throw new Error(`The operation "${operation}" is not supported!`); throw new Error(`The operation "${operation}" is not supported!`);