2019-07-26 01:21:31 -07:00
|
|
|
import { set } from 'lodash';
|
|
|
|
|
|
|
|
import {
|
2020-01-13 18:46:58 -08:00
|
|
|
ICredentialDataDecryptedObject,
|
2020-01-02 15:22:20 -08:00
|
|
|
IExecuteWorkflowInfo,
|
2019-07-26 01:21:31 -07:00
|
|
|
INodeExecutionData,
|
|
|
|
INodeParameters,
|
|
|
|
INodeType,
|
|
|
|
INodeTypes,
|
2019-08-09 03:19:28 -07:00
|
|
|
INodeTypeData,
|
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,
|
2019-12-20 10:53:52 -08:00
|
|
|
WorkflowHooks,
|
2019-07-26 01:21:31 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDeferredPromise,
|
|
|
|
IExecuteFunctions,
|
|
|
|
} from '../src';
|
|
|
|
|
|
|
|
|
|
|
|
class NodeTypesClass implements INodeTypes {
|
|
|
|
|
2019-08-09 03:19:28 -07:00
|
|
|
nodeTypes: INodeTypeData = {
|
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',
|
|
|
|
description: 'Combines data of both inputs. The output will contain items of input 1 and input 2.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Pass-through',
|
|
|
|
value: 'passThrough',
|
|
|
|
description: 'Passes through data of one input. The output will conain only items of the defined input.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Wait',
|
|
|
|
value: 'wait',
|
|
|
|
description: 'Waits till data of both inputs is available and will then output a single empty item.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'append',
|
|
|
|
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: {
|
|
|
|
mode: [
|
|
|
|
'passThrough'
|
|
|
|
],
|
|
|
|
},
|
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.',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
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];
|
|
|
|
}
|
|
|
|
},
|
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,
|
|
|
|
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: [
|
|
|
|
{
|
|
|
|
name: 'number',
|
|
|
|
displayName: 'Number',
|
|
|
|
values: [
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
default: 'propertyName',
|
|
|
|
description: 'Name of the property to write data to.<br />Supports dot-notation.<br />Example: "data.person[0].name"',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Value',
|
|
|
|
name: 'value',
|
|
|
|
type: 'number',
|
|
|
|
default: 0,
|
|
|
|
description: 'The number value to write in the property.',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
|
|
|
|
|
|
const returnData: INodeExecutionData[] = [];
|
|
|
|
let item: INodeExecutionData;
|
|
|
|
for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
|
|
|
|
item = items[itemIndex];
|
|
|
|
|
|
|
|
const newItem: INodeExecutionData = {
|
|
|
|
json: JSON.parse(JSON.stringify(item.json)),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Add number values
|
|
|
|
(this.getNodeParameter('values.number', itemIndex, []) as INodeParameters[]).forEach((setItem) => {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
},
|
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'],
|
|
|
|
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
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2019-08-09 03:19:28 -07:00
|
|
|
async init(nodeTypes: INodeTypeData): Promise<void> { }
|
2019-07-26 01:21:31 -07:00
|
|
|
|
|
|
|
getAll(): INodeType[] {
|
2019-08-09 03:19:28 -07:00
|
|
|
return Object.values(this.nodeTypes).map((data) => data.type);
|
2019-07-26 01:21:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
getByName(nodeType: string): INodeType {
|
2019-08-09 03:19:28 -07:00
|
|
|
return this.nodeTypes[nodeType].type;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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 {
|
|
|
|
credentials: {},
|
2019-12-20 10:53:52 -08:00
|
|
|
hooks: new WorkflowHooks(hookFunctions, 'trigger', '1', workflowData),
|
2020-01-02 15:22:20 -08:00
|
|
|
executeWorkflow: async (workflowInfo: IExecuteWorkflowInfo): Promise<any> => {}, // tslint:disable-line:no-any
|
2019-12-20 10:53:52 -08:00
|
|
|
restApiUrl: '',
|
2019-07-26 01:21:31 -07:00
|
|
|
encryptionKey: 'test',
|
|
|
|
timezone: 'America/New_York',
|
2020-01-13 18:46:58 -08:00
|
|
|
updateCredentials: async (name: string, type: string, data: ICredentialDataDecryptedObject, encryptionKey: string): Promise<void> => {},
|
2019-07-26 01:21:31 -07:00
|
|
|
webhookBaseUrl: 'webhook',
|
|
|
|
webhookTestBaseUrl: 'webhook-test',
|
|
|
|
};
|
|
|
|
}
|