mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
parent
cec264f8f4
commit
04cf86369d
|
@ -187,12 +187,13 @@ export class PipedriveTrigger implements INodeType {
|
||||||
webhookMethods = {
|
webhookMethods = {
|
||||||
default: {
|
default: {
|
||||||
async checkExists(this: IHookFunctions): Promise<boolean> {
|
async checkExists(this: IHookFunctions): Promise<boolean> {
|
||||||
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
||||||
|
|
||||||
const webhookData = this.getWorkflowStaticData('node');
|
const webhookData = this.getWorkflowStaticData('node');
|
||||||
|
|
||||||
if (webhookData.webhookId === undefined) {
|
const eventAction = this.getNodeParameter('action') as string;
|
||||||
// No webhook id is set so no webhook can exist
|
|
||||||
return false;
|
const eventObject = this.getNodeParameter('object') as string;
|
||||||
}
|
|
||||||
|
|
||||||
// Webhook got created before so check if it still exists
|
// Webhook got created before so check if it still exists
|
||||||
const endpoint = `/webhooks`;
|
const endpoint = `/webhooks`;
|
||||||
|
@ -204,8 +205,11 @@ export class PipedriveTrigger implements INodeType {
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const existingData of responseData.data) {
|
for (const existingData of responseData.data) {
|
||||||
if (existingData.id === webhookData.webhookId) {
|
if (existingData.subscription_url === webhookUrl
|
||||||
|
&& existingData.event_action === eventAction
|
||||||
|
&& existingData.event_object === eventObject) {
|
||||||
// The webhook exists already
|
// The webhook exists already
|
||||||
|
webhookData.webhookId = existingData.id;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue