n8n
Version:
n8n Workflow Automation Tool
123 lines • 5.39 kB
JavaScript
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.WaitingForms = void 0;
const di_1 = require("@n8n/di");
const n8n_workflow_1 = require("n8n-workflow");
const conflict_error_1 = require("../errors/response-errors/conflict.error");
const not_found_error_1 = require("../errors/response-errors/not-found.error");
const waiting_webhooks_1 = require("../webhooks/waiting-webhooks");
let WaitingForms = class WaitingForms extends waiting_webhooks_1.WaitingWebhooks {
constructor() {
super(...arguments);
this.includeForms = true;
}
logReceivedWebhook(method, executionId) {
this.logger.debug(`Received waiting-form "${method}" for execution "${executionId}"`);
}
disableNode(execution, method) {
if (method === 'POST') {
execution.data.executionData.nodeExecutionStack[0].node.disabled = true;
}
}
getWorkflow(execution) {
const { workflowData } = execution;
return new n8n_workflow_1.Workflow({
id: workflowData.id,
name: workflowData.name,
nodes: workflowData.nodes,
connections: workflowData.connections,
active: workflowData.active,
nodeTypes: this.nodeTypes,
staticData: workflowData.staticData,
settings: workflowData.settings,
});
}
findCompletionPage(workflow, runData, lastNodeExecuted) {
const parentNodes = workflow.getParentNodes(lastNodeExecuted);
const lastNode = workflow.nodes[lastNodeExecuted];
if (!lastNode.disabled &&
lastNode.type === n8n_workflow_1.FORM_NODE_TYPE &&
lastNode.parameters.operation === 'completion') {
return lastNodeExecuted;
}
else {
return parentNodes.reverse().find((nodeName) => {
const node = workflow.nodes[nodeName];
return (!node.disabled &&
node.type === n8n_workflow_1.FORM_NODE_TYPE &&
node.parameters.operation === 'completion' &&
runData[nodeName]);
});
}
}
async executeWebhook(req, res) {
const { path: executionId, suffix } = req.params;
this.logReceivedWebhook(req.method, executionId);
req.params = {};
const execution = await this.getExecution(executionId);
if (suffix === n8n_workflow_1.WAITING_FORMS_EXECUTION_STATUS) {
let status = execution?.status ?? 'null';
const { node } = execution?.data.executionData?.nodeExecutionStack[0] ?? {};
if (node && status === 'waiting') {
if (node.type === n8n_workflow_1.FORM_NODE_TYPE) {
status = 'form-waiting';
}
if (node.type === n8n_workflow_1.WAIT_NODE_TYPE && node.parameters.resume === 'form') {
status = 'form-waiting';
}
}
res.send(status);
return { noWebhookResponse: true };
}
if (!execution) {
throw new not_found_error_1.NotFoundError(`The execution "${executionId}" does not exist.`);
}
if (execution.data.resultData.error) {
const message = `The execution "${executionId}" has finished with error.`;
this.logger.debug(message, { error: execution.data.resultData.error });
throw new conflict_error_1.ConflictError(message);
}
if (execution.status === 'running') {
return { noWebhookResponse: true };
}
let lastNodeExecuted = execution.data.resultData.lastNodeExecuted;
if (execution.finished) {
const workflow = this.getWorkflow(execution);
const completionPage = this.findCompletionPage(workflow, execution.data.resultData.runData, lastNodeExecuted);
if (!completionPage) {
res.render('form-trigger-completion', {
title: 'Form Submitted',
message: 'Your response has been recorded',
formTitle: 'Form Submitted',
});
return {
noWebhookResponse: true,
};
}
else {
lastNodeExecuted = completionPage;
}
}
if (execution.mode === 'manual')
execution.data.isTestWebhook = true;
return await this.getWebhookExecutionData({
execution,
req,
res,
lastNodeExecuted,
executionId,
suffix,
});
}
};
exports.WaitingForms = WaitingForms;
exports.WaitingForms = WaitingForms = __decorate([
(0, di_1.Service)()
], WaitingForms);
//# sourceMappingURL=waiting-forms.js.map
;