mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
63b6c9f128
* ✏️ Alphabetize rules * 🔖 Update version * ⚡ Update lintfix command * ⚡ Run baseline lintfix * 📦 Update package-lock.json * 👕 Apply `node-param-description-untrimmed` (#3200) * Removing unneeded backticks (#3249) * 👕 Apply node-param-description-wrong-for-return-all (#3253) * 👕 Apply node-param-description-missing-limit (#3252) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-excess-final-period (#3250) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-unencoded-angle-brackets (#3256) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-url-missing-protocol (#3258) * 👕 Apply `node-param-description-miscased-id` (#3254) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-wrong-for-limit (#3257) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-wrong-for-ignore-ssl-issues (#3261) * 👕 Apply rule * ⚡ Restore lintfix script * ⚡ Restore lintfix script Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
203 lines
5.2 KiB
TypeScript
203 lines
5.2 KiB
TypeScript
import {
|
|
IHookFunctions,
|
|
IWebhookFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
ILoadOptionsFunctions,
|
|
INodePropertyOptions,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
IWebhookResponseData,
|
|
NodeApiError,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
import {
|
|
payPalApiRequest,
|
|
upperFist
|
|
} from './GenericFunctions';
|
|
|
|
export class PayPalTrigger implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'PayPal Trigger',
|
|
name: 'payPalTrigger',
|
|
icon: 'file:paypal.svg',
|
|
group: ['trigger'],
|
|
version: 1,
|
|
description: 'Handle PayPal events via webhooks',
|
|
defaults: {
|
|
name: 'PayPal Trigger',
|
|
},
|
|
inputs: [],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'payPalApi',
|
|
required: true,
|
|
},
|
|
],
|
|
webhooks: [
|
|
{
|
|
name: 'default',
|
|
httpMethod: 'POST',
|
|
reponseMode: 'onReceived',
|
|
path: 'webhook',
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Events',
|
|
name: 'events',
|
|
type: 'multiOptions',
|
|
required: true,
|
|
default: [],
|
|
description: 'The event to listen to',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getEvents',
|
|
},
|
|
options: [],
|
|
},
|
|
],
|
|
};
|
|
|
|
methods = {
|
|
loadOptions: {
|
|
// Get all the events types to display them to user so that he can
|
|
// select them easily
|
|
async getEvents(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
const returnData: INodePropertyOptions[] = [
|
|
{
|
|
name: '*',
|
|
value: '*',
|
|
description: 'Any time any event is triggered (Wildcard Event)',
|
|
},
|
|
];
|
|
let events;
|
|
try {
|
|
const endpoint = '/notifications/webhooks-event-types';
|
|
events = await payPalApiRequest.call(this, endpoint, 'GET');
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
for (const event of events.event_types) {
|
|
const eventName = upperFist(event.name);
|
|
const eventId = event.name;
|
|
const eventDescription = event.description;
|
|
|
|
returnData.push({
|
|
name: eventName,
|
|
value: eventId,
|
|
description: eventDescription,
|
|
});
|
|
}
|
|
return returnData;
|
|
},
|
|
},
|
|
};
|
|
|
|
// @ts-ignore (because of request)
|
|
webhookMethods = {
|
|
default: {
|
|
async checkExists(this: IHookFunctions): Promise<boolean> {
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
if (webhookData.webhookId === undefined) {
|
|
// No webhook id is set so no webhook can exist
|
|
return false;
|
|
}
|
|
const endpoint = `/notifications/webhooks/${webhookData.webhookId}`;
|
|
try {
|
|
await payPalApiRequest.call(this, endpoint, 'GET');
|
|
} catch (error) {
|
|
if (error.response && error.response.name === 'INVALID_RESOURCE_ID') {
|
|
// Webhook does not exist
|
|
delete webhookData.webhookId;
|
|
return false;
|
|
}
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
return true;
|
|
},
|
|
|
|
async create(this: IHookFunctions): Promise<boolean> {
|
|
let webhook;
|
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
|
const events = this.getNodeParameter('events', []) as string[];
|
|
const body = {
|
|
url: webhookUrl,
|
|
event_types: events.map(event => {
|
|
return { name: event };
|
|
}),
|
|
};
|
|
const endpoint = '/notifications/webhooks';
|
|
try {
|
|
webhook = await payPalApiRequest.call(this, endpoint, 'POST', body);
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
|
|
if (webhook.id === undefined) {
|
|
return false;
|
|
}
|
|
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 = `/notifications/webhooks/${webhookData.webhookId}`;
|
|
try {
|
|
await payPalApiRequest.call(this, endpoint, 'DELETE', {});
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
delete webhookData.webhookId;
|
|
}
|
|
return true;
|
|
},
|
|
},
|
|
};
|
|
|
|
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
|
let webhook;
|
|
const webhookData = this.getWorkflowStaticData('node') as IDataObject;
|
|
const bodyData = this.getBodyData() as IDataObject;
|
|
const req = this.getRequestObject();
|
|
const headerData = this.getHeaderData() as IDataObject;
|
|
const endpoint = '/notifications/verify-webhook-signature';
|
|
|
|
if (headerData['PAYPAL-AUTH-ALGO'] !== undefined
|
|
&& headerData['PAYPAL-CERT-URL'] !== undefined
|
|
&& headerData['PAYPAL-TRANSMISSION-ID'] !== undefined
|
|
&& headerData['PAYPAL-TRANSMISSION-SIG'] !== undefined
|
|
&& headerData['PAYPAL-TRANSMISSION-TIME'] !== undefined) {
|
|
const body = {
|
|
auth_algo: headerData['PAYPAL-AUTH-ALGO'],
|
|
cert_url: headerData['PAYPAL-CERT-URL'],
|
|
transmission_id: headerData['PAYPAL-TRANSMISSION-ID'],
|
|
transmission_sig: headerData['PAYPAL-TRANSMISSION-SIG'],
|
|
transmission_time: headerData['PAYPAL-TRANSMISSION-TIME'],
|
|
webhook_id: webhookData.webhookId,
|
|
webhook_event: bodyData,
|
|
};
|
|
try {
|
|
webhook = await payPalApiRequest.call(this, endpoint, 'POST', body);
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
if (webhook.verification_status !== 'SUCCESS') {
|
|
return {};
|
|
}
|
|
} else {
|
|
return {};
|
|
}
|
|
return {
|
|
workflowData: [
|
|
this.helpers.returnJsonArray(req.body),
|
|
],
|
|
};
|
|
}
|
|
}
|