2019-08-08 11:38:25 -07:00
|
|
|
import {
|
|
|
|
ActiveExecutions,
|
|
|
|
IProcessMessageDataHook,
|
|
|
|
ITransferNodeTypes,
|
|
|
|
IWorkflowExecutionDataProcess,
|
|
|
|
IWorkflowExecutionDataProcessWithExecution,
|
2020-01-17 17:34:31 -08:00
|
|
|
NodeTypes,
|
2019-08-08 11:38:25 -07:00
|
|
|
Push,
|
|
|
|
WorkflowExecuteAdditionalData,
|
2019-10-14 22:36:53 -07:00
|
|
|
WorkflowHelpers,
|
2019-08-08 11:38:25 -07:00
|
|
|
} from './';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IProcessMessage,
|
2020-01-17 17:34:31 -08:00
|
|
|
WorkflowExecute,
|
2019-08-08 11:38:25 -07:00
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IExecutionError,
|
|
|
|
IRun,
|
2020-01-17 17:34:31 -08:00
|
|
|
Workflow,
|
2019-12-19 14:07:55 -08:00
|
|
|
WorkflowHooks,
|
2019-08-08 11:38:25 -07:00
|
|
|
WorkflowExecuteMode,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2020-01-17 17:34:31 -08:00
|
|
|
import * as config from '../config';
|
|
|
|
import * as PCancelable from 'p-cancelable';
|
2019-08-09 04:12:00 -07:00
|
|
|
import { join as pathJoin } from 'path';
|
2019-08-08 11:38:25 -07:00
|
|
|
import { fork } from 'child_process';
|
|
|
|
|
|
|
|
|
|
|
|
export class WorkflowRunner {
|
|
|
|
activeExecutions: ActiveExecutions.ActiveExecutions;
|
|
|
|
push: Push.Push;
|
|
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.push = Push.getInstance();
|
|
|
|
this.activeExecutions = ActiveExecutions.getInstance();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The process did send a hook message so execute the appropiate hook
|
|
|
|
*
|
2019-12-19 14:07:55 -08:00
|
|
|
* @param {WorkflowHooks} workflowHooks
|
2019-08-08 11:38:25 -07:00
|
|
|
* @param {IProcessMessageDataHook} hookData
|
|
|
|
* @memberof WorkflowRunner
|
|
|
|
*/
|
2019-12-19 14:07:55 -08:00
|
|
|
processHookMessage(workflowHooks: WorkflowHooks, hookData: IProcessMessageDataHook) {
|
|
|
|
workflowHooks.executeHookFunctions(hookData.hook, hookData.parameters);
|
2019-08-08 11:38:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The process did error
|
|
|
|
*
|
|
|
|
* @param {IExecutionError} error
|
|
|
|
* @param {Date} startedAt
|
|
|
|
* @param {WorkflowExecuteMode} executionMode
|
|
|
|
* @param {string} executionId
|
|
|
|
* @memberof WorkflowRunner
|
|
|
|
*/
|
|
|
|
processError(error: IExecutionError, startedAt: Date, executionMode: WorkflowExecuteMode, executionId: string) {
|
|
|
|
const fullRunData: IRun = {
|
|
|
|
data: {
|
|
|
|
resultData: {
|
|
|
|
error,
|
|
|
|
runData: {},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
finished: false,
|
|
|
|
mode: executionMode,
|
|
|
|
startedAt,
|
|
|
|
stoppedAt: new Date(),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Remove from active execution with empty data. That will
|
|
|
|
// set the execution to failed.
|
|
|
|
this.activeExecutions.remove(executionId, fullRunData);
|
|
|
|
|
|
|
|
// Also send to Editor UI
|
2019-12-19 14:07:55 -08:00
|
|
|
WorkflowExecuteAdditionalData.pushExecutionFinished(executionMode, fullRunData, executionId);
|
2019-08-08 11:38:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-17 17:34:31 -08:00
|
|
|
* Run the workflow
|
2019-08-08 11:38:25 -07:00
|
|
|
*
|
|
|
|
* @param {IWorkflowExecutionDataProcess} data
|
2019-10-14 22:36:53 -07:00
|
|
|
* @param {boolean} [loadStaticData] If set will the static data be loaded from
|
|
|
|
* the workflow and added to input data
|
2019-08-08 11:38:25 -07:00
|
|
|
* @returns {Promise<string>}
|
|
|
|
* @memberof WorkflowRunner
|
|
|
|
*/
|
2019-10-14 22:36:53 -07:00
|
|
|
async run(data: IWorkflowExecutionDataProcess, loadStaticData?: boolean): Promise<string> {
|
2020-01-17 17:49:31 -08:00
|
|
|
const executionsProcess = config.get('executions.process') as string;
|
|
|
|
if (executionsProcess === 'main') {
|
|
|
|
return this.runMainProcess(data, loadStaticData);
|
2020-01-17 17:34:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return this.runSubprocess(data, loadStaticData);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run the workflow in current process
|
|
|
|
*
|
|
|
|
* @param {IWorkflowExecutionDataProcess} data
|
|
|
|
* @param {boolean} [loadStaticData] If set will the static data be loaded from
|
|
|
|
* the workflow and added to input data
|
|
|
|
* @returns {Promise<string>}
|
|
|
|
* @memberof WorkflowRunner
|
|
|
|
*/
|
2020-01-17 17:49:31 -08:00
|
|
|
async runMainProcess(data: IWorkflowExecutionDataProcess, loadStaticData?: boolean): Promise<string> {
|
2020-01-17 17:34:31 -08:00
|
|
|
if (loadStaticData === true && data.workflowData.id) {
|
|
|
|
data.workflowData.staticData = await WorkflowHelpers.getStaticDataById(data.workflowData.id as string);
|
|
|
|
}
|
|
|
|
|
|
|
|
const nodeTypes = NodeTypes();
|
|
|
|
|
2020-02-15 17:07:01 -08:00
|
|
|
const workflow = new Workflow({ id: data.workflowData.id as string | undefined, name: data.workflowData.name, nodes: data.workflowData!.nodes, connections: data.workflowData!.connections, active: data.workflowData!.active, nodeTypes, staticData: data.workflowData!.staticData });
|
2020-01-17 17:34:31 -08:00
|
|
|
const additionalData = await WorkflowExecuteAdditionalData.getBase(data.credentials);
|
|
|
|
|
|
|
|
// Register the active execution
|
|
|
|
const executionId = this.activeExecutions.add(data, undefined);
|
|
|
|
|
|
|
|
additionalData.hooks = WorkflowExecuteAdditionalData.getWorkflowHooksMain(data, executionId);
|
|
|
|
|
|
|
|
let workflowExecution: PCancelable<IRun>;
|
|
|
|
if (data.executionData !== undefined) {
|
|
|
|
const workflowExecute = new WorkflowExecute(additionalData, data.executionMode, data.executionData);
|
|
|
|
workflowExecution = workflowExecute.processRunExecutionData(workflow);
|
|
|
|
} else if (data.runData === undefined || data.startNodes === undefined || data.startNodes.length === 0 || data.destinationNode === undefined) {
|
|
|
|
// Execute all nodes
|
|
|
|
|
|
|
|
// Can execute without webhook so go on
|
|
|
|
const workflowExecute = new WorkflowExecute(additionalData, data.executionMode);
|
|
|
|
workflowExecution = workflowExecute.run(workflow, undefined, data.destinationNode);
|
|
|
|
} else {
|
|
|
|
// Execute only the nodes between start and destination nodes
|
|
|
|
const workflowExecute = new WorkflowExecute(additionalData, data.executionMode);
|
|
|
|
workflowExecution = workflowExecute.runPartialWorkflow(workflow, data.runData, data.startNodes, data.destinationNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.activeExecutions.attachWorkflowExecution(executionId, workflowExecution);
|
|
|
|
|
2020-04-29 10:33:03 -07:00
|
|
|
workflowExecution.then((fullRunData) => {
|
|
|
|
this.activeExecutions.remove(executionId, fullRunData);
|
|
|
|
});
|
|
|
|
|
2020-01-17 17:34:31 -08:00
|
|
|
return executionId;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run the workflow
|
|
|
|
*
|
|
|
|
* @param {IWorkflowExecutionDataProcess} data
|
|
|
|
* @param {boolean} [loadStaticData] If set will the static data be loaded from
|
|
|
|
* the workflow and added to input data
|
|
|
|
* @returns {Promise<string>}
|
|
|
|
* @memberof WorkflowRunner
|
|
|
|
*/
|
|
|
|
async runSubprocess(data: IWorkflowExecutionDataProcess, loadStaticData?: boolean): Promise<string> {
|
2019-08-08 11:38:25 -07:00
|
|
|
const startedAt = new Date();
|
2019-08-09 04:12:00 -07:00
|
|
|
const subprocess = fork(pathJoin(__dirname, 'WorkflowRunnerProcess.js'));
|
2019-08-08 11:38:25 -07:00
|
|
|
|
2019-10-14 22:36:53 -07:00
|
|
|
if (loadStaticData === true && data.workflowData.id) {
|
|
|
|
data.workflowData.staticData = await WorkflowHelpers.getStaticDataById(data.workflowData.id as string);
|
|
|
|
}
|
|
|
|
|
2019-08-08 11:38:25 -07:00
|
|
|
// Register the active execution
|
2020-01-17 17:34:31 -08:00
|
|
|
const executionId = this.activeExecutions.add(data, subprocess);
|
2019-08-08 11:38:25 -07:00
|
|
|
|
2019-12-19 14:07:55 -08:00
|
|
|
// Check if workflow contains a "executeWorkflow" Node as in this
|
|
|
|
// case we can not know which nodeTypes will be needed and so have
|
|
|
|
// to load all of them in the workflowRunnerProcess
|
|
|
|
let loadAllNodeTypes = false;
|
|
|
|
for (const node of data.workflowData.nodes) {
|
|
|
|
if (node.type === 'n8n-nodes-base.executeWorkflow') {
|
|
|
|
loadAllNodeTypes = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let nodeTypeData: ITransferNodeTypes;
|
|
|
|
if (loadAllNodeTypes === true) {
|
|
|
|
// Supply all nodeTypes
|
|
|
|
nodeTypeData = WorkflowHelpers.getAllNodeTypeData();
|
|
|
|
} else {
|
|
|
|
// Supply only nodeTypes which the workflow needs
|
|
|
|
nodeTypeData = WorkflowHelpers.getNodeTypeData(data.workflowData.nodes);
|
|
|
|
}
|
2019-08-08 11:38:25 -07:00
|
|
|
|
|
|
|
(data as unknown as IWorkflowExecutionDataProcessWithExecution).executionId = executionId;
|
|
|
|
(data as unknown as IWorkflowExecutionDataProcessWithExecution).nodeTypeData = nodeTypeData;
|
|
|
|
|
2019-12-19 14:07:55 -08:00
|
|
|
const workflowHooks = WorkflowExecuteAdditionalData.getWorkflowHooksMain(data, executionId);
|
2019-08-08 11:38:25 -07:00
|
|
|
|
|
|
|
// Send all data to subprocess it needs to run the workflow
|
|
|
|
subprocess.send({ type: 'startWorkflow', data } as IProcessMessage);
|
|
|
|
|
|
|
|
// Listen to data from the subprocess
|
|
|
|
subprocess.on('message', (message: IProcessMessage) => {
|
|
|
|
if (message.type === 'end') {
|
|
|
|
this.activeExecutions.remove(executionId!, message.data.runData);
|
|
|
|
} else if (message.type === 'processError') {
|
|
|
|
|
|
|
|
const executionError = message.data.executionError as IExecutionError;
|
|
|
|
|
|
|
|
this.processError(executionError, startedAt, data.executionMode, executionId);
|
|
|
|
|
|
|
|
} else if (message.type === 'processHook') {
|
2019-12-19 14:07:55 -08:00
|
|
|
this.processHookMessage(workflowHooks, message.data as IProcessMessageDataHook);
|
2019-08-08 11:38:25 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Also get informed when the processes does exit especially when it did crash
|
|
|
|
subprocess.on('exit', (code, signal) => {
|
|
|
|
if (code !== 0) {
|
|
|
|
// Process did exit with error code, so something went wrong.
|
|
|
|
const executionError = {
|
|
|
|
message: 'Workflow execution process did crash for an unknown reason!',
|
|
|
|
} as IExecutionError;
|
|
|
|
|
|
|
|
this.processError(executionError, startedAt, data.executionMode, executionId);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return executionId;
|
|
|
|
}
|
|
|
|
}
|