2019-08-21 09:44:10 -07:00
import { IExecuteFunctions } from 'n8n-core' ;
import {
2022-09-01 05:29:15 -07:00
ICredentialsDecrypted ,
ICredentialTestFunctions ,
2019-08-21 09:44:10 -07:00
IDataObject ,
2022-09-01 05:29:15 -07:00
INodeCredentialTestResult ,
2019-08-21 09:44:10 -07:00
INodeExecutionData ,
INodeType ,
2021-04-16 09:33:36 -07:00
INodeTypeDescription ,
NodeOperationError ,
2019-08-21 09:44:10 -07:00
} from 'n8n-workflow' ;
2022-04-08 14:32:08 -07:00
import pgPromise from 'pg-promise' ;
2019-08-21 09:44:10 -07:00
2022-11-08 06:28:21 -08:00
import { pgInsertV2 , pgQueryV2 , pgUpdate } from './Postgres.node.functions' ;
2019-08-21 09:44:10 -07:00
export class Postgres implements INodeType {
description : INodeTypeDescription = {
displayName : 'Postgres' ,
name : 'postgres' ,
2021-06-12 12:00:37 -07:00
icon : 'file:postgres.svg' ,
2019-08-21 09:44:10 -07:00
group : [ 'input' ] ,
version : 1 ,
2021-07-03 05:40:16 -07:00
description : 'Get, add and update data in Postgres' ,
2019-08-21 09:44:10 -07:00
defaults : {
name : 'Postgres' ,
} ,
inputs : [ 'main' ] ,
outputs : [ 'main' ] ,
credentials : [
{
name : 'postgres' ,
2020-07-08 03:01:16 -07:00
required : true ,
2022-09-01 05:29:15 -07:00
testedBy : 'postgresConnectionTest' ,
2020-07-08 03:01:16 -07:00
} ,
2019-08-21 09:44:10 -07:00
] ,
properties : [
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2019-08-21 09:44:10 -07:00
options : [
{
name : 'Execute Query' ,
value : 'executeQuery' ,
2020-07-09 05:33:05 -07:00
description : 'Execute an SQL query' ,
2022-07-10 13:50:51 -07:00
action : 'Execute a SQL query' ,
2019-08-21 09:44:10 -07:00
} ,
{
name : 'Insert' ,
value : 'insert' ,
2020-07-09 05:33:05 -07:00
description : 'Insert rows in database' ,
2022-07-10 13:50:51 -07:00
action : 'Insert rows in database' ,
2019-08-21 09:44:10 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
2020-07-09 05:33:05 -07:00
description : 'Update rows in database' ,
2022-07-10 13:50:51 -07:00
action : 'Update rows in database' ,
2020-07-08 03:01:16 -07:00
} ,
2019-08-21 09:44:10 -07:00
] ,
default : 'insert' ,
} ,
// ----------------------------------
// executeQuery
// ----------------------------------
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
typeOptions : {
2021-09-11 03:58:48 -07:00
alwaysOpenEditWindow : true ,
2019-08-21 09:44:10 -07:00
} ,
displayOptions : {
show : {
2020-07-08 03:01:16 -07:00
operation : [ 'executeQuery' ] ,
} ,
2019-08-21 09:44:10 -07:00
} ,
default : '' ,
2021-04-30 15:35:34 -07:00
placeholder : 'SELECT id, name FROM product WHERE quantity > $1 AND price <= $2' ,
2019-08-21 09:44:10 -07:00
required : true ,
2022-08-17 08:50:24 -07:00
description :
'The SQL query to execute. You can use n8n expressions or $1 and $2 in conjunction with query parameters.' ,
2019-08-21 09:44:10 -07:00
} ,
// ----------------------------------
// insert
// ----------------------------------
2020-03-17 16:49:21 -07:00
{
displayName : 'Schema' ,
name : 'schema' ,
type : 'string' ,
displayOptions : {
show : {
2020-07-08 03:01:16 -07:00
operation : [ 'insert' ] ,
} ,
2020-03-17 16:49:21 -07:00
} ,
default : 'public' ,
required : true ,
2020-07-08 03:01:16 -07:00
description : 'Name of the schema the table belongs to' ,
2020-03-17 16:49:21 -07:00
} ,
2019-08-21 09:44:10 -07:00
{
displayName : 'Table' ,
name : 'table' ,
type : 'string' ,
displayOptions : {
show : {
2020-07-08 03:01:16 -07:00
operation : [ 'insert' ] ,
} ,
2019-08-21 09:44:10 -07:00
} ,
default : '' ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'Name of the table in which to insert data to' ,
2019-08-21 09:44:10 -07:00
} ,
{
displayName : 'Columns' ,
name : 'columns' ,
type : 'string' ,
displayOptions : {
show : {
2020-07-08 03:01:16 -07:00
operation : [ 'insert' ] ,
} ,
2019-08-21 09:44:10 -07:00
} ,
default : '' ,
2022-06-03 10:23:49 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-placeholder-miscased-id
2021-04-03 07:53:47 -07:00
placeholder : 'id:int,name:text,description' ,
2022-05-06 14:01:25 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-description-miscased-id
2022-08-17 08:50:24 -07:00
description :
'Comma-separated list of the properties which should used as columns for the new rows. You can use type casting with colons (:) like id:int.' ,
2019-08-21 09:44:10 -07:00
} ,
// ----------------------------------
// update
// ----------------------------------
2020-09-29 12:57:22 -07:00
{
displayName : 'Schema' ,
name : 'schema' ,
type : 'string' ,
displayOptions : {
show : {
operation : [ 'update' ] ,
} ,
} ,
default : 'public' ,
description : 'Name of the schema the table belongs to' ,
} ,
2019-08-21 09:44:10 -07:00
{
displayName : 'Table' ,
name : 'table' ,
type : 'string' ,
displayOptions : {
show : {
2020-07-08 03:01:16 -07:00
operation : [ 'update' ] ,
} ,
2019-08-21 09:44:10 -07:00
} ,
default : '' ,
required : true ,
2020-07-08 03:01:16 -07:00
description : 'Name of the table in which to update data in' ,
2019-08-21 09:44:10 -07:00
} ,
{
displayName : 'Update Key' ,
name : 'updateKey' ,
type : 'string' ,
displayOptions : {
show : {
2020-07-08 03:01:16 -07:00
operation : [ 'update' ] ,
} ,
2019-08-21 09:44:10 -07:00
} ,
default : 'id' ,
required : true ,
2022-05-06 14:01:25 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-description-miscased-id
2022-08-17 08:50:24 -07:00
description :
'Comma-separated list of the properties which decides which rows in the database should be updated. Normally that would be "id".' ,
2019-08-21 09:44:10 -07:00
} ,
{
displayName : 'Columns' ,
name : 'columns' ,
type : 'string' ,
displayOptions : {
show : {
2020-07-08 03:01:16 -07:00
operation : [ 'update' ] ,
} ,
2019-08-21 09:44:10 -07:00
} ,
default : '' ,
2021-04-03 07:53:47 -07:00
placeholder : 'name:text,description' ,
2022-05-06 14:01:25 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-description-miscased-id
2022-08-17 08:50:24 -07:00
description :
'Comma-separated list of the properties which should used as columns for rows to update. You can use type casting with colons (:) like id:int.' ,
2020-07-08 03:01:16 -07:00
} ,
2021-04-24 13:55:14 -07:00
// ----------------------------------
// insert,update
// ----------------------------------
{
displayName : 'Return Fields' ,
name : 'returnFields' ,
type : 'string' ,
displayOptions : {
show : {
operation : [ 'insert' , 'update' ] ,
} ,
} ,
default : '*' ,
2022-04-22 09:29:51 -07:00
description : 'Comma-separated list of the fields that the operation will return' ,
2021-04-24 13:55:14 -07:00
} ,
// ----------------------------------
// Additional fields
// ----------------------------------
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
options : [
{
displayName : 'Mode' ,
name : 'mode' ,
type : 'options' ,
options : [
{
name : 'Independently' ,
value : 'independently' ,
description : 'Execute each query independently' ,
} ,
{
2022-06-03 10:23:49 -07:00
name : 'Multiple Queries' ,
2021-04-24 13:55:14 -07:00
value : 'multiple' ,
description : '<b>Default</b>. Sends multiple queries at once to database.' ,
} ,
{
name : 'Transaction' ,
value : 'transaction' ,
description : 'Executes all queries in a single transaction' ,
} ,
] ,
default : 'multiple' ,
2022-08-17 08:50:24 -07:00
description :
2022-09-29 03:33:16 -07:00
'The way queries should be sent to database. Can be used in conjunction with <b>Continue on Fail</b>. See <a href="https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.postgres/">the docs</a> for more examples' ,
2021-04-24 13:55:14 -07:00
} ,
2022-07-10 02:04:12 -07:00
{
displayName : 'Output Large-Format Numbers As' ,
name : 'largeNumbersOutput' ,
type : 'options' ,
options : [
{
name : 'Numbers' ,
value : 'numbers' ,
} ,
{
name : 'Text' ,
value : 'text' ,
2022-08-17 08:50:24 -07:00
description :
'Use this if you expect numbers longer than 16 digits (otherwise numbers may be incorrect)' ,
2022-07-10 02:04:12 -07:00
} ,
] ,
hint : 'Applies to NUMERIC and BIGINT columns only' ,
default : 'text' ,
} ,
2021-04-30 15:35:34 -07:00
{
displayName : 'Query Parameters' ,
name : 'queryParams' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
'/operation' : [ 'executeQuery' ] ,
2021-04-30 15:35:34 -07:00
} ,
} ,
default : '' ,
placeholder : 'quantity,price' ,
2022-08-17 08:50:24 -07:00
description :
'Comma-separated list of properties which should be used as query parameters' ,
2021-04-30 15:35:34 -07:00
} ,
2021-04-24 13:55:14 -07:00
] ,
} ,
2020-07-08 03:01:16 -07:00
] ,
2019-08-21 09:44:10 -07:00
} ;
2022-09-01 05:29:15 -07:00
methods = {
credentialTest : {
async postgresConnectionTest (
this : ICredentialTestFunctions ,
credential : ICredentialsDecrypted ,
) : Promise < INodeCredentialTestResult > {
const credentials = credential . data as IDataObject ;
try {
const pgp = pgPromise ( ) ;
const config : IDataObject = {
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 ,
} ;
if ( credentials . allowUnauthorizedCerts === true ) {
config . ssl = {
rejectUnauthorized : false ,
} ;
} else {
config . ssl = ! [ 'disable' , undefined ] . includes ( credentials . ssl as string | undefined ) ;
config . sslmode = ( credentials . ssl as string ) || 'disable' ;
}
const db = pgp ( config ) ;
await db . connect ( ) ;
await pgp . end ( ) ;
} catch ( error ) {
return {
status : 'Error' ,
message : error.message ,
} ;
}
return {
status : 'OK' ,
message : 'Connection successful!' ,
} ;
} ,
} ,
} ;
2019-08-21 09:44:10 -07:00
async execute ( this : IExecuteFunctions ) : Promise < INodeExecutionData [ ] [ ] > {
2021-08-20 09:57:30 -07:00
const credentials = await this . getCredentials ( 'postgres' ) ;
2022-08-17 08:50:24 -07:00
const largeNumbersOutput = this . getNodeParameter (
'additionalFields.largeNumbersOutput' ,
0 ,
'' ,
) as string ;
2019-08-21 09:44:10 -07:00
const pgp = pgPromise ( ) ;
2022-07-10 02:04:12 -07:00
if ( largeNumbersOutput === 'numbers' ) {
pgp . pg . types . setTypeParser ( 20 , ( value : string ) = > {
return parseInt ( value , 10 ) ;
} ) ;
pgp . pg . types . setTypeParser ( 1700 , ( value : string ) = > {
return parseFloat ( value ) ;
} ) ;
}
2020-08-25 08:02:01 -07:00
const config : IDataObject = {
2020-01-10 01:21:45 -08:00
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-08-25 08:02:01 -07:00
if ( credentials . allowUnauthorizedCerts === true ) {
config . ssl = {
rejectUnauthorized : false ,
} ;
} else {
config . ssl = ! [ 'disable' , undefined ] . includes ( credentials . ssl as string | undefined ) ;
config . sslmode = ( credentials . ssl as string ) || 'disable' ;
}
2020-01-10 01:21:45 -08:00
const db = pgp ( config ) ;
2019-08-21 09:44:10 -07:00
2022-08-30 08:55:33 -07:00
let returnItems : INodeExecutionData [ ] = [ ] ;
2019-08-21 09:44:10 -07:00
const items = this . getInputData ( ) ;
2022-12-02 03:53:59 -08:00
const operation = this . getNodeParameter ( 'operation' , 0 ) ;
2019-08-21 09:44:10 -07:00
if ( operation === 'executeQuery' ) {
// ----------------------------------
// executeQuery
// ----------------------------------
2022-09-29 03:33:16 -07:00
const queryResult = await pgQueryV2 . call ( this , pgp , db , items , this . continueOnFail ( ) ) ;
2022-08-30 08:55:33 -07:00
returnItems = queryResult as INodeExecutionData [ ] ;
2019-08-21 09:44:10 -07:00
} else if ( operation === 'insert' ) {
// ----------------------------------
// insert
// ----------------------------------
2022-09-29 03:33:16 -07:00
const insertData = await pgInsertV2 . call ( this , pgp , db , items , this . continueOnFail ( ) ) ;
2019-08-21 09:44:10 -07:00
2022-08-30 08:55:33 -07:00
// returnItems = this.helpers.returnJsonArray(insertData);
returnItems = insertData as INodeExecutionData [ ] ;
2019-08-21 09:44:10 -07:00
} else if ( operation === 'update' ) {
// ----------------------------------
// update
// ----------------------------------
2022-08-17 08:50:24 -07:00
const updateItems = await pgUpdate (
this . getNodeParameter ,
pgp ,
db ,
items ,
this . continueOnFail ( ) ,
) ;
2019-08-21 09:44:10 -07:00
2020-07-08 05:36:40 -07:00
returnItems = this . helpers . returnJsonArray ( updateItems ) ;
2019-08-21 09:44:10 -07:00
} else {
2020-04-07 23:43:16 -07:00
await pgp . end ( ) ;
2022-08-17 08:50:24 -07:00
throw new NodeOperationError (
this . getNode ( ) ,
` The operation " ${ operation } " is not supported! ` ,
) ;
2019-08-21 09:44:10 -07:00
}
2019-10-31 09:43:30 -07:00
// Close the connection
await pgp . end ( ) ;
2019-08-21 09:44:10 -07:00
return this . prepareOutputData ( returnItems ) ;
}
}