2023-01-27 03:22:44 -08:00
|
|
|
import type { IDataObject, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import { deepCopy } from 'n8n-workflow';
|
2023-10-24 02:36:44 -07:00
|
|
|
import mssql from 'mssql';
|
|
|
|
import type { ITables, OperationInputData } from './interfaces';
|
|
|
|
import { chunk, flatten } from '@utils/utilities';
|
2020-07-08 01:00:13 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a copy of the item which only contains the json data and
|
|
|
|
* of that only the defined properties
|
|
|
|
*
|
|
|
|
* @param {INodeExecutionData} item The item to copy
|
|
|
|
* @param {string[]} properties The properties it should include
|
|
|
|
*/
|
2022-08-17 08:50:24 -07:00
|
|
|
export function copyInputItem(item: INodeExecutionData, properties: string[]): IDataObject {
|
2020-07-08 01:00:13 -07:00
|
|
|
// Prepare the data to insert and copy it to be returned
|
2020-07-14 04:59:37 -07:00
|
|
|
const newItem: IDataObject = {};
|
2020-07-08 01:00:13 -07:00
|
|
|
for (const property of properties) {
|
|
|
|
if (item.json[property] === undefined) {
|
|
|
|
newItem[property] = null;
|
|
|
|
} else {
|
2022-10-21 08:24:58 -07:00
|
|
|
newItem[property] = deepCopy(item.json[property]);
|
2020-07-08 01:00:13 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return newItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an ITables with the columns for the operations
|
|
|
|
*
|
|
|
|
* @param {INodeExecutionData[]} items The items to extract the tables/columns for
|
|
|
|
* @param {function} getNodeParam getter for the Node's Parameters
|
|
|
|
*/
|
|
|
|
export function createTableStruct(
|
2023-10-24 02:36:44 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
2020-07-08 01:00:13 -07:00
|
|
|
getNodeParam: Function,
|
|
|
|
items: INodeExecutionData[],
|
|
|
|
additionalProperties: string[] = [],
|
2020-10-22 09:00:28 -07:00
|
|
|
keyName?: string,
|
2020-07-08 01:00:13 -07:00
|
|
|
): ITables {
|
|
|
|
return items.reduce((tables, item, index) => {
|
|
|
|
const table = getNodeParam('table', index) as string;
|
|
|
|
const columnString = getNodeParam('columns', index) as string;
|
2022-08-17 08:50:24 -07:00
|
|
|
const columns = columnString.split(',').map((column) => column.trim());
|
2020-07-08 01:00:13 -07:00
|
|
|
const itemCopy = copyInputItem(item, columns.concat(additionalProperties));
|
2022-08-17 08:50:24 -07:00
|
|
|
const keyParam = keyName ? (getNodeParam(keyName, index) as string) : undefined;
|
2020-07-08 01:00:13 -07:00
|
|
|
if (tables[table] === undefined) {
|
|
|
|
tables[table] = {};
|
|
|
|
}
|
|
|
|
if (tables[table][columnString] === undefined) {
|
|
|
|
tables[table][columnString] = [];
|
|
|
|
}
|
|
|
|
if (keyName) {
|
|
|
|
itemCopy[keyName] = keyParam;
|
|
|
|
}
|
|
|
|
tables[table][columnString].push(itemCopy);
|
|
|
|
return tables;
|
|
|
|
}, {} as ITables);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes a queue of queries on given ITables.
|
|
|
|
*
|
|
|
|
* @param {ITables} tables The ITables to be processed.
|
|
|
|
* @param {function} buildQueryQueue function that builds the queue of promises
|
|
|
|
*/
|
2022-12-02 12:54:28 -08:00
|
|
|
export async function executeQueryQueue(
|
|
|
|
tables: ITables,
|
2023-10-24 02:36:44 -07:00
|
|
|
buildQueryQueue: (data: OperationInputData) => Array<Promise<object>>,
|
2022-12-02 12:54:28 -08:00
|
|
|
): Promise<any[]> {
|
2020-07-08 01:00:13 -07:00
|
|
|
return Promise.all(
|
2022-12-02 12:54:28 -08:00
|
|
|
Object.keys(tables).map(async (table) => {
|
|
|
|
const columnsResults = Object.keys(tables[table]).map(async (columnString) => {
|
2020-07-08 01:00:13 -07:00
|
|
|
return Promise.all(
|
|
|
|
buildQueryQueue({
|
2020-07-14 04:59:37 -07:00
|
|
|
table,
|
|
|
|
columnString,
|
2020-07-08 01:00:13 -07:00
|
|
|
items: tables[table][columnString],
|
2020-10-22 09:00:28 -07:00
|
|
|
}),
|
2020-07-08 01:00:13 -07:00
|
|
|
);
|
|
|
|
});
|
|
|
|
return Promise.all(columnsResults);
|
2020-10-22 09:00:28 -07:00
|
|
|
}),
|
2020-07-08 01:00:13 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-10-24 02:36:44 -07:00
|
|
|
export function formatColumns(columns: string) {
|
|
|
|
return columns
|
|
|
|
.split(',')
|
|
|
|
.map((column) => `[${column.trim()}]`)
|
|
|
|
.join(', ');
|
2020-07-08 01:00:13 -07:00
|
|
|
}
|
|
|
|
|
2023-10-24 02:36:44 -07:00
|
|
|
export function configurePool(credentials: IDataObject) {
|
|
|
|
const config = {
|
|
|
|
server: credentials.server as string,
|
|
|
|
port: credentials.port as number,
|
|
|
|
database: credentials.database as string,
|
|
|
|
user: credentials.user as string,
|
|
|
|
password: credentials.password as string,
|
|
|
|
domain: credentials.domain ? (credentials.domain as string) : undefined,
|
|
|
|
connectionTimeout: credentials.connectTimeout as number,
|
|
|
|
requestTimeout: credentials.requestTimeout as number,
|
|
|
|
options: {
|
|
|
|
encrypt: credentials.tls as boolean,
|
|
|
|
enableArithAbort: false,
|
|
|
|
tdsVersion: credentials.tdsVersion as string,
|
|
|
|
trustServerCertificate: credentials.allowUnauthorizedCerts as boolean,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return new mssql.ConnectionPool(config);
|
2020-07-08 01:00:13 -07:00
|
|
|
}
|
|
|
|
|
2023-11-27 06:41:35 -08:00
|
|
|
const escapeTableName = (table: string) => {
|
|
|
|
table = table.trim();
|
|
|
|
if (table.startsWith('[') && table.endsWith(']')) {
|
|
|
|
return table;
|
|
|
|
} else {
|
|
|
|
return `[${table}]`;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-10-24 02:36:44 -07:00
|
|
|
export async function insertOperation(tables: ITables, pool: mssql.ConnectionPool) {
|
|
|
|
return executeQueryQueue(
|
|
|
|
tables,
|
|
|
|
({ table, columnString, items }: OperationInputData): Array<Promise<object>> => {
|
|
|
|
return chunk(items, 1000).map(async (insertValues) => {
|
|
|
|
const request = pool.request();
|
|
|
|
|
|
|
|
const valuesPlaceholder = [];
|
|
|
|
|
|
|
|
for (const [rIndex, entry] of insertValues.entries()) {
|
|
|
|
const row = Object.values(entry);
|
|
|
|
valuesPlaceholder.push(`(${row.map((_, vIndex) => `@r${rIndex}v${vIndex}`).join(', ')})`);
|
|
|
|
for (const [vIndex, value] of row.entries()) {
|
|
|
|
request.input(`r${rIndex}v${vIndex}`, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-27 06:41:35 -08:00
|
|
|
const query = `INSERT INTO ${escapeTableName(table)} (${formatColumns(
|
2023-10-24 02:36:44 -07:00
|
|
|
columnString,
|
|
|
|
)}) VALUES ${valuesPlaceholder.join(', ')};`;
|
|
|
|
|
|
|
|
return request.query(query);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
2020-07-08 01:00:13 -07:00
|
|
|
}
|
|
|
|
|
2023-10-24 02:36:44 -07:00
|
|
|
export async function updateOperation(tables: ITables, pool: mssql.ConnectionPool) {
|
|
|
|
return executeQueryQueue(
|
|
|
|
tables,
|
|
|
|
({ table, columnString, items }: OperationInputData): Array<Promise<object>> => {
|
|
|
|
return items.map(async (item) => {
|
|
|
|
const request = pool.request();
|
|
|
|
const columns = columnString.split(',').map((column) => column.trim());
|
|
|
|
|
|
|
|
const setValues: string[] = [];
|
|
|
|
const condition = `${item.updateKey} = @condition`;
|
|
|
|
request.input('condition', item[item.updateKey as string]);
|
|
|
|
|
|
|
|
for (const [index, col] of columns.entries()) {
|
|
|
|
setValues.push(`[${col}] = @v${index}`);
|
|
|
|
request.input(`v${index}`, item[col]);
|
|
|
|
}
|
|
|
|
|
2023-11-27 06:41:35 -08:00
|
|
|
const query = `UPDATE ${escapeTableName(table)} SET ${setValues.join(
|
|
|
|
', ',
|
|
|
|
)} WHERE ${condition};`;
|
2023-10-24 02:36:44 -07:00
|
|
|
|
|
|
|
return request.query(query);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
2020-07-08 01:00:13 -07:00
|
|
|
}
|
2021-07-06 15:26:34 -07:00
|
|
|
|
2023-10-24 02:36:44 -07:00
|
|
|
export async function deleteOperation(tables: ITables, pool: mssql.ConnectionPool) {
|
|
|
|
const queriesResults = await Promise.all(
|
|
|
|
Object.keys(tables).map(async (table) => {
|
|
|
|
const deleteKeyResults = Object.keys(tables[table]).map(async (deleteKey) => {
|
|
|
|
const deleteItemsList = chunk(
|
|
|
|
tables[table][deleteKey].map((item) =>
|
|
|
|
copyInputItem(item as INodeExecutionData, [deleteKey]),
|
|
|
|
),
|
|
|
|
1000,
|
|
|
|
);
|
|
|
|
const queryQueue = deleteItemsList.map(async (deleteValues) => {
|
|
|
|
const request = pool.request();
|
|
|
|
const valuesPlaceholder: string[] = [];
|
|
|
|
|
|
|
|
for (const [index, entry] of deleteValues.entries()) {
|
|
|
|
valuesPlaceholder.push(`@v${index}`);
|
|
|
|
request.input(`v${index}`, entry[deleteKey]);
|
|
|
|
}
|
|
|
|
|
2023-11-27 06:41:35 -08:00
|
|
|
const query = `DELETE FROM ${escapeTableName(
|
|
|
|
table,
|
|
|
|
)} WHERE [${deleteKey}] IN (${valuesPlaceholder.join(', ')});`;
|
2023-10-24 02:36:44 -07:00
|
|
|
|
|
|
|
return request.query(query);
|
|
|
|
});
|
|
|
|
return Promise.all(queryQueue);
|
|
|
|
});
|
|
|
|
return Promise.all(deleteKeyResults);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
return flatten(queriesResults).reduce(
|
|
|
|
(acc: number, resp: mssql.IResult<object>): number =>
|
|
|
|
(acc += resp.rowsAffected.reduce((sum, val) => (sum += val))),
|
|
|
|
0,
|
|
|
|
);
|
2021-07-06 15:26:34 -07:00
|
|
|
}
|