mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
70ae90fa3c
* ⚡ Update `lintfix` script * 👕 Remove unneeded lint exceptions * 👕 Run baseline `lintfix` * 👕 Apply `node-param-description-miscased-url` (#3441) * 👕 Apply `rule node-param-placeholder-miscased-id` (#3443) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-wrong-for-upsert` (#3446) * 👕 Apply `node-param-min-value-wrong-for-limit` (#3442) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-wrong-for-dynamic-options` (#3454) * 🔨 fix * ⚡ Fix `Assigned To` fields Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `rule node-param-default-wrong-for-number` (#3453) * 👕 Apply `node-param-default-wrong-for-string` (#3452) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-miscased` (#3449) * 🔨 fix * 🔨 exceptions * ⚡ review fixes * 👕 Apply `node-param-description-lowercase-first-char` (#3451) * ⚡ fix * ⚡ review fixes * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-dynamic-options` (#3456) * Rule working as intended * Add rule * 🔥 Remove repetitions * 👕 Add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Small fix for `node-param-description-wrong-for-dynamic-options` * 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3460) * 👕 Apply `node-param-description-line-break-html-tag` (#3462) * 👕 Run baseline `lintfix` * 👕 Apply `node-param-options-type-unsorted-items` (#3459) * ⚡ fix * 🔨 exceptions * Add exception for Salesmate and Zoom Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Restore `lintfix` command Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com>
329 lines
8.8 KiB
TypeScript
329 lines
8.8 KiB
TypeScript
import {
|
|
IHookFunctions,
|
|
IWebhookFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
IWebhookResponseData,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
customerIoApiRequest,
|
|
eventExists,
|
|
} from './GenericFunctions';
|
|
|
|
interface IEvent {
|
|
customer?: IDataObject;
|
|
email?: IDataObject;
|
|
push?: IDataObject;
|
|
slack?: IDataObject;
|
|
sms?: IDataObject;
|
|
webhook?: IDataObject;
|
|
}
|
|
|
|
export class CustomerIoTrigger implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Customer.io Trigger',
|
|
name: 'customerIoTrigger',
|
|
group: ['trigger'],
|
|
icon: 'file:customerio.svg',
|
|
version: 1,
|
|
description: 'Starts the workflow on a Customer.io update (Beta)',
|
|
defaults: {
|
|
name: 'Customer.io Trigger',
|
|
},
|
|
inputs: [],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'customerIoApi',
|
|
required: true,
|
|
},
|
|
],
|
|
webhooks: [
|
|
{
|
|
name: 'default',
|
|
httpMethod: 'POST',
|
|
responseMode: 'onReceived',
|
|
path: 'webhook',
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Events',
|
|
name: 'events',
|
|
type: 'multiOptions',
|
|
required: true,
|
|
default: [],
|
|
description: 'The events that can trigger the webhook and whether they are enabled',
|
|
options: [
|
|
{
|
|
name: 'Customer Subscribed',
|
|
value: 'customer.subscribed',
|
|
description: 'Whether the webhook is triggered when a list subscriber is added',
|
|
},
|
|
{
|
|
name: 'Customer Unsubscribe',
|
|
value: 'customer.unsubscribed',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Attempted',
|
|
value: 'email.attempted',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Bounced',
|
|
value: 'email.bounced',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Clicked',
|
|
value: 'email.clicked',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Converted',
|
|
value: 'email.converted',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Delivered',
|
|
value: 'email.delivered',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Drafted',
|
|
value: 'email.drafted',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Failed',
|
|
value: 'email.failed',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Opened',
|
|
value: 'email.opened',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Sent',
|
|
value: 'email.sent',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Email Spammed',
|
|
value: 'email.spammed',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Push Attempted',
|
|
value: 'push.attempted',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Push Bounced',
|
|
value: 'push.bounced',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Push Clicked',
|
|
value: 'push.clicked',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Push Delivered',
|
|
value: 'push.delivered',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Push Drafted',
|
|
value: 'push.drafted',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Push Failed',
|
|
value: 'push.failed',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Push Opened',
|
|
value: 'push.opened',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Push Sent',
|
|
value: 'push.sent',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Slack Attempted',
|
|
value: 'slack.attempted',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Slack Clicked',
|
|
value: 'slack.clicked',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Slack Drafted',
|
|
value: 'slack.drafted',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Slack Failed',
|
|
value: 'slack.failed',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'Slack Sent',
|
|
value: 'slack.sent',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'SMS Attempted',
|
|
value: 'sms.attempted',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'SMS Bounced',
|
|
value: 'sms.bounced',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'SMS Clicked',
|
|
value: 'sms.clicked',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'SMS Delivered',
|
|
value: 'sms.delivered',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'SMS Drafted',
|
|
value: 'sms.drafted',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'SMS Failed',
|
|
value: 'sms.failed',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
{
|
|
name: 'SMS Sent',
|
|
value: 'sms.sent',
|
|
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
// @ts-ignore (because of request)
|
|
webhookMethods = {
|
|
default: {
|
|
async checkExists(this: IHookFunctions): Promise<boolean> {
|
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
const currentEvents = this.getNodeParameter('events', []) as string[];
|
|
|
|
const endpoint = '/reporting_webhooks';
|
|
|
|
let { reporting_webhooks: webhooks } = await customerIoApiRequest.call(this, 'GET', endpoint, {}, 'beta');
|
|
|
|
if (webhooks === null) {
|
|
webhooks = [];
|
|
}
|
|
|
|
for (const webhook of webhooks) {
|
|
if (webhook.endpoint === webhookUrl &&
|
|
eventExists(currentEvents, webhook.events)) {
|
|
webhookData.webhookId = webhook.id;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
},
|
|
async create(this: IHookFunctions): Promise<boolean> {
|
|
let webhook;
|
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
|
const events = this.getNodeParameter('events', []) as string[];
|
|
|
|
const endpoint = '/reporting_webhooks';
|
|
|
|
const data: IEvent = {
|
|
customer: {},
|
|
email: {},
|
|
push: {},
|
|
slack: {},
|
|
sms: {},
|
|
webhook: {},
|
|
};
|
|
|
|
for (const event of events) {
|
|
const option = event.split('.')[1];
|
|
if (event.startsWith('customer')) {
|
|
data.customer![option] = true;
|
|
}
|
|
if (event.startsWith('email')) {
|
|
data.email![option] = true;
|
|
}
|
|
if (event.startsWith('push')) {
|
|
data.push![option] = true;
|
|
}
|
|
if (event.startsWith('slack')) {
|
|
data.slack![option] = true;
|
|
}
|
|
if (event.startsWith('sms')) {
|
|
data.sms![option] = true;
|
|
}
|
|
if (event.startsWith('webhook')) {
|
|
data.webhook![option] = true;
|
|
}
|
|
}
|
|
const body = {
|
|
endpoint: webhookUrl,
|
|
events: data,
|
|
};
|
|
|
|
webhook = await customerIoApiRequest.call(this, 'POST', endpoint, body, 'beta');
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
webhookData.webhookId = webhook.id as string;
|
|
return true;
|
|
},
|
|
async delete(this: IHookFunctions): Promise<boolean> {
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
if (webhookData.webhookId !== undefined) {
|
|
const endpoint = `/reporting_webhooks/${webhookData.webhookId}`;
|
|
try {
|
|
await customerIoApiRequest.call(this, 'DELETE', endpoint, {}, 'beta');
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
delete webhookData.webhookId;
|
|
}
|
|
return true;
|
|
},
|
|
},
|
|
};
|
|
|
|
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
|
const bodyData = this.getBodyData();
|
|
return {
|
|
workflowData: [
|
|
this.helpers.returnJsonArray(bodyData),
|
|
],
|
|
};
|
|
}
|
|
}
|