mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
🔀 Merge branch 'RicardoE105-feature/hubspot-trigger'
This commit is contained in:
commit
0a472d4459
|
@ -0,0 +1,23 @@
|
||||||
|
import {
|
||||||
|
ICredentialType,
|
||||||
|
NodePropertyTypes,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
export class HubspotDeveloperApi implements ICredentialType {
|
||||||
|
name = 'hubspotDeveloperApi';
|
||||||
|
displayName = 'Hubspot API';
|
||||||
|
properties = [
|
||||||
|
{
|
||||||
|
displayName: 'Developer API Key',
|
||||||
|
name: 'apiKey',
|
||||||
|
type: 'string' as NodePropertyTypes,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Client Secret',
|
||||||
|
name: 'clientSecret',
|
||||||
|
type: 'string' as NodePropertyTypes,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
|
@ -12,11 +12,12 @@ import {
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
export async function hubspotApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: any = {}, query: IDataObject = {}, uri?: string): Promise<any> { // tslint:disable-line:no-any
|
export async function hubspotApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: any = {}, query: IDataObject = {}, uri?: string): Promise<any> { // tslint:disable-line:no-any
|
||||||
const credentials = this.getCredentials('hubspotApi');
|
|
||||||
if (credentials === undefined) {
|
const node = this.getNode();
|
||||||
throw new Error('No credentials got returned!');
|
const credentialName = Object.keys(node.credentials!)[0];
|
||||||
}
|
const credentials = this.getCredentials(credentialName);
|
||||||
query!.hapikey = credentials.apiKey as string;
|
|
||||||
|
query!.hapikey = credentials!.apiKey as string;
|
||||||
const options: OptionsWithUri = {
|
const options: OptionsWithUri = {
|
||||||
method,
|
method,
|
||||||
qs: query,
|
qs: query,
|
||||||
|
@ -29,12 +30,8 @@ export async function hubspotApiRequest(this: IHookFunctions | IExecuteFunctions
|
||||||
try {
|
try {
|
||||||
return await this.helpers.request!(options);
|
return await this.helpers.request!(options);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
const errorMessage = error.response.body.message || error.response.body.Message;
|
const errorMessage = error.response.body.message || error.response.body.Message || error.message;
|
||||||
|
throw new Error(`Hubspot error response [${error.statusCode}]: ${errorMessage}`);
|
||||||
if (errorMessage !== undefined) {
|
|
||||||
throw errorMessage;
|
|
||||||
}
|
|
||||||
throw error.response.body;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ export class Hubspot implements INodeType {
|
||||||
description: 'Consume Hubspot API',
|
description: 'Consume Hubspot API',
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'Hubspot',
|
name: 'Hubspot',
|
||||||
color: '#356ae6',
|
color: '#ff7f64',
|
||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
outputs: ['main'],
|
outputs: ['main'],
|
||||||
|
|
280
packages/nodes-base/nodes/Hubspot/HubspotTrigger.node.ts
Normal file
280
packages/nodes-base/nodes/Hubspot/HubspotTrigger.node.ts
Normal file
|
@ -0,0 +1,280 @@
|
||||||
|
import {
|
||||||
|
IHookFunctions,
|
||||||
|
IWebhookFunctions,
|
||||||
|
} from 'n8n-core';
|
||||||
|
|
||||||
|
import {
|
||||||
|
INodeTypeDescription,
|
||||||
|
INodeType,
|
||||||
|
IWebhookResponseData,
|
||||||
|
IDataObject,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
import {
|
||||||
|
hubspotApiRequest,
|
||||||
|
} from './GenericFunctions';
|
||||||
|
|
||||||
|
import { createHash } from 'crypto';
|
||||||
|
|
||||||
|
export class HubspotTrigger implements INodeType {
|
||||||
|
description: INodeTypeDescription = {
|
||||||
|
displayName: 'Hubspot Trigger',
|
||||||
|
name: 'hubspotTrigger',
|
||||||
|
icon: 'file:hubspot.png',
|
||||||
|
group: ['trigger'],
|
||||||
|
version: 1,
|
||||||
|
subtitle: '={{($parameter["appId"]) ? $parameter["event"] : ""}}',
|
||||||
|
description: 'Starts the workflow when Hubspot events occure.',
|
||||||
|
defaults: {
|
||||||
|
name: 'Hubspot Trigger',
|
||||||
|
color: '#ff7f64',
|
||||||
|
},
|
||||||
|
inputs: [],
|
||||||
|
outputs: ['main'],
|
||||||
|
credentials: [
|
||||||
|
{
|
||||||
|
name: 'hubspotDeveloperApi',
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
webhooks: [
|
||||||
|
{
|
||||||
|
name: 'default',
|
||||||
|
httpMethod: 'POST',
|
||||||
|
responseMode: 'onReceived',
|
||||||
|
path: 'webhook',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'setup',
|
||||||
|
httpMethod: 'GET',
|
||||||
|
responseMode: 'onReceived',
|
||||||
|
path: 'webhook',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
properties: [
|
||||||
|
{
|
||||||
|
displayName: 'App ID',
|
||||||
|
name: 'appId',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
required: true,
|
||||||
|
description: 'App ID',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Event',
|
||||||
|
name: 'event',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'contact.creation',
|
||||||
|
value: 'contact.creation',
|
||||||
|
description: `To get notified if any contact is created in a customer's account.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'contact.deletion',
|
||||||
|
value: 'contact.deletion',
|
||||||
|
description: `To get notified if any contact is deleted in a customer's account.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'contact.privacyDeletion',
|
||||||
|
value: 'contact.privacyDeletion',
|
||||||
|
description: `To get notified if a contact is deleted for privacy compliance reasons. `,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'contact.propertyChange',
|
||||||
|
value: 'contact.propertyChange',
|
||||||
|
description: `to get notified if a specified property is changed for any contact in a customer's account. `,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'company.creation',
|
||||||
|
value: 'company.creation',
|
||||||
|
description: `To get notified if any company is created in a customer's account.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'company.deletion',
|
||||||
|
value: 'company.deletion',
|
||||||
|
description: `To get notified if any company is deleted in a customer's account.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'company.propertyChange',
|
||||||
|
value: 'company.propertyChange',
|
||||||
|
description: `To get notified if a specified property is changed for any company in a customer's account.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'deal.creation',
|
||||||
|
value: 'deal.creation',
|
||||||
|
description: `To get notified if any deal is created in a customer's account.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'deal.deletion',
|
||||||
|
value: 'deal.deletion',
|
||||||
|
description: `To get notified if any deal is deleted in a customer's account.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'deal.propertyChange',
|
||||||
|
value: 'deal.propertyChange',
|
||||||
|
description: `To get notified if a specified property is changed for any deal in a customer's account.`,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: 'contact.creation',
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Property',
|
||||||
|
name: 'property',
|
||||||
|
type: 'string',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
event: [
|
||||||
|
'contact.propertyChange',
|
||||||
|
'company.propertyChange',
|
||||||
|
'deal.propertyChange',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Additional Fields',
|
||||||
|
name: 'additionalFields',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Field',
|
||||||
|
default: {},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Max Concurrent Requests',
|
||||||
|
name: 'maxConcurrentRequests',
|
||||||
|
type: 'number',
|
||||||
|
typeOptions: {
|
||||||
|
minValue: 5,
|
||||||
|
},
|
||||||
|
default: 5,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
// @ts-ignore (because of request)
|
||||||
|
webhookMethods = {
|
||||||
|
default: {
|
||||||
|
async checkExists(this: IHookFunctions): Promise<boolean> {
|
||||||
|
// Check all the webhooks which exist already if it is identical to the
|
||||||
|
// one that is supposed to get created.
|
||||||
|
const app = parseInt(this.getNodeParameter('appId') as string, 10);
|
||||||
|
const event = this.getNodeParameter('event') as string;
|
||||||
|
const webhookUrlUi = this.getNodeWebhookUrl('default') as string;
|
||||||
|
let endpoint = `/webhooks/v1/${app}/settings`;
|
||||||
|
const { webhookUrl , appId } = await hubspotApiRequest.call(this, 'GET', endpoint, {});
|
||||||
|
endpoint = `/webhooks/v1/${app}/subscriptions`;
|
||||||
|
const subscriptions = await hubspotApiRequest.call(this, 'GET', endpoint, {});
|
||||||
|
for (const subscription of subscriptions) {
|
||||||
|
if (webhookUrl === webhookUrlUi
|
||||||
|
&& appId === app
|
||||||
|
&& subscription.subscriptionDetails.subscriptionType === event
|
||||||
|
&& subscription.enabled === true) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
async create(this: IHookFunctions): Promise<boolean> {
|
||||||
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
||||||
|
const app = this.getNodeParameter('appId') as string;
|
||||||
|
const event = this.getNodeParameter('event') as string;
|
||||||
|
const additionalFields = this.getNodeParameter('additionalFields') as IDataObject;
|
||||||
|
const propertyEvents = [
|
||||||
|
'contact.propertyChange',
|
||||||
|
'company.propertyChange',
|
||||||
|
'deal.propertyChange',
|
||||||
|
];
|
||||||
|
let endpoint = `/webhooks/v1/${app}/settings`;
|
||||||
|
let body: IDataObject = {
|
||||||
|
webhookUrl,
|
||||||
|
maxConcurrentRequests: additionalFields.maxConcurrentRequests || 5,
|
||||||
|
};
|
||||||
|
await hubspotApiRequest.call(this, 'PUT', endpoint, body);
|
||||||
|
|
||||||
|
endpoint = `/webhooks/v1/${app}/subscriptions`;
|
||||||
|
body = {
|
||||||
|
subscriptionDetails: {
|
||||||
|
subscriptionType: event,
|
||||||
|
},
|
||||||
|
enabled: true,
|
||||||
|
};
|
||||||
|
if (propertyEvents.includes(event)) {
|
||||||
|
const property = this.getNodeParameter('property') as string;
|
||||||
|
//@ts-ignore
|
||||||
|
body.subscriptionDetails.propertyName = property;
|
||||||
|
}
|
||||||
|
|
||||||
|
const responseData = await hubspotApiRequest.call(this, 'POST', endpoint, body);
|
||||||
|
|
||||||
|
if (responseData.id === undefined) {
|
||||||
|
// Required data is missing so was not successful
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const webhookData = this.getWorkflowStaticData('node');
|
||||||
|
webhookData.webhookId = responseData.id as string;
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
async delete(this: IHookFunctions): Promise<boolean> {
|
||||||
|
const webhookData = this.getWorkflowStaticData('node');
|
||||||
|
const app = this.getNodeParameter('appId') as string;
|
||||||
|
if (webhookData.webhookId !== undefined) {
|
||||||
|
const endpoint = `/webhooks/v1/${app}/subscriptions/${webhookData.webhookId}`;
|
||||||
|
|
||||||
|
const body = {};
|
||||||
|
|
||||||
|
try {
|
||||||
|
await hubspotApiRequest.call(this, 'DELETE', endpoint, body);
|
||||||
|
} catch (e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// Remove from the static workflow data so that it is clear
|
||||||
|
// that no webhooks are registred anymore
|
||||||
|
delete webhookData.webhookId;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
||||||
|
const credentials = this.getCredentials('hubspotDeveloperApi');
|
||||||
|
const req = this.getRequestObject();
|
||||||
|
const bodyData = req.body;
|
||||||
|
const headerData = this.getHeaderData();
|
||||||
|
//@ts-ignore
|
||||||
|
if (headerData['x-hubspot-signature'] === undefined) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
const hash = `${credentials!.clientSecret}${JSON.stringify(bodyData)}`;
|
||||||
|
const signature = createHash('sha256').update(hash).digest('hex');
|
||||||
|
//@ts-ignore
|
||||||
|
if (signature !== headerData['x-hubspot-signature']) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
for (let i = 0; i < bodyData.length; i++) {
|
||||||
|
const subscriptionType = bodyData[i].subscriptionType as string;
|
||||||
|
if (subscriptionType.includes('contact')) {
|
||||||
|
bodyData[i].contactId = bodyData[i].objectId;
|
||||||
|
}
|
||||||
|
if (subscriptionType.includes('company')) {
|
||||||
|
bodyData[i].companyId = bodyData[i].objectId;
|
||||||
|
}
|
||||||
|
if (subscriptionType.includes('deal')) {
|
||||||
|
bodyData[i].dealId = bodyData[i].objectId;
|
||||||
|
}
|
||||||
|
delete bodyData[i].objectId;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
workflowData: [
|
||||||
|
this.helpers.returnJsonArray(bodyData),
|
||||||
|
],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
|
@ -56,6 +56,7 @@
|
||||||
"dist/credentials/HttpDigestAuth.credentials.js",
|
"dist/credentials/HttpDigestAuth.credentials.js",
|
||||||
"dist/credentials/HttpHeaderAuth.credentials.js",
|
"dist/credentials/HttpHeaderAuth.credentials.js",
|
||||||
"dist/credentials/HubspotApi.credentials.js",
|
"dist/credentials/HubspotApi.credentials.js",
|
||||||
|
"dist/credentials/HubspotDeveloperApi.credentials.js",
|
||||||
"dist/credentials/HunterApi.credentials.js",
|
"dist/credentials/HunterApi.credentials.js",
|
||||||
"dist/credentials/Imap.credentials.js",
|
"dist/credentials/Imap.credentials.js",
|
||||||
"dist/credentials/IntercomApi.credentials.js",
|
"dist/credentials/IntercomApi.credentials.js",
|
||||||
|
@ -156,6 +157,7 @@
|
||||||
"dist/nodes/HtmlExtract/HtmlExtract.node.js",
|
"dist/nodes/HtmlExtract/HtmlExtract.node.js",
|
||||||
"dist/nodes/HttpRequest.node.js",
|
"dist/nodes/HttpRequest.node.js",
|
||||||
"dist/nodes/Hubspot/Hubspot.node.js",
|
"dist/nodes/Hubspot/Hubspot.node.js",
|
||||||
|
"dist/nodes/Hubspot/HubspotTrigger.node.js",
|
||||||
"dist/nodes/Hunter/Hunter.node.js",
|
"dist/nodes/Hunter/Hunter.node.js",
|
||||||
"dist/nodes/If.node.js",
|
"dist/nodes/If.node.js",
|
||||||
"dist/nodes/Intercom/Intercom.node.js",
|
"dist/nodes/Intercom/Intercom.node.js",
|
||||||
|
|
Loading…
Reference in a new issue