2019-07-09 23:14:40 -07:00
|
|
|
import {
|
|
|
|
IHookFunctions,
|
|
|
|
IWebhookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
INodeType,
|
2020-10-01 05:01:39 -07:00
|
|
|
INodeTypeDescription,
|
2019-10-11 04:02:44 -07:00
|
|
|
IWebhookResponseData,
|
2019-07-09 23:14:40 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
pipedriveApiRequest,
|
|
|
|
} from './GenericFunctions';
|
|
|
|
|
|
|
|
import * as basicAuth from 'basic-auth';
|
|
|
|
|
2020-07-23 13:51:05 -07:00
|
|
|
import {
|
|
|
|
Response,
|
|
|
|
} from 'express';
|
2019-07-09 23:14:40 -07:00
|
|
|
|
|
|
|
function authorizationError(resp: Response, realm: string, responseCode: number, message?: string) {
|
|
|
|
if (message === undefined) {
|
|
|
|
message = 'Authorization problem!';
|
|
|
|
if (responseCode === 401) {
|
|
|
|
message = 'Authorization is required!';
|
|
|
|
} else if (responseCode === 403) {
|
|
|
|
message = 'Authorization data is wrong!';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resp.writeHead(responseCode, { 'WWW-Authenticate': `Basic realm="${realm}"` });
|
|
|
|
resp.end(message);
|
|
|
|
return {
|
|
|
|
noWebhookResponse: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export class PipedriveTrigger implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'Pipedrive Trigger',
|
|
|
|
name: 'pipedriveTrigger',
|
2021-06-12 12:00:37 -07:00
|
|
|
icon: 'file:pipedrive.svg',
|
2019-07-09 23:14:40 -07:00
|
|
|
group: ['trigger'],
|
|
|
|
version: 1,
|
2021-05-29 11:50:41 -07:00
|
|
|
description: 'Starts the workflow when Pipedrive events occur.',
|
2019-07-09 23:14:40 -07:00
|
|
|
defaults: {
|
|
|
|
name: 'Pipedrive Trigger',
|
|
|
|
color: '#559922',
|
|
|
|
},
|
|
|
|
inputs: [],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'pipedriveApi',
|
|
|
|
required: true,
|
2020-11-10 12:27:20 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
authentication: [
|
|
|
|
'apiToken',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-07-09 23:14:40 -07:00
|
|
|
},
|
|
|
|
{
|
2020-11-10 12:27:20 -08:00
|
|
|
name: 'pipedriveOAuth2Api',
|
2019-07-09 23:14:40 -07:00
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
authentication: [
|
2020-11-10 12:27:20 -08:00
|
|
|
'oAuth2',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'httpBasicAuth',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
incomingAuthentication: [
|
2020-07-23 13:51:05 -07:00
|
|
|
'basicAuth',
|
2019-07-09 23:14:40 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
webhooks: [
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
httpMethod: 'POST',
|
2019-08-28 08:16:09 -07:00
|
|
|
responseMode: 'onReceived',
|
2019-07-09 23:14:40 -07:00
|
|
|
path: 'webhook',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
|
|
|
type: 'options',
|
2020-11-10 12:27:20 -08:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'API Token',
|
|
|
|
value: 'apiToken',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'OAuth2',
|
|
|
|
value: 'oAuth2',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'apiToken',
|
|
|
|
description: 'Method of authentication.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Incoming Authentication',
|
|
|
|
name: 'incomingAuthentication',
|
|
|
|
type: 'options',
|
2019-07-09 23:14:40 -07:00
|
|
|
options: [
|
|
|
|
{
|
2020-06-24 07:02:44 -07:00
|
|
|
name: 'Basic Auth',
|
2020-10-22 06:46:03 -07:00
|
|
|
value: 'basicAuth',
|
2019-07-09 23:14:40 -07:00
|
|
|
},
|
2020-06-24 07:02:44 -07:00
|
|
|
{
|
|
|
|
name: 'None',
|
2020-10-22 06:46:03 -07:00
|
|
|
value: 'none',
|
2019-07-09 23:14:40 -07:00
|
|
|
},
|
|
|
|
],
|
2020-07-23 13:51:05 -07:00
|
|
|
default: 'none',
|
2020-11-10 12:27:20 -08:00
|
|
|
description: 'If authentication should be activated for the webhook (makes it more secure).',
|
2019-07-09 23:14:40 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Action',
|
|
|
|
name: 'action',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'All',
|
|
|
|
value: '*',
|
|
|
|
description: 'Any change',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Added',
|
|
|
|
value: 'added',
|
2020-10-22 06:46:03 -07:00
|
|
|
description: 'Data got added',
|
2019-07-09 23:14:40 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Deleted',
|
|
|
|
value: 'deleted',
|
2020-10-22 06:46:03 -07:00
|
|
|
description: 'Data got deleted',
|
2019-07-09 23:14:40 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Merged',
|
|
|
|
value: 'merged',
|
2020-10-22 06:46:03 -07:00
|
|
|
description: 'Data got merged',
|
2019-07-09 23:14:40 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Updated',
|
|
|
|
value: 'updated',
|
2020-10-22 06:46:03 -07:00
|
|
|
description: 'Data got updated',
|
2019-07-09 23:14:40 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: '*',
|
|
|
|
description: 'Type of action to receive notifications about.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Object',
|
|
|
|
name: 'object',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'All',
|
|
|
|
value: '*',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Activity',
|
|
|
|
value: 'activity',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Activity Type',
|
|
|
|
value: 'activityType',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Deal',
|
|
|
|
value: 'deal',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Note',
|
|
|
|
value: 'note',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Organization',
|
|
|
|
value: 'organization',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Person',
|
|
|
|
value: 'person',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Pipeline',
|
|
|
|
value: 'pipeline',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Product',
|
|
|
|
value: 'product',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Stage',
|
|
|
|
value: 'stage',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'User',
|
|
|
|
value: 'user',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: '*',
|
|
|
|
description: 'Type of object to receive notifications about.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
// @ts-ignore (because of request)
|
|
|
|
webhookMethods = {
|
|
|
|
default: {
|
|
|
|
async checkExists(this: IHookFunctions): Promise<boolean> {
|
2020-10-08 07:39:13 -07:00
|
|
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
|
|
|
|
2019-07-09 23:14:40 -07:00
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
|
2020-10-08 07:39:13 -07:00
|
|
|
const eventAction = this.getNodeParameter('action') as string;
|
|
|
|
|
|
|
|
const eventObject = this.getNodeParameter('object') as string;
|
2019-07-09 23:14:40 -07:00
|
|
|
|
|
|
|
// Webhook got created before so check if it still exists
|
|
|
|
const endpoint = `/webhooks`;
|
|
|
|
|
|
|
|
const responseData = await pipedriveApiRequest.call(this, 'GET', endpoint, {});
|
|
|
|
|
|
|
|
if (responseData.data === undefined) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const existingData of responseData.data) {
|
2020-10-08 07:39:13 -07:00
|
|
|
if (existingData.subscription_url === webhookUrl
|
|
|
|
&& existingData.event_action === eventAction
|
|
|
|
&& existingData.event_object === eventObject) {
|
2019-07-09 23:14:40 -07:00
|
|
|
// The webhook exists already
|
2020-10-08 07:39:13 -07:00
|
|
|
webhookData.webhookId = existingData.id;
|
2019-07-09 23:14:40 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
async create(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
2020-11-10 12:27:20 -08:00
|
|
|
const incomingAuthentication = this.getNodeParameter('incomingAuthentication', 0) as string;
|
2019-07-09 23:14:40 -07:00
|
|
|
const eventAction = this.getNodeParameter('action') as string;
|
|
|
|
const eventObject = this.getNodeParameter('object') as string;
|
|
|
|
|
|
|
|
const endpoint = `/webhooks`;
|
|
|
|
|
|
|
|
const body = {
|
|
|
|
event_action: eventAction,
|
|
|
|
event_object: eventObject,
|
|
|
|
subscription_url: webhookUrl,
|
|
|
|
http_auth_user: undefined as string | undefined,
|
|
|
|
http_auth_password: undefined as string | undefined,
|
|
|
|
};
|
|
|
|
|
2020-11-10 12:27:20 -08:00
|
|
|
if (incomingAuthentication === 'basicAuth') {
|
2019-07-09 23:14:40 -07:00
|
|
|
const httpBasicAuth = this.getCredentials('httpBasicAuth');
|
|
|
|
|
|
|
|
if (httpBasicAuth === undefined || !httpBasicAuth.user || !httpBasicAuth.password) {
|
|
|
|
// Data is not defined on node so can not authenticate
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.http_auth_user = httpBasicAuth.user as string;
|
|
|
|
body.http_auth_password = httpBasicAuth.password as string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const responseData = await pipedriveApiRequest.call(this, 'POST', endpoint, body);
|
|
|
|
|
|
|
|
if (responseData.data === undefined || responseData.data.id === undefined) {
|
|
|
|
// Required data is missing so was not successful
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
webhookData.webhookId = responseData.data.id as string;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
async delete(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
|
|
|
|
if (webhookData.webhookId !== undefined) {
|
|
|
|
const endpoint = `/webhooks/${webhookData.webhookId}`;
|
|
|
|
const body = {};
|
|
|
|
|
|
|
|
try {
|
|
|
|
await pipedriveApiRequest.call(this, 'DELETE', endpoint, body);
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
2019-07-09 23:14:40 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove from the static workflow data so that it is clear
|
|
|
|
// that no webhooks are registred anymore
|
|
|
|
delete webhookData.webhookId;
|
|
|
|
delete webhookData.webhookEvents;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2019-10-11 04:02:44 -07:00
|
|
|
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
2019-07-09 23:14:40 -07:00
|
|
|
const req = this.getRequestObject();
|
|
|
|
const resp = this.getResponseObject();
|
|
|
|
const realm = 'Webhook';
|
|
|
|
|
2020-11-10 12:27:20 -08:00
|
|
|
const incomingAuthentication = this.getNodeParameter('incomingAuthentication', 0) as string;
|
2019-07-09 23:14:40 -07:00
|
|
|
|
2020-11-10 12:27:20 -08:00
|
|
|
if (incomingAuthentication === 'basicAuth') {
|
2019-07-09 23:14:40 -07:00
|
|
|
// Basic authorization is needed to call webhook
|
|
|
|
const httpBasicAuth = this.getCredentials('httpBasicAuth');
|
|
|
|
|
|
|
|
if (httpBasicAuth === undefined || !httpBasicAuth.user || !httpBasicAuth.password) {
|
|
|
|
// Data is not defined on node so can not authenticate
|
|
|
|
return authorizationError(resp, realm, 500, 'No authentication data defined on node!');
|
|
|
|
}
|
|
|
|
|
|
|
|
const basicAuthData = basicAuth(req);
|
|
|
|
|
|
|
|
if (basicAuthData === undefined) {
|
|
|
|
// Authorization data is missing
|
|
|
|
return authorizationError(resp, realm, 401);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (basicAuthData.name !== httpBasicAuth!.user || basicAuthData.pass !== httpBasicAuth!.password) {
|
|
|
|
// Provided authentication data is wrong
|
|
|
|
return authorizationError(resp, realm, 403);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
workflowData: [
|
2020-10-22 06:46:03 -07:00
|
|
|
this.helpers.returnJsonArray(req.body),
|
2019-07-09 23:14:40 -07:00
|
|
|
],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|