mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
67 lines
1.4 KiB
TypeScript
67 lines
1.4 KiB
TypeScript
import type { IDataObject, INodeExecutionData } from 'n8n-workflow';
|
|
import { deepCopy } from 'n8n-workflow';
|
|
|
|
import type snowflake from 'snowflake-sdk';
|
|
|
|
export async function connect(conn: snowflake.Connection) {
|
|
return new Promise((resolve, reject) => {
|
|
conn.connect((err, _conn) => {
|
|
if (!err) {
|
|
// @ts-ignore
|
|
resolve();
|
|
} else {
|
|
reject(err);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
export async function destroy(conn: snowflake.Connection) {
|
|
return new Promise((resolve, reject) => {
|
|
conn.destroy((err, _conn) => {
|
|
if (!err) {
|
|
// @ts-ignore
|
|
resolve();
|
|
} else {
|
|
reject(err);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
export async function execute(
|
|
conn: snowflake.Connection,
|
|
sqlText: string,
|
|
binds: snowflake.InsertBinds,
|
|
) {
|
|
return new Promise((resolve, reject) => {
|
|
conn.execute({
|
|
sqlText,
|
|
binds,
|
|
complete: (err, stmt, rows) => {
|
|
if (!err) {
|
|
resolve(rows);
|
|
} else {
|
|
reject(err);
|
|
}
|
|
},
|
|
});
|
|
});
|
|
}
|
|
|
|
export function copyInputItems(items: INodeExecutionData[], properties: string[]): IDataObject[] {
|
|
// Prepare the data to insert and copy it to be returned
|
|
let newItem: IDataObject;
|
|
return items.map((item) => {
|
|
newItem = {};
|
|
for (const property of properties) {
|
|
if (item.json[property] === undefined) {
|
|
newItem[property] = null;
|
|
} else {
|
|
newItem[property] = deepCopy(item.json[property]);
|
|
}
|
|
}
|
|
return newItem;
|
|
});
|
|
}
|