Skip to content

Commit

Permalink
feat(Cal Trigger Node): Update to support v2 webhooks (#5331)
Browse files Browse the repository at this point in the history
  • Loading branch information
alishaz-polymath authored Mar 8, 2023
1 parent 354edf6 commit 2889e53
Showing 1 changed file with 65 additions and 4 deletions.
69 changes: 65 additions & 4 deletions packages/nodes-base/nodes/Cal/CalTrigger.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class CalTrigger implements INodeType {
name: 'calTrigger',
icon: 'file:cal.svg',
group: ['trigger'],
version: 1,
version: [1, 2],
subtitle: '=Events: {{$parameter["events"].join(", ")}}',
description: 'Handle Cal events via webhooks',
defaults: {
Expand Down Expand Up @@ -60,10 +60,59 @@ export class CalTrigger implements INodeType {
value: 'BOOKING_RESCHEDULED',
description: 'Receive notifications when a Cal event is rescheduled',
},
{
name: 'Meeting Ended',
value: 'MEETING_ENDED',
description: 'Receive notifications when a Cal event or meeting has ended',
},
],
default: [],
required: true,
},
{
displayName: 'API Version',
name: 'version',
type: 'options',
displayOptions: {
show: {
'@version': [1],
},
},
isNodeSetting: true,
options: [
{
name: 'Before v2.0',
value: 1,
},
{
name: 'v2.0 Onwards',
value: 2,
},
],
default: 1,
},
{
displayName: 'API Version',
name: 'version',
type: 'options',
displayOptions: {
show: {
'@version': [2],
},
},
isNodeSetting: true,
options: [
{
name: 'Before v2.0',
value: 1,
},
{
name: 'v2.0 Onwards',
value: 2,
},
],
default: 2,
},
{
displayName: 'Options',
name: 'options',
Expand Down Expand Up @@ -125,13 +174,17 @@ export class CalTrigger implements INodeType {
webhookMethods = {
default: {
async checkExists(this: IHookFunctions): Promise<boolean> {
const version = this.getNodeParameter('version', 0) as number;
const webhookUrl = this.getNodeWebhookUrl('default');
const webhookData = this.getWorkflowStaticData('node');
const events = this.getNodeParameter('events') as string;

// Check all the webhooks which exist already if it is identical to the
// one that is supposed to get created.
const data = await calApiRequest.call(this, 'GET', '/hooks', {});
const data =
version === 2
? await calApiRequest.call(this, 'GET', '/webhooks', {})
: await calApiRequest.call(this, 'GET', '/hooks', {});

for (const webhook of data.webhooks) {
if (webhook.subscriberUrl === webhookUrl) {
Expand All @@ -148,6 +201,7 @@ export class CalTrigger implements INodeType {
return false;
},
async create(this: IHookFunctions): Promise<boolean> {
const version = this.getNodeParameter('version', 0) as number;
const webhookData = this.getWorkflowStaticData('node');
const subscriberUrl = this.getNodeWebhookUrl('default');
const eventTriggers = this.getNodeParameter('events') as string;
Expand All @@ -161,7 +215,10 @@ export class CalTrigger implements INodeType {
...(options as object),
};

const responseData = await calApiRequest.call(this, 'POST', '/hooks', body);
const responseData =
version === 2
? await calApiRequest.call(this, 'POST', '/webhooks', body)
: await calApiRequest.call(this, 'POST', '/hooks', body);

if (responseData.webhook.id === undefined) {
// Required data is missing so was not successful
Expand All @@ -172,9 +229,13 @@ export class CalTrigger implements INodeType {
return true;
},
async delete(this: IHookFunctions): Promise<boolean> {
const version = this.getNodeParameter('version', 0) as number;
const webhookData = this.getWorkflowStaticData('node');
if (webhookData.webhookId !== undefined) {
const endpoint = `/hooks/${webhookData.webhookId}`;
const endpoint =
version === 2
? `/webhooks/${webhookData.webhookId}`
: `/hooks/${webhookData.webhookId}`;

try {
await calApiRequest.call(this, 'DELETE', endpoint);
Expand Down

0 comments on commit 2889e53

Please sign in to comment.