n8n/packages/nodes-base/nodes/QuestDb/QuestDb.node.ts

216 lines
5 KiB
TypeScript
Raw Normal View History

2020-07-07 06:24:21 -07:00
import { IExecuteFunctions } from 'n8n-core';
import {
IDataObject,
INodeExecutionData,
INodeType,
INodeTypeDescription,
} from 'n8n-workflow';
2020-07-07 06:24:21 -07:00
import * as pgPromise from 'pg-promise';
import { pgQuery } from '../Postgres/Postgres.node.functions';
2020-07-07 06:24:21 -07:00
export class QuestDb implements INodeType {
2020-07-07 06:24:21 -07:00
description: INodeTypeDescription = {
displayName: 'QuestDB',
name: 'questDb',
2020-07-07 06:24:21 -07:00
icon: 'file:questdb.png',
group: ['input'],
version: 1,
description: 'Gets, add and update data in QuestDB.',
defaults: {
name: 'QuestDB',
2020-07-08 07:30:21 -07:00
color: '#2C4A79',
2020-07-07 06:24:21 -07:00
},
inputs: ['main'],
outputs: ['main'],
credentials: [
{
name: 'questDb',
2020-07-07 06:24:21 -07:00
required: true,
2020-07-08 07:30:21 -07:00
},
2020-07-07 06:24:21 -07:00
],
properties: [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
options: [
{
name: 'Execute Query',
value: 'executeQuery',
description: 'Executes a SQL query.',
},
{
name: 'Insert',
value: 'insert',
description: 'Insert rows in database.',
}
2020-07-07 06:24:21 -07:00
],
default: 'insert',
description: 'The operation to perform.',
},
// ----------------------------------
// executeQuery
// ----------------------------------
{
displayName: 'Query',
name: 'query',
type: 'string',
typeOptions: {
rows: 5,
},
displayOptions: {
show: {
operation: [
'executeQuery',
],
2020-07-07 06:24:21 -07:00
},
},
default: '',
placeholder: 'SELECT id, name FROM product WHERE id < 40',
required: true,
description: 'The SQL query to execute.',
},
// ----------------------------------
// insert
// ----------------------------------
{
displayName: 'Schema',
name: 'schema',
type: 'string',
displayOptions: {
show: {
operation: [
'insert',
],
2020-07-07 06:24:21 -07:00
},
},
default: 'public',
required: true,
description: 'Name of the schema the table belongs to',
},
{
displayName: 'Table',
name: 'table',
type: 'string',
displayOptions: {
show: {
operation: [
'insert',
],
2020-07-07 06:24:21 -07:00
},
},
default: '',
required: true,
description: 'Name of the table in which to insert data to.',
},
{
displayName: 'Columns',
name: 'columns',
type: 'string',
displayOptions: {
show: {
operation: [
'insert',
],
2020-07-07 06:24:21 -07:00
},
},
default: '',
placeholder: 'id,name,description',
2020-07-08 07:30:21 -07:00
description:
'Comma separated list of the properties which should used as columns for the new rows.',
2020-07-07 06:24:21 -07:00
},
{
displayName: 'Return Fields',
name: 'returnFields',
type: 'string',
displayOptions: {
show: {
operation: [
'insert',
],
2020-07-07 06:24:21 -07:00
},
},
default: '*',
2020-07-09 08:16:45 -07:00
description: 'Comma separated list of the fields that the operation will return',
2020-07-07 06:24:21 -07:00
},
2020-07-08 07:30:21 -07:00
],
2020-07-07 06:24:21 -07:00
};
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
const credentials = this.getCredentials('questDb');
2020-07-07 06:24:21 -07:00
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
const pgp = pgPromise();
const config = {
host: credentials.host as string,
port: credentials.port as number,
database: credentials.database as string,
user: credentials.user as string,
password: credentials.password as string,
2020-07-09 08:16:45 -07:00
ssl: !['disable', undefined].includes(credentials.ssl as string | undefined),
2020-07-08 07:30:21 -07:00
sslmode: (credentials.ssl as string) || 'disable',
2020-07-07 06:24:21 -07:00
};
const db = pgp(config);
let returnItems = [];
const items = this.getInputData();
const operation = this.getNodeParameter('operation', 0) as string;
if (operation === 'executeQuery') {
// ----------------------------------
// executeQuery
// ----------------------------------
2020-07-08 07:30:21 -07:00
const queryResult = await pgQuery(this.getNodeParameter, pgp, db, items);
2020-07-07 06:24:21 -07:00
returnItems = this.helpers.returnJsonArray(queryResult as IDataObject[]);
} else if (operation === 'insert') {
// ----------------------------------
// insert
// ----------------------------------
const tableName = this.getNodeParameter('table', 0) as string;
const returnFields = this.getNodeParameter('returnFields', 0) as string;
2020-07-26 02:33:20 -07:00
const queries : string[] = [];
items.map(item => {
2020-07-26 02:33:20 -07:00
const columns = Object.keys(item.json);
2020-07-26 02:33:20 -07:00
const values : string = columns.map((col : string) => {
if (typeof item.json[col] === 'string') {
return `\'${item.json[col]}\'`;
} else {
return item.json[col];
}
}).join(',');
2020-07-26 02:33:20 -07:00
const query = `INSERT INTO ${tableName} (${columns.join(',')}) VALUES (${values});`;
queries.push(query);
});
2020-07-26 02:33:20 -07:00
await db.any(pgp.helpers.concat(queries));
2020-07-26 02:33:20 -07:00
const returnedItems = await db.any(`SELECT ${returnFields} from ${tableName}`);
returnItems = this.helpers.returnJsonArray(returnedItems as IDataObject[]);
2020-07-07 06:24:21 -07:00
} else {
await pgp.end();
throw new Error(`The operation "${operation}" is not supported!`);
}
// Close the connection
await pgp.end();
return this.prepareOutputData(returnItems);
}
}