2019-07-26 01:21:31 -07:00
import { set } from 'lodash' ;
import {
2020-01-13 18:46:58 -08:00
ICredentialDataDecryptedObject ,
2020-01-25 23:48:38 -08:00
ICredentialsHelper ,
2021-01-18 23:47:02 -08:00
IDataObject ,
2021-11-05 09:45:51 -07:00
IDeferredPromise ,
2020-01-02 15:22:20 -08:00
IExecuteWorkflowInfo ,
2021-10-13 15:21:00 -07:00
INodeCredentialsDetails ,
2019-07-26 01:21:31 -07:00
INodeExecutionData ,
INodeParameters ,
INodeType ,
2019-08-09 03:19:28 -07:00
INodeTypeData ,
2020-10-22 06:46:03 -07:00
INodeTypes ,
2019-07-26 01:21:31 -07:00
IRun ,
ITaskData ,
2019-12-20 10:53:52 -08:00
IWorkflowBase ,
2019-07-26 01:21:31 -07:00
IWorkflowExecuteAdditionalData ,
2021-09-21 10:38:24 -07:00
NodeHelpers ,
2021-01-18 23:47:02 -08:00
NodeParameterValue ,
2019-12-20 10:53:52 -08:00
WorkflowHooks ,
2019-07-26 01:21:31 -07:00
} from 'n8n-workflow' ;
2021-11-05 09:45:51 -07:00
import { Credentials , IExecuteFunctions } from '../src' ;
2019-07-26 01:21:31 -07:00
2020-01-25 23:48:38 -08:00
export class CredentialsHelper extends ICredentialsHelper {
2021-10-13 15:21:00 -07:00
getDecrypted (
nodeCredentials : INodeCredentialsDetails ,
type : string ,
) : Promise < ICredentialDataDecryptedObject > {
2021-08-29 11:58:11 -07:00
return new Promise ( ( res ) = > res ( { } ) ) ;
2020-01-25 23:48:38 -08:00
}
2021-10-13 15:21:00 -07:00
getCredentials ( nodeCredentials : INodeCredentialsDetails , type : string ) : Promise < Credentials > {
2021-08-29 11:58:11 -07:00
return new Promise ( ( res ) = > {
2021-10-13 15:21:00 -07:00
res ( new Credentials ( { id : null , name : '' } , '' , [ ] , '' ) ) ;
2021-08-20 09:57:30 -07:00
} ) ;
2020-01-25 23:48:38 -08:00
}
2021-08-29 11:58:11 -07:00
async updateCredentials (
2021-10-13 15:21:00 -07:00
nodeCredentials : INodeCredentialsDetails ,
2021-08-29 11:58:11 -07:00
type : string ,
data : ICredentialDataDecryptedObject ,
) : Promise < void > { }
2020-01-25 23:48:38 -08:00
}
2019-07-26 01:21:31 -07:00
class NodeTypesClass implements INodeTypes {
2019-08-09 03:19:28 -07:00
nodeTypes : INodeTypeData = {
2021-01-18 23:47:02 -08:00
'n8n-nodes-base.if' : {
sourcePath : '' ,
type : {
description : {
displayName : 'If' ,
name : 'if' ,
group : [ 'transform' ] ,
version : 1 ,
description : 'Splits a stream depending on defined compare operations.' ,
defaults : {
name : 'IF' ,
color : '#408000' ,
} ,
inputs : [ 'main' ] ,
outputs : [ 'main' , 'main' ] ,
properties : [
{
displayName : 'Conditions' ,
name : 'conditions' ,
placeholder : 'Add Condition' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
description : 'The type of values to compare.' ,
default : { } ,
options : [
{
name : 'boolean' ,
displayName : 'Boolean' ,
values : [
{
displayName : 'Value 1' ,
name : 'value1' ,
type : 'boolean' ,
default : false ,
description : 'The value to compare with the second one.' ,
} ,
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
options : [
{
name : 'Equal' ,
value : 'equal' ,
} ,
{
name : 'Not Equal' ,
value : 'notEqual' ,
} ,
] ,
default : 'equal' ,
description : 'Operation to decide where the the data should be mapped to.' ,
} ,
{
displayName : 'Value 2' ,
name : 'value2' ,
type : 'boolean' ,
default : false ,
description : 'The value to compare with the first one.' ,
} ,
] ,
} ,
{
name : 'number' ,
displayName : 'Number' ,
values : [
{
displayName : 'Value 1' ,
name : 'value1' ,
type : 'number' ,
default : 0 ,
description : 'The value to compare with the second one.' ,
} ,
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
options : [
{
name : 'Smaller' ,
value : 'smaller' ,
} ,
{
name : 'Smaller Equal' ,
value : 'smallerEqual' ,
} ,
{
name : 'Equal' ,
value : 'equal' ,
} ,
{
name : 'Not Equal' ,
value : 'notEqual' ,
} ,
{
name : 'Larger' ,
value : 'larger' ,
} ,
{
name : 'Larger Equal' ,
value : 'largerEqual' ,
} ,
{
name : 'Is Empty' ,
value : 'isEmpty' ,
} ,
] ,
default : 'smaller' ,
description : 'Operation to decide where the the data should be mapped to.' ,
} ,
{
displayName : 'Value 2' ,
name : 'value2' ,
type : 'number' ,
displayOptions : {
hide : {
2021-08-29 11:58:11 -07:00
operation : [ 'isEmpty' ] ,
2021-01-18 23:47:02 -08:00
} ,
} ,
default : 0 ,
description : 'The value to compare with the first one.' ,
} ,
] ,
} ,
{
name : 'string' ,
displayName : 'String' ,
values : [
{
displayName : 'Value 1' ,
name : 'value1' ,
type : 'string' ,
default : '' ,
description : 'The value to compare with the second one.' ,
} ,
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
options : [
{
name : 'Contains' ,
value : 'contains' ,
} ,
{
name : 'Ends With' ,
value : 'endsWith' ,
} ,
{
name : 'Equal' ,
value : 'equal' ,
} ,
{
name : 'Not Contains' ,
value : 'notContains' ,
} ,
{
name : 'Not Equal' ,
value : 'notEqual' ,
} ,
{
name : 'Regex' ,
value : 'regex' ,
} ,
{
name : 'Starts With' ,
value : 'startsWith' ,
} ,
{
name : 'Is Empty' ,
value : 'isEmpty' ,
} ,
] ,
default : 'equal' ,
description : 'Operation to decide where the the data should be mapped to.' ,
} ,
{
displayName : 'Value 2' ,
name : 'value2' ,
type : 'string' ,
displayOptions : {
hide : {
2021-08-29 11:58:11 -07:00
operation : [ 'isEmpty' , 'regex' ] ,
2021-01-18 23:47:02 -08:00
} ,
} ,
default : '' ,
description : 'The value to compare with the first one.' ,
} ,
{
displayName : 'Regex' ,
name : 'value2' ,
type : 'string' ,
displayOptions : {
show : {
2021-08-29 11:58:11 -07:00
operation : [ 'regex' ] ,
2021-01-18 23:47:02 -08:00
} ,
} ,
default : '' ,
placeholder : '/text/i' ,
description : 'The regex which has to match.' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Combine' ,
name : 'combineOperation' ,
type : 'options' ,
options : [
{
name : 'ALL' ,
description : 'Only if all conditions are meet it goes into "true" branch.' ,
value : 'all' ,
} ,
{
name : 'ANY' ,
description : 'If any of the conditions is meet it goes into "true" branch.' ,
value : 'any' ,
} ,
] ,
default : 'all' ,
2021-08-29 11:58:11 -07:00
description :
'If multiple rules got set this settings decides if it is true as soon as ANY condition matches or only if ALL get meet.' ,
2021-01-18 23:47:02 -08:00
} ,
] ,
} ,
async execute ( this : IExecuteFunctions ) : Promise < INodeExecutionData [ ] [ ] > {
const returnDataTrue : INodeExecutionData [ ] = [ ] ;
const returnDataFalse : INodeExecutionData [ ] = [ ] ;
const items = this . getInputData ( ) ;
let item : INodeExecutionData ;
let combineOperation : string ;
// The compare operations
const compareOperationFunctions : {
[ key : string ] : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = > boolean ;
} = {
2021-08-29 11:58:11 -07:00
contains : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = >
( value1 || '' ) . toString ( ) . includes ( ( value2 || '' ) . toString ( ) ) ,
notContains : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = >
! ( value1 || '' ) . toString ( ) . includes ( ( value2 || '' ) . toString ( ) ) ,
endsWith : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = >
( value1 as string ) . endsWith ( value2 as string ) ,
2021-01-18 23:47:02 -08:00
equal : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = > value1 === value2 ,
notEqual : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = > value1 !== value2 ,
2021-08-29 11:58:11 -07:00
larger : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = >
( value1 || 0 ) > ( value2 || 0 ) ,
largerEqual : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = >
( value1 || 0 ) >= ( value2 || 0 ) ,
smaller : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = >
( value1 || 0 ) < ( value2 || 0 ) ,
smallerEqual : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = >
( value1 || 0 ) <= ( value2 || 0 ) ,
startsWith : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = >
( value1 as string ) . startsWith ( value2 as string ) ,
isEmpty : ( value1 : NodeParameterValue ) = >
[ undefined , null , '' ] . includes ( value1 as string ) ,
2021-01-18 23:47:02 -08:00
regex : ( value1 : NodeParameterValue , value2 : NodeParameterValue ) = > {
2021-08-29 11:58:11 -07:00
const regexMatch = ( value2 || '' )
. toString ( )
. match ( new RegExp ( '^/(.*?)/([gimusy]*)$' ) ) ;
2021-01-18 23:47:02 -08:00
let regex : RegExp ;
if ( ! regexMatch ) {
regex = new RegExp ( ( value2 || '' ) . toString ( ) ) ;
} else if ( regexMatch . length === 1 ) {
regex = new RegExp ( regexMatch [ 1 ] ) ;
} else {
regex = new RegExp ( regexMatch [ 1 ] , regexMatch [ 2 ] ) ;
}
return ! ! ( value1 || '' ) . toString ( ) . match ( regex ) ;
} ,
} ;
// The different dataTypes to check the values in
2021-08-29 11:58:11 -07:00
const dataTypes = [ 'boolean' , 'number' , 'string' ] ;
2021-01-18 23:47:02 -08:00
// Itterate over all items to check which ones should be output as via output "true" and
// which ones via output "false"
let dataType : string ;
let compareOperationResult : boolean ;
2021-08-29 11:58:11 -07:00
itemLoop : for ( let itemIndex = 0 ; itemIndex < items . length ; itemIndex ++ ) {
2021-01-18 23:47:02 -08:00
item = items [ itemIndex ] ;
let compareData : INodeParameters ;
combineOperation = this . getNodeParameter ( 'combineOperation' , itemIndex ) as string ;
// Check all the values of the different dataTypes
for ( dataType of dataTypes ) {
// Check all the values of the current dataType
2021-08-29 11:58:11 -07:00
for ( compareData of this . getNodeParameter (
` conditions. ${ dataType } ` ,
itemIndex ,
[ ] ,
) as INodeParameters [ ] ) {
2021-01-18 23:47:02 -08:00
// Check if the values passes
2021-08-29 11:58:11 -07:00
compareOperationResult = compareOperationFunctions [ compareData . operation as string ] (
compareData . value1 as NodeParameterValue ,
compareData . value2 as NodeParameterValue ,
) ;
2021-01-18 23:47:02 -08:00
if ( compareOperationResult === true && combineOperation === 'any' ) {
// If it passes and the operation is "any" we do not have to check any
// other ones as it should pass anyway. So go on with the next item.
returnDataTrue . push ( item ) ;
continue itemLoop ;
} else if ( compareOperationResult === false && combineOperation === 'all' ) {
// If it fails and the operation is "all" we do not have to check any
// other ones as it should be not pass anyway. So go on with the next item.
returnDataFalse . push ( item ) ;
continue itemLoop ;
}
}
}
if ( combineOperation === 'all' ) {
// If the operation is "all" it means the item did match all conditions
// so it passes.
returnDataTrue . push ( item ) ;
} else {
// If the operation is "any" it means the the item did not match any condition.
returnDataFalse . push ( item ) ;
}
}
return [ returnDataTrue , returnDataFalse ] ;
} ,
} ,
} ,
2019-07-26 01:21:31 -07:00
'n8n-nodes-base.merge' : {
2019-08-09 03:19:28 -07:00
sourcePath : '' ,
type : {
description : {
displayName : 'Merge' ,
name : 'merge' ,
icon : 'fa:clone' ,
group : [ 'transform' ] ,
version : 1 ,
description : 'Merges data of multiple streams once data of both is available' ,
defaults : {
name : 'Merge' ,
color : '#00cc22' ,
2019-07-26 01:21:31 -07:00
} ,
2019-08-09 03:19:28 -07:00
inputs : [ 'main' , 'main' ] ,
outputs : [ 'main' ] ,
properties : [
{
displayName : 'Mode' ,
name : 'mode' ,
type : 'options' ,
options : [
{
name : 'Append' ,
value : 'append' ,
2021-08-29 11:58:11 -07:00
description :
'Combines data of both inputs. The output will contain items of input 1 and input 2.' ,
2019-08-09 03:19:28 -07:00
} ,
{
name : 'Pass-through' ,
value : 'passThrough' ,
2021-08-29 11:58:11 -07:00
description :
'Passes through data of one input. The output will conain only items of the defined input.' ,
2019-08-09 03:19:28 -07:00
} ,
{
name : 'Wait' ,
value : 'wait' ,
2021-08-29 11:58:11 -07:00
description :
'Waits till data of both inputs is available and will then output a single empty item.' ,
2019-08-09 03:19:28 -07:00
} ,
] ,
default : 'append' ,
2021-08-29 11:58:11 -07:00
description :
'How data should be merged. If it should simply<br />be appended or merged depending on a property.' ,
2019-07-26 01:21:31 -07:00
} ,
2019-08-09 03:19:28 -07:00
{
displayName : 'Output Data' ,
name : 'output' ,
type : 'options' ,
displayOptions : {
show : {
2021-08-29 11:58:11 -07:00
mode : [ 'passThrough' ] ,
2019-08-09 03:19:28 -07:00
} ,
2019-07-26 01:21:31 -07:00
} ,
2019-08-09 03:19:28 -07:00
options : [
{
name : 'Input 1' ,
value : 'input1' ,
} ,
{
name : 'Input 2' ,
value : 'input2' ,
} ,
] ,
default : 'input1' ,
description : 'Defines of which input the data should be used as output of node.' ,
} ,
2020-10-22 06:46:03 -07:00
] ,
2019-08-09 03:19:28 -07:00
} ,
async execute ( this : IExecuteFunctions ) : Promise < INodeExecutionData [ ] [ ] > {
// const itemsInput2 = this.getInputData(1);
2019-07-26 01:21:31 -07:00
2019-08-09 03:19:28 -07:00
const returnData : INodeExecutionData [ ] = [ ] ;
2019-07-26 01:21:31 -07:00
2019-08-09 03:19:28 -07:00
const mode = this . getNodeParameter ( 'mode' , 0 ) as string ;
2019-07-26 01:21:31 -07:00
2019-08-09 03:19:28 -07:00
if ( mode === 'append' ) {
// Simply appends the data
for ( let i = 0 ; i < 2 ; i ++ ) {
returnData . push . apply ( returnData , this . getInputData ( i ) ) ;
}
} else if ( mode === 'passThrough' ) {
const output = this . getNodeParameter ( 'output' , 0 ) as string ;
2019-07-26 01:21:31 -07:00
2019-08-09 03:19:28 -07:00
if ( output === 'input1' ) {
returnData . push . apply ( returnData , this . getInputData ( 0 ) ) ;
} else {
returnData . push . apply ( returnData , this . getInputData ( 1 ) ) ;
}
} else if ( mode === 'wait' ) {
returnData . push ( { json : { } } ) ;
2019-07-26 01:21:31 -07:00
}
2019-08-09 03:19:28 -07:00
return [ returnData ] ;
2020-10-22 06:46:03 -07:00
} ,
2019-08-09 03:19:28 -07:00
} ,
2019-07-26 01:21:31 -07:00
} ,
2021-05-08 19:49:55 -07:00
'n8n-nodes-base.noOp' : {
sourcePath : '' ,
type : {
description : {
displayName : 'No Operation, do nothing' ,
name : 'noOp' ,
icon : 'fa:arrow-right' ,
group : [ 'organization' ] ,
version : 1 ,
description : 'No Operation' ,
defaults : {
name : 'NoOp' ,
color : '#b0b0b0' ,
} ,
inputs : [ 'main' ] ,
outputs : [ 'main' ] ,
properties : [ ] ,
} ,
execute ( this : IExecuteFunctions ) : Promise < INodeExecutionData [ ] [ ] > {
const items = this . getInputData ( ) ;
return this . prepareOutputData ( items ) ;
} ,
} ,
} ,
2019-07-26 01:21:31 -07:00
'n8n-nodes-base.set' : {
2019-08-09 03:19:28 -07:00
sourcePath : '' ,
type : {
description : {
displayName : 'Set' ,
name : 'set' ,
group : [ 'input' ] ,
version : 1 ,
description : 'Sets a value' ,
defaults : {
name : 'Set' ,
color : '#0000FF' ,
2019-07-26 01:21:31 -07:00
} ,
2019-08-09 03:19:28 -07:00
inputs : [ 'main' ] ,
outputs : [ 'main' ] ,
properties : [
{
displayName : 'Keep Only Set' ,
name : 'keepOnlySet' ,
type : 'boolean' ,
default : false ,
2021-08-29 11:58:11 -07:00
description :
'If only the values set on this node should be<br />kept and all others removed.' ,
2019-07-26 01:21:31 -07:00
} ,
2019-08-09 03:19:28 -07:00
{
displayName : 'Values to Set' ,
name : 'values' ,
placeholder : 'Add Value' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
2019-07-26 01:21:31 -07:00
} ,
2019-08-09 03:19:28 -07:00
description : 'The value to set.' ,
default : { } ,
options : [
2021-01-18 23:47:02 -08:00
{
name : 'boolean' ,
displayName : 'Boolean' ,
values : [
{
displayName : 'Name' ,
name : 'name' ,
type : 'string' ,
default : 'propertyName' ,
2021-08-29 11:58:11 -07:00
description :
'Name of the property to write data to.<br />Supports dot-notation.<br />Example: "data.person[0].name"' ,
2021-01-18 23:47:02 -08:00
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'boolean' ,
default : false ,
description : 'The boolean value to write in the property.' ,
} ,
] ,
} ,
2019-08-09 03:19:28 -07:00
{
name : 'number' ,
displayName : 'Number' ,
values : [
{
displayName : 'Name' ,
name : 'name' ,
type : 'string' ,
default : 'propertyName' ,
2021-08-29 11:58:11 -07:00
description :
'Name of the property to write data to.<br />Supports dot-notation.<br />Example: "data.person[0].name"' ,
2019-08-09 03:19:28 -07:00
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'number' ,
default : 0 ,
description : 'The number value to write in the property.' ,
} ,
2020-10-22 06:46:03 -07:00
] ,
2019-08-09 03:19:28 -07:00
} ,
2021-01-18 23:47:02 -08:00
{
name : 'string' ,
displayName : 'String' ,
values : [
{
displayName : 'Name' ,
name : 'name' ,
type : 'string' ,
default : 'propertyName' ,
2021-08-29 11:58:11 -07:00
description :
'Name of the property to write data to.<br />Supports dot-notation.<br />Example: "data.person[0].name"' ,
2021-01-18 23:47:02 -08:00
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
description : 'The string value to write in the property.' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
options : [
{
displayName : 'Dot Notation' ,
name : 'dotNotation' ,
type : 'boolean' ,
default : true ,
2021-11-25 09:10:06 -08:00
description : ` <p>By default, dot-notation is used in property names. This means that "a.b" will set the property "b" underneath "a" so { "a": { "b": value} }.</p><p>If that is not intended this can be deactivated, it will then set { "a.b": value } instead.</p> ` ,
2021-01-18 23:47:02 -08:00
} ,
2019-08-09 03:19:28 -07:00
] ,
} ,
2020-10-22 06:46:03 -07:00
] ,
2019-08-09 03:19:28 -07:00
} ,
execute ( this : IExecuteFunctions ) : Promise < INodeExecutionData [ ] [ ] > {
const items = this . getInputData ( ) ;
2021-01-18 23:47:02 -08:00
if ( items . length === 0 ) {
items . push ( { json : { } } ) ;
}
2019-08-09 03:19:28 -07:00
const returnData : INodeExecutionData [ ] = [ ] ;
2021-01-18 23:47:02 -08:00
2019-08-09 03:19:28 -07:00
let item : INodeExecutionData ;
2021-01-18 23:47:02 -08:00
let keepOnlySet : boolean ;
2019-08-09 03:19:28 -07:00
for ( let itemIndex = 0 ; itemIndex < items . length ; itemIndex ++ ) {
2021-03-08 09:45:35 -08:00
keepOnlySet = this . getNodeParameter ( 'keepOnlySet' , itemIndex , false ) as boolean ;
2019-08-09 03:19:28 -07:00
item = items [ itemIndex ] ;
2021-01-18 23:47:02 -08:00
const options = this . getNodeParameter ( 'options' , itemIndex , { } ) as IDataObject ;
2019-08-09 03:19:28 -07:00
const newItem : INodeExecutionData = {
2021-01-18 23:47:02 -08:00
json : { } ,
2019-08-09 03:19:28 -07:00
} ;
2021-01-18 23:47:02 -08:00
if ( keepOnlySet !== true ) {
if ( item . binary !== undefined ) {
// Create a shallow copy of the binary data so that the old
// data references which do not get changed still stay behind
// but the incoming data does not get changed.
newItem . binary = { } ;
Object . assign ( newItem . binary , item . binary ) ;
}
newItem . json = JSON . parse ( JSON . stringify ( item . json ) ) ;
}
// Add boolean values
2021-08-29 11:58:11 -07:00
( this . getNodeParameter ( 'values.boolean' , itemIndex , [ ] ) as INodeParameters [ ] ) . forEach (
( setItem ) = > {
if ( options . dotNotation === false ) {
newItem . json [ setItem . name as string ] = ! ! setItem . value ;
} else {
set ( newItem . json , setItem . name as string , ! ! setItem . value ) ;
}
} ,
) ;
2021-01-18 23:47:02 -08:00
2019-08-09 03:19:28 -07:00
// Add number values
2021-08-29 11:58:11 -07:00
( this . getNodeParameter ( 'values.number' , itemIndex , [ ] ) as INodeParameters [ ] ) . forEach (
( setItem ) = > {
if ( options . dotNotation === false ) {
newItem . json [ setItem . name as string ] = setItem . value ;
} else {
set ( newItem . json , setItem . name as string , setItem . value ) ;
}
} ,
) ;
2021-01-18 23:47:02 -08:00
// Add string values
2021-08-29 11:58:11 -07:00
( this . getNodeParameter ( 'values.string' , itemIndex , [ ] ) as INodeParameters [ ] ) . forEach (
( setItem ) = > {
if ( options . dotNotation === false ) {
newItem . json [ setItem . name as string ] = setItem . value ;
} else {
set ( newItem . json , setItem . name as string , setItem . value ) ;
}
} ,
) ;
2019-07-26 01:21:31 -07:00
2019-08-09 03:19:28 -07:00
returnData . push ( newItem ) ;
}
return this . prepareOutputData ( returnData ) ;
2020-10-22 06:46:03 -07:00
} ,
2019-08-09 03:19:28 -07:00
} ,
2019-07-26 01:21:31 -07:00
} ,
'n8n-nodes-base.start' : {
2019-08-09 03:19:28 -07:00
sourcePath : '' ,
type : {
description : {
displayName : 'Start' ,
name : 'start' ,
group : [ 'input' ] ,
version : 1 ,
description : 'Starts the workflow execution from this node' ,
defaults : {
name : 'Start' ,
color : '#553399' ,
} ,
inputs : [ ] ,
outputs : [ 'main' ] ,
2020-10-22 06:46:03 -07:00
properties : [ ] ,
2019-07-26 01:21:31 -07:00
} ,
2019-08-09 03:19:28 -07:00
execute ( this : IExecuteFunctions ) : Promise < INodeExecutionData [ ] [ ] > {
const items = this . getInputData ( ) ;
2019-07-26 01:21:31 -07:00
2019-08-09 03:19:28 -07:00
return this . prepareOutputData ( items ) ;
} ,
2019-07-26 01:21:31 -07:00
} ,
} ,
} ;
2021-08-29 11:58:11 -07:00
async init ( nodeTypes : INodeTypeData ) : Promise < void > { }
2019-07-26 01:21:31 -07:00
getAll ( ) : INodeType [ ] {
2021-11-15 02:19:43 -08:00
return Object . values ( this . nodeTypes ) . map ( ( data ) = > NodeHelpers . getVersionedNodeType ( data . type ) ) ;
2019-07-26 01:21:31 -07:00
}
getByName ( nodeType : string ) : INodeType {
2021-09-21 10:38:24 -07:00
return this . getByNameAndVersion ( nodeType ) ;
}
getByNameAndVersion ( nodeType : string , version? : number ) : INodeType {
2021-11-15 02:19:43 -08:00
return NodeHelpers . getVersionedNodeType ( this . nodeTypes [ nodeType ] . type , version ) ;
2019-07-26 01:21:31 -07:00
}
}
let nodeTypesInstance : NodeTypesClass | undefined ;
export function NodeTypes ( ) : NodeTypesClass {
if ( nodeTypesInstance === undefined ) {
nodeTypesInstance = new NodeTypesClass ( ) ;
nodeTypesInstance . init ( { } ) ;
}
return nodeTypesInstance ;
}
2021-08-29 11:58:11 -07:00
export function WorkflowExecuteAdditionalData (
waitPromise : IDeferredPromise < IRun > ,
nodeExecutionOrder : string [ ] ,
) : IWorkflowExecuteAdditionalData {
2019-12-20 10:53:52 -08:00
const hookFunctions = {
nodeExecuteAfter : [
async ( nodeName : string , data : ITaskData ) : Promise < void > = > {
nodeExecutionOrder . push ( nodeName ) ;
} ,
] ,
workflowExecuteAfter : [
async ( fullRunData : IRun ) : Promise < void > = > {
waitPromise . resolve ( fullRunData ) ;
} ,
] ,
} ;
const workflowData : IWorkflowBase = {
name : '' ,
createdAt : new Date ( ) ,
updatedAt : new Date ( ) ,
active : true ,
nodes : [ ] ,
connections : { } ,
} ;
2019-07-26 01:21:31 -07:00
return {
2021-08-20 09:57:30 -07:00
credentialsHelper : new CredentialsHelper ( '' ) ,
2019-12-20 10:53:52 -08:00
hooks : new WorkflowHooks ( hookFunctions , 'trigger' , '1' , workflowData ) ,
2021-08-29 11:58:11 -07:00
executeWorkflow : async ( workflowInfo : IExecuteWorkflowInfo ) : Promise < any > = > { } ,
2021-05-29 11:41:25 -07:00
sendMessageToUI : ( message : string ) = > { } ,
2019-12-20 10:53:52 -08:00
restApiUrl : '' ,
2019-07-26 01:21:31 -07:00
encryptionKey : 'test' ,
timezone : 'America/New_York' ,
webhookBaseUrl : 'webhook' ,
2021-08-21 05:11:32 -07:00
webhookWaitingBaseUrl : 'webhook-waiting' ,
2019-07-26 01:21:31 -07:00
webhookTestBaseUrl : 'webhook-test' ,
} ;
}