2019-06-23 03:35:23 -07:00
|
|
|
import * as express from 'express';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IResponseCallbackData,
|
|
|
|
Push,
|
|
|
|
ResponseHelper,
|
|
|
|
WebhookHelpers,
|
|
|
|
IWorkflowDb,
|
|
|
|
} from './';
|
|
|
|
|
|
|
|
import {
|
|
|
|
ActiveWebhooks,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IWebhookData,
|
|
|
|
IWorkflowExecuteAdditionalData,
|
|
|
|
WebhookHttpMethod,
|
|
|
|
Workflow,
|
|
|
|
WorkflowExecuteMode,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export class TestWebhooks {
|
|
|
|
|
|
|
|
private testWebhookData: {
|
|
|
|
[key: string]: {
|
|
|
|
sessionId?: string;
|
|
|
|
timeout: NodeJS.Timeout,
|
|
|
|
workflowData: IWorkflowDb;
|
|
|
|
};
|
|
|
|
} = {};
|
|
|
|
private activeWebhooks: ActiveWebhooks | null = null;
|
|
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.activeWebhooks = new ActiveWebhooks();
|
|
|
|
this.activeWebhooks.testWebhooks = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes a test-webhook and returns the data. It also makes sure that the
|
|
|
|
* data gets additionally send to the UI. After the request got handled it
|
|
|
|
* automatically remove the test-webhook.
|
|
|
|
*
|
|
|
|
* @param {WebhookHttpMethod} httpMethod
|
|
|
|
* @param {string} path
|
|
|
|
* @param {express.Request} request
|
|
|
|
* @param {express.Response} response
|
|
|
|
* @returns {Promise<object>}
|
|
|
|
* @memberof TestWebhooks
|
|
|
|
*/
|
|
|
|
async callTestWebhook(httpMethod: WebhookHttpMethod, path: string, request: express.Request, response: express.Response): Promise<IResponseCallbackData> {
|
|
|
|
const webhookData: IWebhookData | undefined = this.activeWebhooks!.get(httpMethod, path);
|
|
|
|
|
|
|
|
if (webhookData === undefined) {
|
|
|
|
// The requested webhook is not registred
|
2019-08-28 08:16:09 -07:00
|
|
|
throw new ResponseHelper.ResponseError('The requested webhook is not registred.', 404, 404);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the node which has the webhook defined to know where to start from and to
|
|
|
|
// get additional data
|
|
|
|
const workflowStartNode = webhookData.workflow.getNode(webhookData.node);
|
|
|
|
if (workflowStartNode === null) {
|
2019-08-28 08:16:09 -07:00
|
|
|
throw new ResponseHelper.ResponseError('Could not find node to process webhook.', 404, 404);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const webhookKey = this.activeWebhooks!.getWebhookKey(webhookData.httpMethod, webhookData.path);
|
|
|
|
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
|
|
try {
|
|
|
|
const executionMode = 'manual';
|
|
|
|
|
|
|
|
const executionId = await WebhookHelpers.executeWebhook(webhookData, this.testWebhookData[webhookKey].workflowData, workflowStartNode, executionMode, this.testWebhookData[webhookKey].sessionId, request, response, (error: Error | null, data: IResponseCallbackData) => {
|
|
|
|
if (error !== null) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
resolve(data);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (executionId === undefined) {
|
|
|
|
// The workflow did not run as the request was probably setup related
|
|
|
|
// or a ping so do not resolve the promise and wait for the real webhook
|
|
|
|
// request instead.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inform editor-ui that webhook got received
|
|
|
|
if (this.testWebhookData[webhookKey].sessionId !== undefined) {
|
2019-08-28 06:28:47 -07:00
|
|
|
const pushInstance = Push.getInstance();
|
2019-07-26 05:17:00 -07:00
|
|
|
pushInstance.send('testWebhookReceived', { workflowId: webhookData.workflow.id, executionId }, this.testWebhookData[webhookKey].sessionId!);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
// Delete webhook also if an error is thrown
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the webhook
|
|
|
|
clearTimeout(this.testWebhookData[webhookKey].timeout);
|
|
|
|
delete this.testWebhookData[webhookKey];
|
|
|
|
this.activeWebhooks!.removeByWorkflowId(webhookData.workflow.id!.toString());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if it has to wait for webhook data to execute the workflow. If yes it waits
|
|
|
|
* for it and resolves with the result of the workflow if not it simply resolves
|
|
|
|
* with undefined
|
|
|
|
*
|
|
|
|
* @param {IWorkflowDb} workflowData
|
|
|
|
* @param {Workflow} workflow
|
|
|
|
* @returns {(Promise<IExecutionDb | undefined>)}
|
|
|
|
* @memberof TestWebhooks
|
|
|
|
*/
|
|
|
|
async needsWebhookData(workflowData: IWorkflowDb, workflow: Workflow, additionalData: IWorkflowExecuteAdditionalData, mode: WorkflowExecuteMode, sessionId?: string, destinationNode?: string): Promise<boolean> {
|
|
|
|
const webhooks = WebhookHelpers.getWorkflowWebhooks(workflow, additionalData, destinationNode);
|
|
|
|
|
|
|
|
if (webhooks.length === 0) {
|
|
|
|
// No Webhooks found
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove test-webhooks automatically if they do not get called (after 120 seconds)
|
|
|
|
const timeout = setTimeout(() => {
|
|
|
|
this.cancelTestWebhook(workflowData.id.toString());
|
|
|
|
}, 120000);
|
|
|
|
|
|
|
|
let key: string;
|
|
|
|
for (const webhookData of webhooks) {
|
|
|
|
key = this.activeWebhooks!.getWebhookKey(webhookData.httpMethod, webhookData.path);
|
|
|
|
this.testWebhookData[key] = {
|
|
|
|
sessionId,
|
|
|
|
timeout,
|
|
|
|
workflowData,
|
|
|
|
};
|
2019-07-12 02:31:54 -07:00
|
|
|
await this.activeWebhooks!.add(webhookData, mode);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes a test webhook of the workflow with the given id
|
|
|
|
*
|
|
|
|
* @param {string} workflowId
|
|
|
|
* @returns {boolean}
|
|
|
|
* @memberof TestWebhooks
|
|
|
|
*/
|
|
|
|
cancelTestWebhook(workflowId: string): boolean {
|
|
|
|
let foundWebhook = false;
|
|
|
|
for (const webhookKey of Object.keys(this.testWebhookData)) {
|
|
|
|
const webhookData = this.testWebhookData[webhookKey];
|
|
|
|
|
|
|
|
if (webhookData.workflowData.id.toString() !== workflowId) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
foundWebhook = true;
|
|
|
|
|
|
|
|
clearTimeout(this.testWebhookData[webhookKey].timeout);
|
|
|
|
|
|
|
|
// Inform editor-ui that webhook got received
|
|
|
|
if (this.testWebhookData[webhookKey].sessionId !== undefined) {
|
|
|
|
try {
|
2019-08-28 06:28:47 -07:00
|
|
|
const pushInstance = Push.getInstance();
|
2019-07-24 05:25:30 -07:00
|
|
|
pushInstance.send('testWebhookDeleted', { workflowId }, this.testWebhookData[webhookKey].sessionId!);
|
2019-06-23 03:35:23 -07:00
|
|
|
} catch (error) {
|
|
|
|
// Could not inform editor, probably is not connected anymore. So sipmly go on.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the webhook
|
|
|
|
delete this.testWebhookData[webhookKey];
|
|
|
|
this.activeWebhooks!.removeByWorkflowId(workflowId);
|
|
|
|
}
|
|
|
|
|
|
|
|
return foundWebhook;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes all the currently active test webhooks
|
|
|
|
*/
|
|
|
|
async removeAll(): Promise<void> {
|
|
|
|
if (this.activeWebhooks === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.activeWebhooks.removeAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let testWebhooksInstance: TestWebhooks | undefined;
|
|
|
|
|
|
|
|
export function getInstance(): TestWebhooks {
|
|
|
|
if (testWebhooksInstance === undefined) {
|
|
|
|
testWebhooksInstance = new TestWebhooks();
|
|
|
|
}
|
|
|
|
|
|
|
|
return testWebhooksInstance;
|
|
|
|
}
|