2020-07-07 06:24:21 -07:00
|
|
|
import { IExecuteFunctions } from 'n8n-core';
|
2020-07-09 08:16:45 -07:00
|
|
|
import { IDataObject, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
2020-07-07 06:24:21 -07:00
|
|
|
|
|
|
|
import * as pgPromise from 'pg-promise';
|
|
|
|
|
2020-07-09 08:16:45 -07:00
|
|
|
import { pgInsert, pgQuery, pgUpdate } from '../Postgres/Postgres.node.functions';
|
2020-07-23 02:14:03 -07:00
|
|
|
import { table } from 'console';
|
2020-07-07 06:24:21 -07:00
|
|
|
|
2020-07-10 01:58:39 -07:00
|
|
|
export class QuestDb implements INodeType {
|
2020-07-07 06:24:21 -07:00
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'QuestDB',
|
2020-07-10 01:58:39 -07:00
|
|
|
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: [
|
|
|
|
{
|
2020-07-10 01:58:39 -07:00
|
|
|
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-23 02:14:03 -07:00
|
|
|
}
|
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: {
|
2020-07-08 07:30:21 -07:00
|
|
|
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: {
|
2020-07-08 07:30:21 -07:00
|
|
|
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: {
|
2020-07-08 07:30:21 -07:00
|
|
|
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: {
|
2020-07-08 07:30:21 -07:00
|
|
|
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: {
|
2020-07-08 07:30:21 -07:00
|
|
|
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
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// update
|
|
|
|
// ----------------------------------
|
2020-07-23 02:14:03 -07:00
|
|
|
// {
|
|
|
|
// displayName: 'Table',
|
|
|
|
// name: 'table',
|
|
|
|
// type: 'string',
|
|
|
|
// displayOptions: {
|
|
|
|
// show: {
|
|
|
|
// operation: ['update'],
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// default: '',
|
|
|
|
// required: true,
|
|
|
|
// description: 'Name of the table in which to update data in',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// displayName: 'Update Key',
|
|
|
|
// name: 'updateKey',
|
|
|
|
// type: 'string',
|
|
|
|
// displayOptions: {
|
|
|
|
// show: {
|
|
|
|
// operation: ['update'],
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// default: 'id',
|
|
|
|
// required: true,
|
|
|
|
// description:
|
|
|
|
// 'Name of the property which decides which rows in the database should be updated. Normally that would be "id".',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// displayName: 'Columns',
|
|
|
|
// name: 'columns',
|
|
|
|
// type: 'string',
|
|
|
|
// displayOptions: {
|
|
|
|
// show: {
|
|
|
|
// operation: ['update'],
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// default: '',
|
|
|
|
// placeholder: 'name,description',
|
|
|
|
// description:
|
|
|
|
// 'Comma separated list of the properties which should used as columns for rows to update.',
|
|
|
|
// },
|
2020-07-08 07:30:21 -07:00
|
|
|
],
|
2020-07-07 06:24:21 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
2020-07-10 01:58:39 -07:00
|
|
|
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
|
|
|
|
// ----------------------------------
|
2020-07-23 02:14:03 -07:00
|
|
|
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[] = [];
|
2020-07-23 02:14:03 -07:00
|
|
|
items.map(item => {
|
2020-07-26 02:33:20 -07:00
|
|
|
const columns = Object.keys(item.json);
|
2020-07-23 02:14:03 -07:00
|
|
|
|
2020-07-26 02:33:20 -07:00
|
|
|
const values : string = columns.map((col : string) => {
|
2020-07-23 02:14:03 -07:00
|
|
|
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});`;
|
2020-07-23 02:14:03 -07:00
|
|
|
queries.push(query);
|
|
|
|
});
|
2020-07-26 02:33:20 -07:00
|
|
|
|
2020-07-23 02:14:03 -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}`);
|
2020-07-23 02:14:03 -07:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|