2020-12-19 09:22:41 -08:00
import {
2021-03-25 15:45:16 -07:00
IExecuteFunctions ,
2020-12-19 09:22:41 -08:00
} from 'n8n-core' ;
import {
2021-03-25 15:45:16 -07:00
IDataObject ,
INodeExecutionData ,
INodeType ,
INodeTypeDescription ,
2020-12-19 09:22:41 -08:00
} from 'n8n-workflow' ;
import {
2021-03-25 15:45:16 -07:00
uprocApiRequest ,
2020-12-19 09:22:41 -08:00
} from './GenericFunctions' ;
import {
2021-03-25 15:45:16 -07:00
groupOptions ,
2020-12-19 09:22:41 -08:00
} from './GroupDescription' ;
import {
2021-03-25 15:45:16 -07:00
toolOperations ,
toolParameters ,
2020-12-19 09:22:41 -08:00
} from './ToolDescription' ;
export class UProc implements INodeType {
2021-03-25 15:45:16 -07:00
description : INodeTypeDescription = {
displayName : 'uProc' ,
name : 'uproc' ,
icon : 'file:uproc.png' ,
group : [ 'output' ] ,
version : 1 ,
subtitle : '={{$parameter["tool"]}}' ,
description : 'Consume uProc API' ,
defaults : {
name : 'uProc' ,
color : '#219ef9' ,
} ,
inputs : [ 'main' ] ,
outputs : [ 'main' ] ,
credentials : [
{
name : 'uprocApi' ,
required : true ,
} ,
] ,
properties : [
. . . groupOptions ,
. . . toolOperations ,
. . . toolParameters ,
{
displayName : 'Additional Options' ,
name : 'additionalOptions' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
group : [
'audio' ,
'communication' ,
'company' ,
'finance' ,
'geographic' ,
'image' ,
'internet' ,
'personal' ,
'product' ,
'security' ,
'text' ,
] ,
} ,
} ,
options : [
{
displayName : 'Data Webhook' ,
name : 'dataWebhook' ,
type : 'string' ,
description : 'URL to send tool response when tool has resolved your request. You can create your own webhook at en <a href="https://beeceptor.com" target="_blank">Beeceptor</a>, <a href="https://www.integromat.com/" target="_blank">Integromat</a>, <a href="https://zapier.com/" target="_blank">Zapier</a> or <a href="https://n8n.io/" target="_blank">n8n</a>' ,
default : '' ,
} ,
] ,
} ,
] ,
} ;
async execute ( this : IExecuteFunctions ) : Promise < INodeExecutionData [ ] [ ] > {
const items = this . getInputData ( ) ;
const returnData : IDataObject [ ] = [ ] ;
const length = items . length as unknown as number ;
let responseData ;
const group = this . getNodeParameter ( 'group' , 0 ) as string ;
const tool = this . getNodeParameter ( 'tool' , 0 ) as string ;
const additionalOptions = this . getNodeParameter ( 'additionalOptions' , 0 ) as IDataObject ;
const dataWebhook = additionalOptions . dataWebhook as string ;
interface LooseObject {
[ key : string ] : any ; // tslint:disable-line:no-any
}
const fields = toolParameters . filter ( ( field ) = > {
return field && field . displayOptions && field . displayOptions . show && field . displayOptions . show . group && field . displayOptions . show . tool &&
field . displayOptions . show . group . indexOf ( group ) !== - 1 && field . displayOptions . show . tool . indexOf ( tool ) !== - 1 ;
} ) . map ( ( field ) = > {
return field . name ;
} ) ;
const requestPromises = [ ] ;
for ( let i = 0 ; i < length ; i ++ ) {
const toolKey = tool . replace ( /([A-Z]+)/g , '-$1' ) . toLowerCase ( ) ;
const body : LooseObject = {
processor : toolKey ,
params : { } ,
} ;
fields . forEach ( ( field ) = > {
if ( field && field . length ) {
const data = this . getNodeParameter ( field , i ) as string ;
body . params [ field ] = data + '' ;
}
} ) ;
if ( dataWebhook && dataWebhook . length ) {
body . callback = { } ;
}
if ( dataWebhook && dataWebhook . length ) {
body . callback . data = dataWebhook ;
}
//Change to multiple requests
responseData = await uprocApiRequest . call ( this , 'POST' , body ) ;
if ( Array . isArray ( responseData ) ) {
returnData . push . apply ( returnData , responseData as IDataObject [ ] ) ;
} else {
returnData . push ( responseData as IDataObject ) ;
}
}
return [ this . helpers . returnJsonArray ( returnData ) ] ;
}
2020-12-19 09:22:41 -08:00
}