mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
⚡ Allow webhook processes to wake up waiting executions (#2153)
This commit is contained in:
parent
57025a7b79
commit
d17ab8e9e5
|
@ -118,7 +118,6 @@ import {
|
||||||
Push,
|
Push,
|
||||||
ResponseHelper,
|
ResponseHelper,
|
||||||
TestWebhooks,
|
TestWebhooks,
|
||||||
WaitingWebhooks,
|
|
||||||
WaitTracker,
|
WaitTracker,
|
||||||
WaitTrackerClass,
|
WaitTrackerClass,
|
||||||
WebhookHelpers,
|
WebhookHelpers,
|
||||||
|
@ -2487,90 +2486,6 @@ class App {
|
||||||
WebhookServer.registerProductionWebhooks.apply(this);
|
WebhookServer.registerProductionWebhooks.apply(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ----------------------------------------
|
|
||||||
// Waiting Webhooks
|
|
||||||
// ----------------------------------------
|
|
||||||
|
|
||||||
const waitingWebhooks = new WaitingWebhooks();
|
|
||||||
|
|
||||||
// HEAD webhook-waiting requests
|
|
||||||
this.app.head(
|
|
||||||
`/${this.endpointWebhookWaiting}/*`,
|
|
||||||
async (req: express.Request, res: express.Response) => {
|
|
||||||
// Cut away the "/webhook-waiting/" to get the registred part of the url
|
|
||||||
const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(
|
|
||||||
this.endpointWebhookWaiting.length + 2,
|
|
||||||
);
|
|
||||||
|
|
||||||
let response;
|
|
||||||
try {
|
|
||||||
response = await waitingWebhooks.executeWebhook('HEAD', requestUrl, req, res);
|
|
||||||
} catch (error) {
|
|
||||||
ResponseHelper.sendErrorResponse(res, error);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (response.noWebhookResponse === true) {
|
|
||||||
// Nothing else to do as the response got already sent
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ResponseHelper.sendSuccessResponse(res, response.data, true, response.responseCode);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// GET webhook-waiting requests
|
|
||||||
this.app.get(
|
|
||||||
`/${this.endpointWebhookWaiting}/*`,
|
|
||||||
async (req: express.Request, res: express.Response) => {
|
|
||||||
// Cut away the "/webhook-waiting/" to get the registred part of the url
|
|
||||||
const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(
|
|
||||||
this.endpointWebhookWaiting.length + 2,
|
|
||||||
);
|
|
||||||
|
|
||||||
let response;
|
|
||||||
try {
|
|
||||||
response = await waitingWebhooks.executeWebhook('GET', requestUrl, req, res);
|
|
||||||
} catch (error) {
|
|
||||||
ResponseHelper.sendErrorResponse(res, error);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (response.noWebhookResponse === true) {
|
|
||||||
// Nothing else to do as the response got already sent
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ResponseHelper.sendSuccessResponse(res, response.data, true, response.responseCode);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// POST webhook-waiting requests
|
|
||||||
this.app.post(
|
|
||||||
`/${this.endpointWebhookWaiting}/*`,
|
|
||||||
async (req: express.Request, res: express.Response) => {
|
|
||||||
// Cut away the "/webhook-waiting/" to get the registred part of the url
|
|
||||||
const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(
|
|
||||||
this.endpointWebhookWaiting.length + 2,
|
|
||||||
);
|
|
||||||
|
|
||||||
let response;
|
|
||||||
try {
|
|
||||||
response = await waitingWebhooks.executeWebhook('POST', requestUrl, req, res);
|
|
||||||
} catch (error) {
|
|
||||||
ResponseHelper.sendErrorResponse(res, error);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (response.noWebhookResponse === true) {
|
|
||||||
// Nothing else to do as the response got already sent
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ResponseHelper.sendSuccessResponse(res, response.data, true, response.responseCode);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// HEAD webhook requests (test for UI)
|
// HEAD webhook requests (test for UI)
|
||||||
this.app.head(
|
this.app.head(
|
||||||
`/${this.endpointWebhookTest}/*`,
|
`/${this.endpointWebhookTest}/*`,
|
||||||
|
|
|
@ -27,6 +27,7 @@ import {
|
||||||
IExternalHooksClass,
|
IExternalHooksClass,
|
||||||
IPackageVersions,
|
IPackageVersions,
|
||||||
ResponseHelper,
|
ResponseHelper,
|
||||||
|
WaitingWebhooks,
|
||||||
} from '.';
|
} from '.';
|
||||||
|
|
||||||
import * as config from '../config';
|
import * as config from '../config';
|
||||||
|
@ -143,6 +144,90 @@ export function registerProductionWebhooks() {
|
||||||
ResponseHelper.sendSuccessResponse(res, response.data, true, response.responseCode);
|
ResponseHelper.sendSuccessResponse(res, response.data, true, response.responseCode);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// ----------------------------------------
|
||||||
|
// Waiting Webhooks
|
||||||
|
// ----------------------------------------
|
||||||
|
|
||||||
|
const waitingWebhooks = new WaitingWebhooks();
|
||||||
|
|
||||||
|
// HEAD webhook-waiting requests
|
||||||
|
this.app.head(
|
||||||
|
`/${this.endpointWebhookWaiting}/*`,
|
||||||
|
async (req: express.Request, res: express.Response) => {
|
||||||
|
// Cut away the "/webhook-waiting/" to get the registred part of the url
|
||||||
|
const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(
|
||||||
|
this.endpointWebhookWaiting.length + 2,
|
||||||
|
);
|
||||||
|
|
||||||
|
let response;
|
||||||
|
try {
|
||||||
|
response = await waitingWebhooks.executeWebhook('HEAD', requestUrl, req, res);
|
||||||
|
} catch (error) {
|
||||||
|
ResponseHelper.sendErrorResponse(res, error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (response.noWebhookResponse === true) {
|
||||||
|
// Nothing else to do as the response got already sent
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ResponseHelper.sendSuccessResponse(res, response.data, true, response.responseCode);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
// GET webhook-waiting requests
|
||||||
|
this.app.get(
|
||||||
|
`/${this.endpointWebhookWaiting}/*`,
|
||||||
|
async (req: express.Request, res: express.Response) => {
|
||||||
|
// Cut away the "/webhook-waiting/" to get the registred part of the url
|
||||||
|
const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(
|
||||||
|
this.endpointWebhookWaiting.length + 2,
|
||||||
|
);
|
||||||
|
|
||||||
|
let response;
|
||||||
|
try {
|
||||||
|
response = await waitingWebhooks.executeWebhook('GET', requestUrl, req, res);
|
||||||
|
} catch (error) {
|
||||||
|
ResponseHelper.sendErrorResponse(res, error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (response.noWebhookResponse === true) {
|
||||||
|
// Nothing else to do as the response got already sent
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ResponseHelper.sendSuccessResponse(res, response.data, true, response.responseCode);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
// POST webhook-waiting requests
|
||||||
|
this.app.post(
|
||||||
|
`/${this.endpointWebhookWaiting}/*`,
|
||||||
|
async (req: express.Request, res: express.Response) => {
|
||||||
|
// Cut away the "/webhook-waiting/" to get the registred part of the url
|
||||||
|
const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(
|
||||||
|
this.endpointWebhookWaiting.length + 2,
|
||||||
|
);
|
||||||
|
|
||||||
|
let response;
|
||||||
|
try {
|
||||||
|
response = await waitingWebhooks.executeWebhook('POST', requestUrl, req, res);
|
||||||
|
} catch (error) {
|
||||||
|
ResponseHelper.sendErrorResponse(res, error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (response.noWebhookResponse === true) {
|
||||||
|
// Nothing else to do as the response got already sent
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ResponseHelper.sendSuccessResponse(res, response.data, true, response.responseCode);
|
||||||
|
},
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
class App {
|
class App {
|
||||||
|
@ -152,6 +237,8 @@ class App {
|
||||||
|
|
||||||
endpointWebhook: string;
|
endpointWebhook: string;
|
||||||
|
|
||||||
|
endpointWebhookWaiting: string;
|
||||||
|
|
||||||
endpointPresetCredentials: string;
|
endpointPresetCredentials: string;
|
||||||
|
|
||||||
externalHooks: IExternalHooksClass;
|
externalHooks: IExternalHooksClass;
|
||||||
|
@ -186,6 +273,7 @@ class App {
|
||||||
this.app = express();
|
this.app = express();
|
||||||
|
|
||||||
this.endpointWebhook = config.get('endpoints.webhook') as string;
|
this.endpointWebhook = config.get('endpoints.webhook') as string;
|
||||||
|
this.endpointWebhookWaiting = config.get('endpoints.webhookWaiting') as string;
|
||||||
this.saveDataErrorExecution = config.get('executions.saveDataOnError') as string;
|
this.saveDataErrorExecution = config.get('executions.saveDataOnError') as string;
|
||||||
this.saveDataSuccessExecution = config.get('executions.saveDataOnSuccess') as string;
|
this.saveDataSuccessExecution = config.get('executions.saveDataOnSuccess') as string;
|
||||||
this.saveManualExecutions = config.get('executions.saveDataManualExecutions') as boolean;
|
this.saveManualExecutions = config.get('executions.saveDataManualExecutions') as boolean;
|
||||||
|
|
Loading…
Reference in a new issue