first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
import type {
|
||||
IExecuteFunctions,
|
||||
ILoadOptionsFunctions,
|
||||
IDataObject,
|
||||
IHookFunctions,
|
||||
IWebhookFunctions,
|
||||
JsonObject,
|
||||
IHttpRequestMethods,
|
||||
IRequestOptions,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeApiError } from 'n8n-workflow';
|
||||
|
||||
export async function postmarkApiRequest(
|
||||
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
|
||||
method: IHttpRequestMethods,
|
||||
endpoint: string,
|
||||
|
||||
body: any = {},
|
||||
option: IDataObject = {},
|
||||
): Promise<any> {
|
||||
let options: IRequestOptions = {
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
Accept: 'application/json',
|
||||
},
|
||||
method,
|
||||
body,
|
||||
uri: 'https://api.postmarkapp.com' + endpoint,
|
||||
json: true,
|
||||
};
|
||||
if (Object.keys(body as IDataObject).length === 0) {
|
||||
delete options.body;
|
||||
}
|
||||
options = Object.assign({}, options, option);
|
||||
|
||||
try {
|
||||
return await this.helpers.requestWithAuthentication.call(this, 'postmarkApi', options);
|
||||
} catch (error) {
|
||||
throw new NodeApiError(this.getNode(), error as JsonObject);
|
||||
}
|
||||
}
|
||||
|
||||
export function convertTriggerObjectToStringArray(webhookObject: any): string[] {
|
||||
const triggers = webhookObject.Triggers;
|
||||
const webhookEvents: string[] = [];
|
||||
|
||||
// Translate Webhook trigger settings to string array
|
||||
if (triggers.Open.Enabled) {
|
||||
webhookEvents.push('open');
|
||||
}
|
||||
if (triggers.Open.PostFirstOpenOnly) {
|
||||
webhookEvents.push('firstOpen');
|
||||
}
|
||||
if (triggers.Click.Enabled) {
|
||||
webhookEvents.push('click');
|
||||
}
|
||||
if (triggers.Delivery.Enabled) {
|
||||
webhookEvents.push('delivery');
|
||||
}
|
||||
if (triggers.Bounce.Enabled) {
|
||||
webhookEvents.push('bounce');
|
||||
}
|
||||
if (triggers.Bounce.IncludeContent) {
|
||||
webhookEvents.push('includeContent');
|
||||
}
|
||||
if (triggers.SpamComplaint.Enabled) {
|
||||
webhookEvents.push('spamComplaint');
|
||||
}
|
||||
if (triggers.SpamComplaint.IncludeContent) {
|
||||
if (!webhookEvents.includes('IncludeContent')) {
|
||||
webhookEvents.push('includeContent');
|
||||
}
|
||||
}
|
||||
if (triggers.SubscriptionChange.Enabled) {
|
||||
webhookEvents.push('subscriptionChange');
|
||||
}
|
||||
|
||||
return webhookEvents;
|
||||
}
|
||||
|
||||
export function eventExists(currentEvents: string[], webhookEvents: string[]) {
|
||||
for (const currentEvent of currentEvents) {
|
||||
if (!webhookEvents.includes(currentEvent)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"node": "n8n-nodes-base.postmarkTrigger",
|
||||
"nodeVersion": "1.0",
|
||||
"codexVersion": "1.0",
|
||||
"categories": ["Communication", "Development"],
|
||||
"resources": {
|
||||
"credentialDocumentation": [
|
||||
{
|
||||
"url": "https://docs.n8n.io/integrations/builtin/credentials/postmark/"
|
||||
}
|
||||
],
|
||||
"primaryDocumentation": [
|
||||
{
|
||||
"url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.postmarktrigger/"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,257 @@
|
||||
import {
|
||||
type IDataObject,
|
||||
type IHookFunctions,
|
||||
type IWebhookFunctions,
|
||||
type INodeType,
|
||||
type INodeTypeDescription,
|
||||
type IWebhookResponseData,
|
||||
NodeConnectionTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import {
|
||||
convertTriggerObjectToStringArray,
|
||||
eventExists,
|
||||
postmarkApiRequest,
|
||||
} from './GenericFunctions';
|
||||
|
||||
export class PostmarkTrigger implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Postmark Trigger',
|
||||
name: 'postmarkTrigger',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||
icon: 'file:postmark.png',
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Starts the workflow when Postmark events occur',
|
||||
defaults: {
|
||||
name: 'Postmark Trigger',
|
||||
},
|
||||
inputs: [],
|
||||
outputs: [NodeConnectionTypes.Main],
|
||||
credentials: [
|
||||
{
|
||||
name: 'postmarkApi',
|
||||
required: true,
|
||||
},
|
||||
],
|
||||
webhooks: [
|
||||
{
|
||||
name: 'default',
|
||||
httpMethod: 'POST',
|
||||
responseMode: 'onReceived',
|
||||
path: 'webhook',
|
||||
},
|
||||
],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Events',
|
||||
name: 'events',
|
||||
type: 'multiOptions',
|
||||
options: [
|
||||
{
|
||||
name: 'Bounce',
|
||||
value: 'bounce',
|
||||
description: 'Trigger on bounce',
|
||||
},
|
||||
{
|
||||
name: 'Click',
|
||||
value: 'click',
|
||||
description: 'Trigger on click',
|
||||
},
|
||||
{
|
||||
name: 'Delivery',
|
||||
value: 'delivery',
|
||||
description: 'Trigger on delivery',
|
||||
},
|
||||
{
|
||||
name: 'Open',
|
||||
value: 'open',
|
||||
description: 'Trigger webhook on open',
|
||||
},
|
||||
{
|
||||
name: 'Spam Complaint',
|
||||
value: 'spamComplaint',
|
||||
description: 'Trigger on spam complaint',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Change',
|
||||
value: 'subscriptionChange',
|
||||
description: 'Trigger on subscription change',
|
||||
},
|
||||
],
|
||||
default: [],
|
||||
required: true,
|
||||
description: 'Webhook events that will be enabled for that endpoint',
|
||||
},
|
||||
{
|
||||
displayName: 'First Open',
|
||||
name: 'firstOpen',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-description-boolean-without-whether
|
||||
description: 'Only fires on first open for event "Open"',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
displayOptions: {
|
||||
show: {
|
||||
events: ['open'],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Include Content',
|
||||
name: 'includeContent',
|
||||
description: 'Whether to include message content for events "Bounce" and "Spam Complaint"',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
displayOptions: {
|
||||
show: {
|
||||
events: ['bounce', 'spamComplaint'],
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
webhookMethods = {
|
||||
default: {
|
||||
async checkExists(this: IHookFunctions): Promise<boolean> {
|
||||
const webhookData = this.getWorkflowStaticData('node');
|
||||
const webhookUrl = this.getNodeWebhookUrl('default');
|
||||
const events = this.getNodeParameter('events') as string[];
|
||||
|
||||
if (events.includes('bounce') || events.includes('spamComplaint')) {
|
||||
if (this.getNodeParameter('includeContent') as boolean) {
|
||||
events.push('includeContent');
|
||||
}
|
||||
}
|
||||
|
||||
if (events.includes('open')) {
|
||||
if (this.getNodeParameter('firstOpen') as boolean) {
|
||||
events.push('firstOpen');
|
||||
}
|
||||
}
|
||||
|
||||
// Get all webhooks
|
||||
const endpoint = '/webhooks';
|
||||
|
||||
const responseData = await postmarkApiRequest.call(this, 'GET', endpoint, {});
|
||||
|
||||
// No webhooks exist
|
||||
if (responseData.Webhooks.length === 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// If webhooks exist, check if any match current settings
|
||||
for (const webhook of responseData.Webhooks) {
|
||||
if (
|
||||
webhook.Url === webhookUrl &&
|
||||
eventExists(events, convertTriggerObjectToStringArray(webhook))
|
||||
) {
|
||||
webhookData.webhookId = webhook.ID;
|
||||
// webhook identical to current settings. re-assign webhook id to found webhook.
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
},
|
||||
async create(this: IHookFunctions): Promise<boolean> {
|
||||
const webhookUrl = this.getNodeWebhookUrl('default');
|
||||
|
||||
const endpoint = '/webhooks';
|
||||
|
||||
const body: any = {
|
||||
Url: webhookUrl,
|
||||
Triggers: {
|
||||
Open: {
|
||||
Enabled: false,
|
||||
PostFirstOpenOnly: false,
|
||||
},
|
||||
Click: {
|
||||
Enabled: false,
|
||||
},
|
||||
Delivery: {
|
||||
Enabled: false,
|
||||
},
|
||||
Bounce: {
|
||||
Enabled: false,
|
||||
IncludeContent: false,
|
||||
},
|
||||
SpamComplaint: {
|
||||
Enabled: false,
|
||||
IncludeContent: false,
|
||||
},
|
||||
SubscriptionChange: {
|
||||
Enabled: false,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
const events = this.getNodeParameter('events') as string[];
|
||||
|
||||
if (events.includes('open')) {
|
||||
body.Triggers.Open.Enabled = true;
|
||||
body.Triggers.Open.PostFirstOpenOnly = this.getNodeParameter('firstOpen') as boolean;
|
||||
}
|
||||
if (events.includes('click')) {
|
||||
body.Triggers.Click.Enabled = true;
|
||||
}
|
||||
if (events.includes('delivery')) {
|
||||
body.Triggers.Delivery.Enabled = true;
|
||||
}
|
||||
if (events.includes('bounce')) {
|
||||
body.Triggers.Bounce.Enabled = true;
|
||||
body.Triggers.Bounce.IncludeContent = this.getNodeParameter('includeContent') as boolean;
|
||||
}
|
||||
if (events.includes('spamComplaint')) {
|
||||
body.Triggers.SpamComplaint.Enabled = true;
|
||||
body.Triggers.SpamComplaint.IncludeContent = this.getNodeParameter(
|
||||
'includeContent',
|
||||
) as boolean;
|
||||
}
|
||||
if (events.includes('subscriptionChange')) {
|
||||
body.Triggers.SubscriptionChange.Enabled = true;
|
||||
}
|
||||
|
||||
const responseData = await postmarkApiRequest.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');
|
||||
|
||||
if (webhookData.webhookId !== undefined) {
|
||||
const endpoint = `/webhooks/${webhookData.webhookId}`;
|
||||
const body = {};
|
||||
|
||||
try {
|
||||
await postmarkApiRequest.call(this, 'DELETE', endpoint, body);
|
||||
} catch (error) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Remove from the static workflow data so that it is clear
|
||||
// that no webhooks are registered anymore
|
||||
delete webhookData.webhookId;
|
||||
delete webhookData.webhookEvents;
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
||||
const req = this.getRequestObject();
|
||||
return {
|
||||
workflowData: [this.helpers.returnJsonArray(req.body as IDataObject[])],
|
||||
};
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
Reference in New Issue
Block a user