n8n/packages/nodes-base/nodes/Shopify/ShopifyTrigger.node.ts

385 lines
8.8 KiB
TypeScript
Raw Normal View History

2019-12-02 13:21:55 -08:00
import {
IHookFunctions,
IWebhookFunctions,
} from 'n8n-core';
import {
IDataObject,
INodeType,
INodeTypeDescription,
2019-12-02 13:21:55 -08:00
IWebhookResponseData,
} from 'n8n-workflow';
import {
shopifyApiRequest,
} from './GenericFunctions';
2020-04-23 17:56:53 -07:00
import {
createHmac,
} from 'crypto';
2019-12-02 13:21:55 -08:00
export class ShopifyTrigger implements INodeType {
description: INodeTypeDescription = {
displayName: 'Shopify Trigger',
2020-05-12 06:08:19 -07:00
name: 'shopifyTrigger',
icon: 'file:shopify.svg',
2019-12-02 13:21:55 -08:00
group: ['trigger'],
version: 1,
subtitle: '={{$parameter["event"]}}',
2019-12-02 13:21:55 -08:00
description: 'Handle Shopify events via webhooks',
defaults: {
name: 'Shopify Trigger',
color: '#559922',
},
inputs: [],
outputs: ['main'],
credentials: [
{
name: 'shopifyApi',
required: true,
2020-10-22 06:46:03 -07:00
},
2019-12-02 13:21:55 -08:00
],
webhooks: [
{
name: 'default',
httpMethod: 'POST',
responseMode: 'onReceived',
path: 'webhook',
},
],
properties: [
{
displayName: 'Topic',
name: 'topic',
type: 'options',
default: '',
options:
[
{
name: 'App Uninstalled',
value: 'app/uninstalled',
2019-12-02 13:21:55 -08:00
},
{
name: 'Cart Created',
value: 'carts/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Cart Updated',
value: 'carts/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Checkout Created',
value: 'checkouts/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Checkout Delete',
value: 'checkouts/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Checkout Update',
value: 'checkouts/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Collection Listings Added',
value: 'collection_listings/add',
2019-12-02 13:21:55 -08:00
},
{
name: 'Collection Listings Removed',
value: 'collection_listings/remove',
2019-12-02 13:21:55 -08:00
},
{
name: 'Collection Listings Updated',
value: 'collection_listings/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Collection Created',
value: 'collections/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Collection Deleted',
value: 'collections/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Collection Updated',
value: 'collections/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Customer Groups Created',
value: 'customer_groups/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Customer Groups Deleted',
value: 'customer_groups/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Customer Groups Updated',
value: 'customer_groups/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Customer Created',
value: 'customers/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Customer Deleted',
value: 'customers/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Customer disabled',
value: 'customers/disable',
2019-12-02 13:21:55 -08:00
},
{
name: 'Customer Enabled',
value: 'customers/enable',
2019-12-02 13:21:55 -08:00
},
{
name: 'Customer Updated',
value: 'customers/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Draft Orders Created',
value: 'draft_orders/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Draft Orders Deleted',
value: 'draft_orders/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Draft orders Updated',
value: 'draft_orders/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Fulfillment Events Created',
value: 'fulfillment_events/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Fulfillment Events Deleted',
value: 'fulfillment_events/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Fulfillment created',
value: 'fulfillments/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Fulfillment Updated',
value: 'fulfillments/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Inventory Items Created',
value: 'inventory_items/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Inventory Items Deleted',
value: 'inventory_items/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Inventory Items Updated',
value: 'inventory_items/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Inventory Levels Connected',
value: 'inventory_levels/connect',
2019-12-02 13:21:55 -08:00
},
{
name: 'Inventory Levels Disconnected',
value: 'inventory_levels/disconnect',
2019-12-02 13:21:55 -08:00
},
{
name: 'Inventory Levels Updated',
value: 'inventory_levels/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Locale Created',
value: 'locales/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Locale Updated',
value: 'locales/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Location Created',
value: 'locations/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Location Deleted',
value: 'locations/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Location Updated',
value: 'locations/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Order transactions Created',
value: 'order_transactions/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Order cancelled',
value: 'orders/cancelled',
2019-12-02 13:21:55 -08:00
},
{
name: 'Order Created',
value: 'orders/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Orders Deleted',
value: 'orders/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Order Fulfilled',
value: 'orders/fulfilled',
2019-12-02 13:21:55 -08:00
},
{
name: 'Order Paid',
value: 'orders/paid',
2019-12-02 13:21:55 -08:00
},
{
name: 'Order Partially Fulfilled',
value: 'orders/partially_fulfilled',
2019-12-02 13:21:55 -08:00
},
{
name: 'Order Updated',
value: 'orders/updated',
2019-12-02 13:21:55 -08:00
},
{
name: 'Product Listings Added',
value: 'product_listings/add',
2019-12-02 13:21:55 -08:00
},
{
name: 'Product Listings Removed',
value: 'product_listings/remove',
2019-12-02 13:21:55 -08:00
},
{
name: 'Product Listings Updated',
value: 'product_listings/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Product Created',
value: 'products/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Product Deleted',
value: 'products/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Product Updated',
value: 'products/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Refund Created',
value: 'refunds/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Shop Updated',
value: 'shop/update',
2019-12-02 13:21:55 -08:00
},
{
name: 'Tender Transactions Created',
value: 'tender_transactions/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Theme Created',
value: 'themes/create',
2019-12-02 13:21:55 -08:00
},
{
name: 'Theme Deleted',
value: 'themes/delete',
2019-12-02 13:21:55 -08:00
},
{
name: 'Theme Published',
value: 'themes/publish',
2019-12-02 13:21:55 -08:00
},
{
name: 'Theme Updated',
value: 'themes/update',
},
2019-12-02 13:21:55 -08:00
],
description: 'Event that triggers the webhook',
},
],
};
// @ts-ignore (because of request)
webhookMethods = {
default: {
async checkExists(this: IHookFunctions): Promise<boolean> {
const topic = this.getNodeParameter('topic') as string;
2019-12-02 13:21:55 -08:00
const webhookData = this.getWorkflowStaticData('node');
const webhookUrl = this.getNodeWebhookUrl('default');
const endpoint = `/webhooks`;
:sparkles: Improve node error handling (#1309) * Add path mapping and response error interfaces * Add error handling and throwing functionality * Refactor error handling into a single function * Re-implement error handling in Hacker News node * Fix linting details * Re-implement error handling in Spotify node * Re-implement error handling in G Suite Admin node * :construction: create basic setup NodeError * :construction: add httpCodes * :construction: add path priolist * :construction: handle statusCode in error, adjust interfaces * :construction: fixing type issues w/Ivan * :construction: add error exploration * 👔 fix linter issues * :wrench: improve object check * :construction: remove path passing from NodeApiError * :construction: add multi error + refactor findProperty method * 👔 allow any * :wrench: handle multi error message callback * :zap: change return type of callback * :zap: add customCallback to MultiError * :construction: refactor to use INode * :hammer: handle arrays, continue search after first null property found * 🚫 refactor method access * :construction: setup NodeErrorView * :zap: change timestamp to Date.now * :books: Add documentation for methods and constants * :construction: change message setting * 🚚 move NodeErrors to workflow * :sparkles: add new ErrorView for Nodes * :art: improve error notification * :art: refactor interfaces * :zap: add WorkflowOperationError, refactor error throwing * 👕 fix linter issues * :art: rename param * :bug: fix handling normal errors * :zap: add usage of NodeApiError * :art: fix throw new error instead of constructor * :art: remove unnecessary code/comments * :art: adjusted spacing + updated status messages * :art: fix tab indentation * ✨ Replace current errors with custom errors (#1576) * :zap: Introduce NodeApiError in catch blocks * :zap: Introduce NodeOperationError in nodes * :zap: Add missing errors and remove incompatible * :zap: Fix NodeOperationError in incompatible nodes * :wrench: Adjust error handling in missed nodes PayPal, FileMaker, Reddit, Taiga and Facebook Graph API nodes * :hammer: Adjust Strava Trigger node error handling * :hammer: Adjust AWS nodes error handling * :hammer: Remove duplicate instantiation of NodeApiError * :bug: fix strava trigger node error handling * Add XML parsing to NodeApiError constructor (#1633) * :bug: Remove type annotation from catch variable * :sparkles: Add XML parsing to NodeApiError * :zap: Simplify error handling in Rekognition node * :zap: Pass in XML flag in generic functions * :fire: Remove try/catch wrappers at call sites * :hammer: Refactor setting description from XML * :hammer: Refactor let to const in resource loaders * :zap: Find property in parsed XML * :zap: Change let to const * :fire: Remove unneeded try/catch block * :shirt: Fix linting issues * :bug: Fix errors from merge conflict resolution * :zap: Add custom errors to latest contributions * :shirt: Fix linting issues * :zap: Refactor MongoDB helpers for custom errors * :bug: Correct custom error type * :zap: Apply feedback to A nodes * :zap: Apply feedback to missed A node * :zap: Apply feedback to B-D nodes * :zap: Apply feedback to E-F nodes * :zap: Apply feedback to G nodes * :zap: Apply feedback to H-L nodes * :zap: Apply feedback to M nodes * :zap: Apply feedback to P nodes * :zap: Apply feedback to R nodes * :zap: Apply feedback to S nodes * :zap: Apply feedback to T nodes * :zap: Apply feedback to V-Z nodes * :zap: Add HTTP code to iterable node error * :hammer: Standardize e as error * :hammer: Standardize err as error * :zap: Fix error handling for non-standard nodes Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <1849459+BHesseldieck@users.noreply.github.com>
2021-04-16 09:33:36 -07:00
const { webhooks } = await shopifyApiRequest.call(this, 'GET', endpoint, {}, { topic });
for (const webhook of webhooks) {
if (webhook.address === webhookUrl) {
webhookData.webhookId = webhook.id;
return true;
2019-12-02 13:21:55 -08:00
}
}
return false;
2019-12-02 13:21:55 -08:00
},
async create(this: IHookFunctions): Promise<boolean> {
const webhookUrl = this.getNodeWebhookUrl('default');
const topic = this.getNodeParameter('topic') as string;
const webhookData = this.getWorkflowStaticData('node');
2019-12-02 13:21:55 -08:00
const endpoint = `/webhooks.json`;
const body = {
webhook: {
topic,
address: webhookUrl,
format: 'json',
2020-10-22 06:46:03 -07:00
},
2019-12-02 13:21:55 -08:00
};
let responseData;
:sparkles: Improve node error handling (#1309) * Add path mapping and response error interfaces * Add error handling and throwing functionality * Refactor error handling into a single function * Re-implement error handling in Hacker News node * Fix linting details * Re-implement error handling in Spotify node * Re-implement error handling in G Suite Admin node * :construction: create basic setup NodeError * :construction: add httpCodes * :construction: add path priolist * :construction: handle statusCode in error, adjust interfaces * :construction: fixing type issues w/Ivan * :construction: add error exploration * 👔 fix linter issues * :wrench: improve object check * :construction: remove path passing from NodeApiError * :construction: add multi error + refactor findProperty method * 👔 allow any * :wrench: handle multi error message callback * :zap: change return type of callback * :zap: add customCallback to MultiError * :construction: refactor to use INode * :hammer: handle arrays, continue search after first null property found * 🚫 refactor method access * :construction: setup NodeErrorView * :zap: change timestamp to Date.now * :books: Add documentation for methods and constants * :construction: change message setting * 🚚 move NodeErrors to workflow * :sparkles: add new ErrorView for Nodes * :art: improve error notification * :art: refactor interfaces * :zap: add WorkflowOperationError, refactor error throwing * 👕 fix linter issues * :art: rename param * :bug: fix handling normal errors * :zap: add usage of NodeApiError * :art: fix throw new error instead of constructor * :art: remove unnecessary code/comments * :art: adjusted spacing + updated status messages * :art: fix tab indentation * ✨ Replace current errors with custom errors (#1576) * :zap: Introduce NodeApiError in catch blocks * :zap: Introduce NodeOperationError in nodes * :zap: Add missing errors and remove incompatible * :zap: Fix NodeOperationError in incompatible nodes * :wrench: Adjust error handling in missed nodes PayPal, FileMaker, Reddit, Taiga and Facebook Graph API nodes * :hammer: Adjust Strava Trigger node error handling * :hammer: Adjust AWS nodes error handling * :hammer: Remove duplicate instantiation of NodeApiError * :bug: fix strava trigger node error handling * Add XML parsing to NodeApiError constructor (#1633) * :bug: Remove type annotation from catch variable * :sparkles: Add XML parsing to NodeApiError * :zap: Simplify error handling in Rekognition node * :zap: Pass in XML flag in generic functions * :fire: Remove try/catch wrappers at call sites * :hammer: Refactor setting description from XML * :hammer: Refactor let to const in resource loaders * :zap: Find property in parsed XML * :zap: Change let to const * :fire: Remove unneeded try/catch block * :shirt: Fix linting issues * :bug: Fix errors from merge conflict resolution * :zap: Add custom errors to latest contributions * :shirt: Fix linting issues * :zap: Refactor MongoDB helpers for custom errors * :bug: Correct custom error type * :zap: Apply feedback to A nodes * :zap: Apply feedback to missed A node * :zap: Apply feedback to B-D nodes * :zap: Apply feedback to E-F nodes * :zap: Apply feedback to G nodes * :zap: Apply feedback to H-L nodes * :zap: Apply feedback to M nodes * :zap: Apply feedback to P nodes * :zap: Apply feedback to R nodes * :zap: Apply feedback to S nodes * :zap: Apply feedback to T nodes * :zap: Apply feedback to V-Z nodes * :zap: Add HTTP code to iterable node error * :hammer: Standardize e as error * :hammer: Standardize err as error * :zap: Fix error handling for non-standard nodes Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <1849459+BHesseldieck@users.noreply.github.com>
2021-04-16 09:33:36 -07:00
responseData = await shopifyApiRequest.call(this, 'POST', endpoint, body);
2019-12-02 13:21:55 -08:00
if (responseData.webhook === undefined || responseData.webhook.id === undefined) {
// Required data is missing so was not successful
return false;
}
webhookData.webhookId = responseData.webhook.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}.json`;
try {
await shopifyApiRequest.call(this, 'DELETE', endpoint, {});
:sparkles: Improve node error handling (#1309) * Add path mapping and response error interfaces * Add error handling and throwing functionality * Refactor error handling into a single function * Re-implement error handling in Hacker News node * Fix linting details * Re-implement error handling in Spotify node * Re-implement error handling in G Suite Admin node * :construction: create basic setup NodeError * :construction: add httpCodes * :construction: add path priolist * :construction: handle statusCode in error, adjust interfaces * :construction: fixing type issues w/Ivan * :construction: add error exploration * 👔 fix linter issues * :wrench: improve object check * :construction: remove path passing from NodeApiError * :construction: add multi error + refactor findProperty method * 👔 allow any * :wrench: handle multi error message callback * :zap: change return type of callback * :zap: add customCallback to MultiError * :construction: refactor to use INode * :hammer: handle arrays, continue search after first null property found * 🚫 refactor method access * :construction: setup NodeErrorView * :zap: change timestamp to Date.now * :books: Add documentation for methods and constants * :construction: change message setting * 🚚 move NodeErrors to workflow * :sparkles: add new ErrorView for Nodes * :art: improve error notification * :art: refactor interfaces * :zap: add WorkflowOperationError, refactor error throwing * 👕 fix linter issues * :art: rename param * :bug: fix handling normal errors * :zap: add usage of NodeApiError * :art: fix throw new error instead of constructor * :art: remove unnecessary code/comments * :art: adjusted spacing + updated status messages * :art: fix tab indentation * ✨ Replace current errors with custom errors (#1576) * :zap: Introduce NodeApiError in catch blocks * :zap: Introduce NodeOperationError in nodes * :zap: Add missing errors and remove incompatible * :zap: Fix NodeOperationError in incompatible nodes * :wrench: Adjust error handling in missed nodes PayPal, FileMaker, Reddit, Taiga and Facebook Graph API nodes * :hammer: Adjust Strava Trigger node error handling * :hammer: Adjust AWS nodes error handling * :hammer: Remove duplicate instantiation of NodeApiError * :bug: fix strava trigger node error handling * Add XML parsing to NodeApiError constructor (#1633) * :bug: Remove type annotation from catch variable * :sparkles: Add XML parsing to NodeApiError * :zap: Simplify error handling in Rekognition node * :zap: Pass in XML flag in generic functions * :fire: Remove try/catch wrappers at call sites * :hammer: Refactor setting description from XML * :hammer: Refactor let to const in resource loaders * :zap: Find property in parsed XML * :zap: Change let to const * :fire: Remove unneeded try/catch block * :shirt: Fix linting issues * :bug: Fix errors from merge conflict resolution * :zap: Add custom errors to latest contributions * :shirt: Fix linting issues * :zap: Refactor MongoDB helpers for custom errors * :bug: Correct custom error type * :zap: Apply feedback to A nodes * :zap: Apply feedback to missed A node * :zap: Apply feedback to B-D nodes * :zap: Apply feedback to E-F nodes * :zap: Apply feedback to G nodes * :zap: Apply feedback to H-L nodes * :zap: Apply feedback to M nodes * :zap: Apply feedback to P nodes * :zap: Apply feedback to R nodes * :zap: Apply feedback to S nodes * :zap: Apply feedback to T nodes * :zap: Apply feedback to V-Z nodes * :zap: Add HTTP code to iterable node error * :hammer: Standardize e as error * :hammer: Standardize err as error * :zap: Fix error handling for non-standard nodes Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <1849459+BHesseldieck@users.noreply.github.com>
2021-04-16 09:33:36 -07:00
} catch (error) {
2019-12-02 13:21:55 -08:00
return false;
}
delete webhookData.webhookId;
}
return true;
},
},
};
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
const headerData = this.getHeaderData() as IDataObject;
const req = this.getRequestObject();
const credentials = await this.getCredentials('shopifyApi') as IDataObject;
const topic = this.getNodeParameter('topic') as string;
2019-12-02 13:21:55 -08:00
if (headerData['x-shopify-topic'] !== undefined
&& headerData['x-shopify-hmac-sha256'] !== undefined
&& headerData['x-shopify-shop-domain'] !== undefined
&& headerData['x-shopify-api-version'] !== undefined) {
2019-12-02 13:21:55 -08:00
// @ts-ignore
const computedSignature = createHmac('sha256', credentials.sharedSecret as string).update(req.rawBody).digest('base64');
2019-12-02 13:21:55 -08:00
if (headerData['x-shopify-hmac-sha256'] !== computedSignature) {
return {};
}
if (topic !== headerData['x-shopify-topic']) {
2019-12-02 13:21:55 -08:00
return {};
}
} else {
return {};
}
return {
workflowData: [
2020-10-22 06:46:03 -07:00
this.helpers.returnJsonArray(req.body),
2019-12-02 13:21:55 -08:00
],
};
}
}