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

247 lines
5.8 KiB
TypeScript
Raw Normal View History

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-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.',
},
{
name: 'Update',
value: 'update',
description: 'Updates rows in database.',
},
],
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
// ----------------------------------
{
displayName: 'Table',
name: 'table',
type: 'string',
displayOptions: {
show: {
2020-07-08 07:30:21 -07:00
operation: ['update'],
2020-07-07 06:24:21 -07:00
},
},
default: '',
required: true,
description: 'Name of the table in which to update data in',
},
{
displayName: 'Update Key',
name: 'updateKey',
type: 'string',
displayOptions: {
show: {
2020-07-08 07:30:21 -07:00
operation: ['update'],
2020-07-07 06:24:21 -07:00
},
},
default: 'id',
required: true,
2020-07-08 07:30:21 -07:00
description:
'Name of the property which decides which rows in the database should be updated. Normally that would be "id".',
2020-07-07 06:24:21 -07:00
},
{
displayName: 'Columns',
name: 'columns',
type: 'string',
displayOptions: {
show: {
2020-07-08 07:30:21 -07:00
operation: ['update'],
2020-07-07 06:24:21 -07:00
},
},
default: '',
placeholder: 'name,description',
2020-07-08 07:30:21 -07:00
description:
'Comma separated list of the properties which should used as columns for rows to update.',
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
// ----------------------------------
2020-07-09 08:16:45 -07:00
const [insertData, insertItems] = await pgInsert(this.getNodeParameter, pgp, db, items);
2020-07-07 06:24:21 -07:00
// Add the id to the data
for (let i = 0; i < insertData.length; i++) {
returnItems.push({
json: {
...insertData[i],
...insertItems[i],
2020-07-08 07:30:21 -07:00
},
2020-07-07 06:24:21 -07:00
});
}
} else if (operation === 'update') {
// ----------------------------------
// update
// ----------------------------------
2020-07-08 07:30:21 -07:00
const updateItems = await pgUpdate(this.getNodeParameter, pgp, db, items);
2020-07-07 06:24:21 -07:00
2020-07-08 07:30:21 -07:00
returnItems = this.helpers.returnJsonArray(updateItems);
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);
}
}