2020-01-29 17:53:01 -08:00
|
|
|
import {
|
|
|
|
IHookFunctions,
|
|
|
|
IWebhookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
INodeType,
|
2020-10-01 05:01:39 -07:00
|
|
|
INodeTypeDescription,
|
2020-01-29 17:53:01 -08:00
|
|
|
IWebhookResponseData,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
getAutomaticSecret,
|
2020-10-01 05:01:39 -07:00
|
|
|
woocommerceApiRequest,
|
2020-01-29 17:53:01 -08:00
|
|
|
} from './GenericFunctions';
|
|
|
|
|
2020-11-20 07:56:51 -08:00
|
|
|
import {
|
|
|
|
createHmac,
|
|
|
|
} from 'crypto';
|
2020-01-29 17:53:01 -08:00
|
|
|
|
|
|
|
export class WooCommerceTrigger implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'WooCommerce Trigger',
|
|
|
|
name: 'wooCommerceTrigger',
|
2021-08-01 12:33:21 -07:00
|
|
|
icon: 'file:wooCommerce.svg',
|
2020-01-29 17:53:01 -08:00
|
|
|
group: ['trigger'],
|
|
|
|
version: 1,
|
|
|
|
description: 'Handle WooCommerce events via webhooks',
|
|
|
|
defaults: {
|
|
|
|
name: 'WooCommerce Trigger',
|
|
|
|
},
|
|
|
|
inputs: [],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'wooCommerceApi',
|
|
|
|
required: true,
|
2020-10-22 06:46:03 -07:00
|
|
|
},
|
2020-01-29 17:53:01 -08:00
|
|
|
],
|
|
|
|
webhooks: [
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
httpMethod: 'POST',
|
|
|
|
responseMode: 'onReceived',
|
|
|
|
path: 'webhook',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Event',
|
|
|
|
name: 'event',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'coupon.created',
|
|
|
|
value: 'coupon.created',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'coupon.deleted',
|
|
|
|
value: 'coupon.deleted',
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'coupon.updated',
|
|
|
|
value: 'coupon.updated',
|
2020-01-29 17:53:01 -08:00
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'customer.created',
|
|
|
|
value: 'customer.created',
|
2020-01-29 17:53:01 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'customer.deleted',
|
|
|
|
value: 'customer.deleted',
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'customer.updated',
|
|
|
|
value: 'customer.updated',
|
2020-01-29 17:53:01 -08:00
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'order.created',
|
|
|
|
value: 'order.created',
|
2020-01-29 17:53:01 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'order.deleted',
|
|
|
|
value: 'order.deleted',
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'order.updated',
|
|
|
|
value: 'order.updated',
|
2020-01-29 17:53:01 -08:00
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'product.created',
|
|
|
|
value: 'product.created',
|
2020-01-29 17:53:01 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'product.deleted',
|
|
|
|
value: 'product.deleted',
|
|
|
|
},
|
2022-06-03 10:23:49 -07:00
|
|
|
{
|
|
|
|
name: 'product.updated',
|
|
|
|
value: 'product.updated',
|
|
|
|
},
|
2020-01-29 17:53:01 -08:00
|
|
|
],
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Determines which resource events the webhook is triggered for',
|
2020-01-29 17:53:01 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
webhookMethods = {
|
|
|
|
default: {
|
|
|
|
async checkExists(this: IHookFunctions): Promise<boolean> {
|
2020-11-20 07:56:51 -08:00
|
|
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
2020-01-29 17:53:01 -08:00
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
2020-11-20 07:56:51 -08:00
|
|
|
const currentEvent = this.getNodeParameter('event') as string;
|
|
|
|
const endpoint = `/webhooks`;
|
2021-08-01 12:33:21 -07:00
|
|
|
|
2020-11-20 07:56:51 -08:00
|
|
|
const webhooks = await woocommerceApiRequest.call(this, 'GET', endpoint, {}, { status: 'active', per_page: 100 });
|
|
|
|
|
|
|
|
for (const webhook of webhooks) {
|
|
|
|
if (webhook.status === 'active'
|
|
|
|
&& webhook.delivery_url === webhookUrl
|
|
|
|
&& webhook.topic === currentEvent) {
|
|
|
|
webhookData.webhookId = webhook.id;
|
|
|
|
return true;
|
|
|
|
}
|
2020-01-29 17:53:01 -08:00
|
|
|
}
|
2020-11-20 07:56:51 -08:00
|
|
|
return false;
|
2020-01-29 17:53:01 -08:00
|
|
|
},
|
|
|
|
async create(this: IHookFunctions): Promise<boolean> {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('wooCommerceApi');
|
2020-01-29 17:53:01 -08:00
|
|
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
const event = this.getNodeParameter('event') as string;
|
2022-04-14 23:00:47 -07:00
|
|
|
const secret = getAutomaticSecret(credentials);
|
2020-01-29 17:53:01 -08:00
|
|
|
const endpoint = '/webhooks';
|
|
|
|
const body: IDataObject = {
|
|
|
|
delivery_url: webhookUrl,
|
|
|
|
topic: event,
|
|
|
|
secret,
|
|
|
|
};
|
|
|
|
const { id } = await woocommerceApiRequest.call(this, 'POST', endpoint, body);
|
|
|
|
webhookData.webhookId = id;
|
|
|
|
webhookData.secret = secret;
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
async delete(this: IHookFunctions): Promise<boolean> {
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
const endpoint = `/webhooks/${webhookData.webhookId}`;
|
|
|
|
try {
|
|
|
|
await woocommerceApiRequest.call(this, 'DELETE', endpoint, {}, { force: true });
|
|
|
|
} catch(error) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
delete webhookData.webhookId;
|
|
|
|
delete webhookData.secret;
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
//@ts-ignore
|
|
|
|
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
|
|
|
|
const req = this.getRequestObject();
|
|
|
|
const headerData = this.getHeaderData();
|
|
|
|
const webhookData = this.getWorkflowStaticData('node');
|
|
|
|
//@ts-ignore
|
|
|
|
if (headerData['x-wc-webhook-id'] === undefined) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
//@ts-ignore
|
|
|
|
const computedSignature = createHmac('sha256',webhookData.secret as string).update(req.rawBody).digest('base64');
|
|
|
|
//@ts-ignore
|
|
|
|
if (headerData['x-wc-webhook-signature'] !== computedSignature) {
|
|
|
|
// Signature is not valid so ignore call
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
workflowData: [
|
|
|
|
this.helpers.returnJsonArray(req.body),
|
|
|
|
],
|
2020-01-29 20:06:47 -08:00
|
|
|
};
|
2020-01-29 17:53:01 -08:00
|
|
|
}
|
2021-08-01 12:33:21 -07:00
|
|
|
}
|