2022-08-03 09:08:51 -07:00
|
|
|
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2022-08-03 09:08:51 -07:00
|
|
|
IHookFunctions,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
|
|
|
IWebhookFunctions,
|
|
|
|
IWebhookResponseData,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
import { SendInBlueWebhookApi } from './GenericFunctions';
|
|
|
|
|
|
|
|
export class SendInBlueTrigger implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'sendInBlueApi',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
displayName: 'SendInBlue Trigger',
|
|
|
|
defaults: {
|
feat(editor): Node creator actions (#4696)
* WIP: Node Actions List UI
* WIP: Recommended Actions and preseting of fields
* WIP: Resource category
* :art: Moved actions categorisation to the server
* :label: Add missing INodeAction type
* :sparkles: Improve SSR categorisation, fix adding of mixed actions
* :recycle: Refactor CategorizedItems to composition api, style fixes
* WIP: Adding multiple nodes
* :recycle: Refactor rest of the NodeCreator component to composition API, conver globalLinkActions to composable
* :sparkles: Allow actions dragging, fix search and refactor passing of actions to categorized items
* :lipstick: Fix node actions title
* Migrate to the pinia store, add posthog feature and various fixes
* :bug: Fix filtering of trigger actions when not merged
* fix: N8N-5439 — Do not use simple node item when at NodeHelperPanel root
* :bug: Design review fixes
* :bug: Fix disabling of merged actions
* Fix trigger root filtering
* :sparkles: Allow for custom node actions parser, introduce hubspot parser
* :bug: Fix initial node params validation, fix position of second added node
* :bug: Introduce operations category, removed canvas node names overrride, fix API actions display and prevent dragging of action nodes
* :sparkles: Prevent NDV auto-open feature flag
* :bug: Inject recommened action for trigger nodes without actions
* Refactored NodeCreatorNode to Storybook, change filtering of merged nodes for the trigger helper panel, minor fixes
* Improve rendering of app nodes and animation
* Cleanup, any only enable accordion transition on triggerhelperpanel
* Hide node creator scrollbars in Firefox
* Minor styles fixes
* Do not copy the array in rendering method
* Removed unused props
* Fix memory leak
* Fix categorisation of regular nodes with a single resource
* Implement telemetry calls for node actions
* Move categorization to FE
* Fix client side actions categorisation
* Skip custom action show
* Only load tooltip for NodeIcon if necessary
* Fix lodash startCase import
* Remove lodash.startcase
* Cleanup
* Fix node creator autofocus on "tab"
* Prevent posthog getFeatureFlag from crashing
* Debugging preview env search issues
* Remove logs
* Make sure the pre-filled params are update not overwritten
* Get rid of transition in itemiterator
* WIP: Rough version of NodeActions keyboard navigation, replace nodeCreator composable with Pinia store module
* Rewrite to add support for ActionItem to ItemIterator and make CategorizedItems accept items props
* Fix category item counter & cleanup
* Add APIHint to actions search no-result, clean up NodeCreatorNode
* Improve node actions no results message
* Remove logging, fix filtering of recommended placeholder category
* Remove unused NodeActions component and node merging feature falg
* Do not show regular nodes without actions
* Make sure to add manual trigger when adding http node via actions hint
* Fixed api hint footer line height
* Prevent pointer-events od NodeIcon img and remove "this" from template
* Address PR points
* Fix e2e specs
* Make sure canvas ia loaded
* Make sure canvas ia loaded before opening nodeCreator in e2e spec
* Fix flaky workflows tags e2e getter
* Imrpove node creator click outside UX, add manual node to regular nodes added from trigger panel
* Add manual trigger node if dragging regular from trigger panel
2022-12-09 01:56:36 -08:00
|
|
|
name: 'SendInBlue Trigger',
|
2022-08-03 09:08:51 -07:00
|
|
|
},
|
|
|
|
description: 'Starts the workflow when SendInBlue events occur',
|
|
|
|
group: ['trigger'],
|
|
|
|
icon: 'file:sendinblue.svg',
|
|
|
|
inputs: [],
|
|
|
|
name: 'sendInBlueTrigger',
|
|
|
|
outputs: ['main'],
|
|
|
|
version: 1,
|
|
|
|
webhooks: [
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
httpMethod: 'POST',
|
|
|
|
responseMode: 'onReceived',
|
|
|
|
path: 'webhooks',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
2022-09-12 00:25:39 -07:00
|
|
|
default: 'transactional',
|
2022-08-03 09:08:51 -07:00
|
|
|
name: 'type',
|
|
|
|
options: [
|
|
|
|
{ name: 'Inbound', value: 'inbound' },
|
|
|
|
{ name: 'Marketing', value: 'marketing' },
|
|
|
|
{ name: 'Transactional', value: 'transactional' },
|
|
|
|
],
|
|
|
|
required: true,
|
|
|
|
type: 'options',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Trigger On',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
type: ['transactional'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
name: 'events',
|
|
|
|
placeholder: 'Add Event',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Email Blocked',
|
|
|
|
value: 'blocked',
|
|
|
|
description: 'Triggers when transactional email is blocked',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Clicked',
|
|
|
|
value: 'click',
|
|
|
|
description: 'Triggers when transactional email is clicked',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Deferred',
|
|
|
|
value: 'deferred',
|
|
|
|
description: 'Triggers when transactional email is deferred',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Delivered',
|
|
|
|
value: 'delivered',
|
|
|
|
description: 'Triggers when transactional email is delivered',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Hard Bounce',
|
|
|
|
value: 'hardBounce',
|
|
|
|
description: 'Triggers when transactional email is hard bounced',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Invalid',
|
|
|
|
value: 'invalid',
|
|
|
|
description: 'Triggers when transactional email is invalid',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Marked Spam',
|
|
|
|
value: 'spam',
|
|
|
|
description: 'Triggers when transactional email is set to spam',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Opened',
|
|
|
|
value: 'opened',
|
|
|
|
description: 'Triggers when transactional email is opened',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Sent',
|
|
|
|
value: 'request',
|
|
|
|
description: 'Triggers when transactional email is sent',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Soft-Bounce',
|
|
|
|
value: 'softBounce',
|
|
|
|
description: 'Triggers when transactional email is soft bounced',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Unique Open',
|
|
|
|
value: 'uniqueOpened',
|
|
|
|
description: 'Triggers when transactional email is unique opened',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Email Unsubscribed',
|
|
|
|
value: 'unsubscribed',
|
|
|
|
description: 'Triggers when transactional email is unsubscribed',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: [],
|
|
|
|
required: true,
|
|
|
|
type: 'multiOptions',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Trigger On',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
type: ['marketing'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
name: 'events',
|
|
|
|
placeholder: 'Add Event',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Marketing Email Clicked',
|
|
|
|
value: 'click',
|
|
|
|
description: 'Triggers when marketing email is clicked',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Marketing Email Delivered',
|
|
|
|
value: 'delivered',
|
|
|
|
description: 'Triggers when marketing email is delivered',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Marketing Email Hard Bounce',
|
|
|
|
value: 'hardBounce',
|
|
|
|
description: 'Triggers when marketing email is hard bounced',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Marketing Email List Addition',
|
|
|
|
value: 'listAddition',
|
|
|
|
description: 'Triggers when marketing email is clicked',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Marketing Email Opened',
|
|
|
|
value: 'opened',
|
|
|
|
description: 'Triggers when marketing email is opened',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Marketing Email Soft Bounce',
|
|
|
|
value: 'softBounce',
|
|
|
|
description: 'Triggers when marketing email is soft bounced',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Marketing Email Spam',
|
|
|
|
value: 'spam',
|
|
|
|
description: 'Triggers when marketing email is spam',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Marketing Email Unsubscribed',
|
|
|
|
value: 'unsubscribed',
|
|
|
|
description: 'Triggers when marketing email is unsubscribed',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: [],
|
|
|
|
required: true,
|
|
|
|
type: 'multiOptions',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Trigger On',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
type: ['inbound'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
name: 'events',
|
|
|
|
placeholder: 'Add Event',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Inbound Email Processed',
|
|
|
|
value: 'inboundEmailProcessed',
|
|
|
|
description: 'Triggers when inbound email is processed',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: [],
|
|
|
|
required: true,
|
|
|
|
type: 'multiOptions',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
webhookMethods = {
|
|
|
|
default: {
|
|
|
|
async checkExists(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
|
|
|
|
const webhookUrl = this.getNodeWebhookUrl('default') as string;
|
|
|
|
|
|
|
|
const type = this.getNodeParameter('type') as string;
|
|
|
|
|
|
|
|
const events = this.getNodeParameter('events') as string[];
|
|
|
|
|
|
|
|
try {
|
|
|
|
const { webhooks } = await SendInBlueWebhookApi.fetchWebhooks(this, type);
|
|
|
|
|
|
|
|
for (const webhook of webhooks) {
|
|
|
|
if (
|
|
|
|
webhook.type === type &&
|
|
|
|
webhook.events.every((event) => events.includes(event)) &&
|
|
|
|
webhookUrl === webhook.url
|
|
|
|
) {
|
|
|
|
webhookData.webhookId = webhook.id;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If it did not error then the webhook exists
|
|
|
|
return false;
|
|
|
|
} catch (err) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async create(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
|
|
|
|
const webhookUrl = this.getNodeWebhookUrl('default') as string;
|
|
|
|
|
|
|
|
const type = this.getNodeParameter('type') as string;
|
|
|
|
|
|
|
|
const events = this.getNodeParameter('events') as string[];
|
|
|
|
|
|
|
|
const responseData = await SendInBlueWebhookApi.createWebHook(
|
|
|
|
this,
|
|
|
|
type,
|
|
|
|
events,
|
|
|
|
webhookUrl,
|
|
|
|
);
|
|
|
|
|
|
|
|
if (responseData === undefined || responseData.id === undefined) {
|
|
|
|
// Required data is missing so was not successful
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
webhookData.webhookId = responseData.id;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
async delete(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
|
|
|
|
if (webhookData.webhookId !== undefined) {
|
|
|
|
try {
|
|
|
|
await SendInBlueWebhookApi.deleteWebhook(this, webhookData.webhookId as string);
|
|
|
|
} catch (error) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove from the static workflow data so that it is clear
|
2023-03-03 09:49:19 -08:00
|
|
|
// that no webhooks are registered anymore
|
2022-08-03 09:08:51 -07:00
|
|
|
delete webhookData.webhookId;
|
|
|
|
delete webhookData.webhookEvents;
|
|
|
|
delete webhookData.hookSecret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
|
|
|
// The data to return and so start the workflow with
|
2022-12-02 12:54:28 -08:00
|
|
|
const bodyData = this.getBodyData();
|
2022-08-03 09:08:51 -07:00
|
|
|
|
|
|
|
return {
|
|
|
|
workflowData: [this.helpers.returnJsonArray(bodyData)],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|