mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-05 18:07:27 -08:00
56c4c6991f
* ⬆️ Upgrade TS to 4.3.5
* 👕 Add ESLint configs
* 🎨 Add Prettier config
* 📦 Add deps and commands
* ⚡ Adjust global .editorconfig to new ruleset
* 🔥 Remove unneeded local .editorconfig
* 📦 Update deps in editor-ui
* 🔨 Limit Prettier to only TS files
* ⚡ Add recommended VSCode extensions
* 👕 Fix build
* 🔥 Remove Vue setting from global config
* ⚡ Disable prefer-default-export per feedback
* ✏️ Add forgotten divider
* 👕 Disable no-plusplus
* 👕 Disable class-methods-use-this
* ✏️ Alphabetize overrides
* 👕 Add one-var consecutive override
* ⏪ Revert one-var consecutive override
This reverts commit b9252cf935
.
* 🎨 👕 Lint and format workflow package (#2121)
* 🎨 Format /workflow package
* 👕 Lint /workflow package
* 🎨 Re-format /workflow package
* 👕 Re-lint /workflow package
* ✏️ Fix typo
* ⚡ Consolidate if-checks
* 🔥 Remove prefer-default-export exceptions
* 🔥 Remove no-plusplus exceptions
* 🔥 Remove class-methods-use-this exceptions
* 🎨 👕 Lint and format node-dev package (#2122)
* 🎨 Format /node-dev package
* ⚡ Exclude templates from ESLint config
This keeps the templates consistent with the codebase while preventing lint exceptions from being made part of the templates.
* 👕 Lint /node-dev package
* 🔥 Remove prefer-default-export exceptions
* 🔥 Remove no-plusplus exceptions
* 🎨 👕 Lint and format core package (#2123)
* 🎨 Format /core package
* 👕 Lint /core package
* 🎨 Re-format /core package
* 👕 Re-lint /core package
* 🔥 Remove prefer-default-export exceptions
* 🔥 Remove no-plusplus exceptions
* 🔥 Remove class-methods-use-this exceptions
* 🎨 👕 Lint and format cli package (#2124)
* 🎨 Format /cli package
* 👕 Exclude migrations from linting
* 👕 Lint /cli package
* 🎨 Re-format /cli package
* 👕 Re-lint /cli package
* 👕 Fix build
* 🔥 Remove prefer-default-export exceptions
* ⚡ Update exceptions in ActiveExecutions
* 🔥 Remove no-plusplus exceptions
* 🔥 Remove class-methods-use-this exceptions
* 👕 fix lint issues
* 🔧 use package specific linter, remove tslint command
* 🔨 resolve build issue, sync dependencies
* 🔧 change lint command
Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com>
168 lines
4.7 KiB
TypeScript
168 lines
4.7 KiB
TypeScript
/* eslint-disable import/no-cycle */
|
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
|
/* eslint-disable @typescript-eslint/restrict-template-expressions */
|
|
/* eslint-disable no-param-reassign */
|
|
import {
|
|
INode,
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
IRunExecutionData,
|
|
NodeHelpers,
|
|
WebhookHttpMethod,
|
|
Workflow,
|
|
LoggerProxy as Logger,
|
|
} from 'n8n-workflow';
|
|
|
|
import * as express from 'express';
|
|
|
|
import {
|
|
Db,
|
|
IExecutionResponse,
|
|
IResponseCallbackData,
|
|
IWorkflowDb,
|
|
NodeTypes,
|
|
ResponseHelper,
|
|
WebhookHelpers,
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
WorkflowCredentials,
|
|
WorkflowExecuteAdditionalData,
|
|
} from '.';
|
|
|
|
export class WaitingWebhooks {
|
|
async executeWebhook(
|
|
httpMethod: WebhookHttpMethod,
|
|
fullPath: string,
|
|
req: express.Request,
|
|
res: express.Response,
|
|
): Promise<IResponseCallbackData> {
|
|
Logger.debug(`Received waiting-webhoook "${httpMethod}" for path "${fullPath}"`);
|
|
|
|
// Reset request parameters
|
|
req.params = {};
|
|
|
|
// Remove trailing slash
|
|
if (fullPath.endsWith('/')) {
|
|
fullPath = fullPath.slice(0, -1);
|
|
}
|
|
|
|
const pathParts = fullPath.split('/');
|
|
|
|
const executionId = pathParts.shift();
|
|
const path = pathParts.join('/');
|
|
|
|
const execution = await Db.collections.Execution?.findOne(executionId);
|
|
|
|
if (execution === undefined) {
|
|
throw new ResponseHelper.ResponseError(
|
|
`The execution "${executionId} does not exist.`,
|
|
404,
|
|
404,
|
|
);
|
|
}
|
|
|
|
const fullExecutionData = ResponseHelper.unflattenExecutionData(execution);
|
|
|
|
if (fullExecutionData.finished || fullExecutionData.data.resultData.error) {
|
|
throw new ResponseHelper.ResponseError(
|
|
`The execution "${executionId} has finished already.`,
|
|
409,
|
|
409,
|
|
);
|
|
}
|
|
|
|
return this.startExecution(httpMethod, path, fullExecutionData, req, res);
|
|
}
|
|
|
|
async startExecution(
|
|
httpMethod: WebhookHttpMethod,
|
|
path: string,
|
|
fullExecutionData: IExecutionResponse,
|
|
req: express.Request,
|
|
res: express.Response,
|
|
): Promise<IResponseCallbackData> {
|
|
const executionId = fullExecutionData.id;
|
|
|
|
if (fullExecutionData.finished) {
|
|
throw new Error('The execution did succeed and can so not be started again.');
|
|
}
|
|
|
|
const lastNodeExecuted = fullExecutionData.data.resultData.lastNodeExecuted as string;
|
|
|
|
// Set the node as disabled so that the data does not get executed again as it would result
|
|
// in starting the wait all over again
|
|
fullExecutionData.data.executionData!.nodeExecutionStack[0].node.disabled = true;
|
|
|
|
// Remove waitTill information else the execution would stop
|
|
fullExecutionData.data.waitTill = undefined;
|
|
|
|
// Remove the data of the node execution again else it will display the node as executed twice
|
|
fullExecutionData.data.resultData.runData[lastNodeExecuted].pop();
|
|
|
|
const { workflowData } = fullExecutionData;
|
|
|
|
const nodeTypes = NodeTypes();
|
|
const workflow = new Workflow({
|
|
id: workflowData.id!.toString(),
|
|
name: workflowData.name,
|
|
nodes: workflowData.nodes,
|
|
connections: workflowData.connections,
|
|
active: workflowData.active,
|
|
nodeTypes,
|
|
staticData: workflowData.staticData,
|
|
settings: workflowData.settings,
|
|
});
|
|
|
|
const additionalData = await WorkflowExecuteAdditionalData.getBase();
|
|
|
|
const webhookData = NodeHelpers.getNodeWebhooks(
|
|
workflow,
|
|
workflow.getNode(lastNodeExecuted) as INode,
|
|
additionalData,
|
|
).filter((webhook) => {
|
|
return (
|
|
webhook.httpMethod === httpMethod &&
|
|
webhook.path === path &&
|
|
webhook.webhookDescription.restartWebhook === true
|
|
);
|
|
})[0];
|
|
|
|
if (webhookData === undefined) {
|
|
// If no data got found it means that the execution can not be started via a webhook.
|
|
// Return 404 because we do not want to give any data if the execution exists or not.
|
|
const errorMessage = `The execution "${executionId}" with webhook suffix path "${path}" is not known.`;
|
|
throw new ResponseHelper.ResponseError(errorMessage, 404, 404);
|
|
}
|
|
|
|
const workflowStartNode = workflow.getNode(lastNodeExecuted);
|
|
|
|
if (workflowStartNode === null) {
|
|
throw new ResponseHelper.ResponseError('Could not find node to process webhook.', 404, 404);
|
|
}
|
|
|
|
const runExecutionData = fullExecutionData.data;
|
|
|
|
return new Promise((resolve, reject) => {
|
|
const executionMode = 'webhook';
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
WebhookHelpers.executeWebhook(
|
|
workflow,
|
|
webhookData,
|
|
workflowData as IWorkflowDb,
|
|
workflowStartNode,
|
|
executionMode,
|
|
undefined,
|
|
runExecutionData,
|
|
fullExecutionData.id,
|
|
req,
|
|
res,
|
|
// eslint-disable-next-line consistent-return
|
|
(error: Error | null, data: object) => {
|
|
if (error !== null) {
|
|
return reject(error);
|
|
}
|
|
resolve(data);
|
|
},
|
|
);
|
|
});
|
|
}
|
|
}
|