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,479 @@
|
||||
import type {
|
||||
IExecuteFunctions,
|
||||
IDataObject,
|
||||
ILoadOptionsFunctions,
|
||||
INodeExecutionData,
|
||||
INodePropertyOptions,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeConnectionTypes, NodeOperationError } from 'n8n-workflow';
|
||||
|
||||
import { keysToSnakeCase, shopifyApiRequest, shopifyApiRequestAllItems } from './GenericFunctions';
|
||||
import { orderFields, orderOperations } from './OrderDescription';
|
||||
import type { IAddress, IDiscountCode, ILineItem, IOrder } from './OrderInterface';
|
||||
import { productFields, productOperations } from './ProductDescription';
|
||||
import type { IProduct } from './ProductInterface';
|
||||
|
||||
export class Shopify implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Shopify',
|
||||
name: 'shopify',
|
||||
icon: 'file:shopify.svg',
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||
description: 'Consume Shopify API',
|
||||
defaults: {
|
||||
name: 'Shopify',
|
||||
},
|
||||
usableAsTool: true,
|
||||
inputs: [NodeConnectionTypes.Main],
|
||||
outputs: [NodeConnectionTypes.Main],
|
||||
credentials: [
|
||||
{
|
||||
name: 'shopifyApi',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
authentication: ['apiKey'],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'shopifyAccessTokenApi',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
authentication: ['accessToken'],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'shopifyOAuth2Api',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
authentication: ['oAuth2'],
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Shopify API Version: 2024-07',
|
||||
type: 'notice',
|
||||
name: 'apiVersion',
|
||||
default: '',
|
||||
isNodeSetting: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Authentication',
|
||||
name: 'authentication',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Access Token',
|
||||
value: 'accessToken',
|
||||
},
|
||||
{
|
||||
name: 'OAuth2',
|
||||
value: 'oAuth2',
|
||||
},
|
||||
{
|
||||
name: 'API Key',
|
||||
value: 'apiKey',
|
||||
},
|
||||
],
|
||||
default: 'apiKey',
|
||||
},
|
||||
{
|
||||
displayName: 'Resource',
|
||||
name: 'resource',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
options: [
|
||||
{
|
||||
name: 'Order',
|
||||
value: 'order',
|
||||
},
|
||||
{
|
||||
name: 'Product',
|
||||
value: 'product',
|
||||
},
|
||||
],
|
||||
default: 'order',
|
||||
},
|
||||
// ORDER
|
||||
...orderOperations,
|
||||
...orderFields,
|
||||
// PRODUCTS
|
||||
...productOperations,
|
||||
...productFields,
|
||||
],
|
||||
};
|
||||
|
||||
methods = {
|
||||
loadOptions: {
|
||||
// Get all the available products to display them to user so that they can
|
||||
// select them easily
|
||||
async getProducts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
const products = await shopifyApiRequestAllItems.call(
|
||||
this,
|
||||
'products',
|
||||
'GET',
|
||||
'/products.json',
|
||||
{},
|
||||
{ fields: 'id,title' },
|
||||
);
|
||||
for (const product of products) {
|
||||
const productName = product.title;
|
||||
const productId = product.id;
|
||||
returnData.push({
|
||||
name: productName,
|
||||
value: productId,
|
||||
});
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available locations to display them to user so that they can
|
||||
// select them easily
|
||||
async getLocations(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
const locations = await shopifyApiRequestAllItems.call(
|
||||
this,
|
||||
'locations',
|
||||
'GET',
|
||||
'/locations.json',
|
||||
{},
|
||||
{ fields: 'id,name' },
|
||||
);
|
||||
for (const location of locations) {
|
||||
const locationName = location.name;
|
||||
const locationId = location.id;
|
||||
returnData.push({
|
||||
name: locationName,
|
||||
value: locationId,
|
||||
});
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData();
|
||||
const returnData: INodeExecutionData[] = [];
|
||||
const length = items.length;
|
||||
let responseData;
|
||||
const qs: IDataObject = {};
|
||||
const resource = this.getNodeParameter('resource', 0);
|
||||
const operation = this.getNodeParameter('operation', 0);
|
||||
for (let i = 0; i < length; i++) {
|
||||
try {
|
||||
if (resource === 'order') {
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/orders/order#create-2020-04
|
||||
if (operation === 'create') {
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i);
|
||||
const discount = additionalFields.discountCodesUi as IDataObject;
|
||||
const billing = additionalFields.billingAddressUi as IDataObject;
|
||||
const shipping = additionalFields.shippingAddressUi as IDataObject;
|
||||
const lineItem = (this.getNodeParameter('limeItemsUi', i) as IDataObject)
|
||||
.lineItemValues as IDataObject[];
|
||||
if (lineItem === undefined) {
|
||||
throw new NodeOperationError(
|
||||
this.getNode(),
|
||||
'At least one line item has to be added',
|
||||
{ itemIndex: i },
|
||||
);
|
||||
}
|
||||
const body: IOrder = {
|
||||
test: true,
|
||||
line_items: keysToSnakeCase(lineItem) as ILineItem[],
|
||||
};
|
||||
if (additionalFields.fulfillmentStatus) {
|
||||
body.fulfillment_status = additionalFields.fulfillmentStatus as string;
|
||||
}
|
||||
if (additionalFields.inventoryBehaviour) {
|
||||
body.inventory_behaviour = additionalFields.inventoryBehaviour as string;
|
||||
}
|
||||
if (additionalFields.locationId) {
|
||||
body.location_id = additionalFields.locationId as number;
|
||||
}
|
||||
if (additionalFields.note) {
|
||||
body.note = additionalFields.note as string;
|
||||
}
|
||||
if (additionalFields.sendFulfillmentReceipt) {
|
||||
body.send_fulfillment_receipt = additionalFields.sendFulfillmentReceipt as boolean;
|
||||
}
|
||||
if (additionalFields.sendReceipt) {
|
||||
body.send_receipt = additionalFields.sendReceipt as boolean;
|
||||
}
|
||||
if (additionalFields.sendReceipt) {
|
||||
body.send_receipt = additionalFields.sendReceipt as boolean;
|
||||
}
|
||||
if (additionalFields.sourceName) {
|
||||
body.source_name = additionalFields.sourceName as string;
|
||||
}
|
||||
if (additionalFields.tags) {
|
||||
body.tags = additionalFields.tags as string;
|
||||
}
|
||||
if (additionalFields.test) {
|
||||
body.test = additionalFields.test as boolean;
|
||||
}
|
||||
if (additionalFields.email) {
|
||||
body.email = additionalFields.email as string;
|
||||
}
|
||||
if (discount) {
|
||||
body.discount_codes = discount.discountCodesValues as IDiscountCode[];
|
||||
}
|
||||
if (billing) {
|
||||
body.billing_address = keysToSnakeCase(
|
||||
billing.billingAddressValues as IDataObject,
|
||||
)[0] as IAddress;
|
||||
}
|
||||
if (shipping) {
|
||||
body.shipping_address = keysToSnakeCase(
|
||||
shipping.shippingAddressValues as IDataObject,
|
||||
)[0] as IAddress;
|
||||
}
|
||||
responseData = await shopifyApiRequest.call(this, 'POST', '/orders.json', {
|
||||
order: body,
|
||||
});
|
||||
responseData = responseData.order;
|
||||
}
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/orders/order#destroy-2020-04
|
||||
if (operation === 'delete') {
|
||||
const orderId = this.getNodeParameter('orderId', i) as string;
|
||||
responseData = await shopifyApiRequest.call(this, 'DELETE', `/orders/${orderId}.json`);
|
||||
responseData = { success: true };
|
||||
}
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/orders/order#show-2020-04
|
||||
if (operation === 'get') {
|
||||
const orderId = this.getNodeParameter('orderId', i) as string;
|
||||
const options = this.getNodeParameter('options', i);
|
||||
if (options.fields) {
|
||||
qs.fields = options.fields as string;
|
||||
}
|
||||
responseData = await shopifyApiRequest.call(
|
||||
this,
|
||||
'GET',
|
||||
`/orders/${orderId}.json`,
|
||||
{},
|
||||
qs,
|
||||
);
|
||||
responseData = responseData.order;
|
||||
}
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/orders/order#index-2020-04
|
||||
if (operation === 'getAll') {
|
||||
const returnAll = this.getNodeParameter('returnAll', i);
|
||||
const options = this.getNodeParameter('options', i);
|
||||
if (options.fields) {
|
||||
qs.fields = options.fields as string;
|
||||
}
|
||||
if (options.attributionAppId) {
|
||||
qs.attribution_app_id = options.attributionAppId as string;
|
||||
}
|
||||
if (options.createdAtMin) {
|
||||
qs.created_at_min = options.createdAtMin as string;
|
||||
}
|
||||
if (options.createdAtMax) {
|
||||
qs.created_at_max = options.createdAtMax as string;
|
||||
}
|
||||
if (options.updatedAtMax) {
|
||||
qs.updated_at_max = options.updatedAtMax as string;
|
||||
}
|
||||
if (options.updatedAtMin) {
|
||||
qs.updated_at_min = options.updatedAtMin as string;
|
||||
}
|
||||
if (options.processedAtMin) {
|
||||
qs.processed_at_min = options.processedAtMin as string;
|
||||
}
|
||||
if (options.processedAtMax) {
|
||||
qs.processed_at_max = options.processedAtMax as string;
|
||||
}
|
||||
if (options.sinceId) {
|
||||
qs.since_id = options.sinceId as string;
|
||||
}
|
||||
if (options.ids) {
|
||||
qs.ids = options.ids as string;
|
||||
}
|
||||
if (options.status) {
|
||||
qs.status = options.status as string;
|
||||
}
|
||||
if (options.financialStatus) {
|
||||
qs.financial_status = options.financialStatus as string;
|
||||
}
|
||||
if (options.fulfillmentStatus) {
|
||||
qs.fulfillment_status = options.fulfillmentStatus as string;
|
||||
}
|
||||
|
||||
if (returnAll) {
|
||||
responseData = await shopifyApiRequestAllItems.call(
|
||||
this,
|
||||
'orders',
|
||||
'GET',
|
||||
'/orders.json',
|
||||
{},
|
||||
qs,
|
||||
);
|
||||
} else {
|
||||
qs.limit = this.getNodeParameter('limit', i);
|
||||
responseData = await shopifyApiRequest.call(this, 'GET', '/orders.json', {}, qs);
|
||||
responseData = responseData.orders;
|
||||
}
|
||||
}
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/orders/order#update-2019-10
|
||||
if (operation === 'update') {
|
||||
const orderId = this.getNodeParameter('orderId', i) as string;
|
||||
const updateFields = this.getNodeParameter('updateFields', i);
|
||||
const shipping = updateFields.shippingAddressUi as IDataObject;
|
||||
const body: IOrder = {};
|
||||
if (updateFields.locationId) {
|
||||
body.location_id = updateFields.locationId as number;
|
||||
}
|
||||
if (updateFields.note) {
|
||||
body.note = updateFields.note as string;
|
||||
}
|
||||
if (updateFields.sourceName) {
|
||||
body.source_name = updateFields.sourceName as string;
|
||||
}
|
||||
if (updateFields.tags) {
|
||||
body.tags = updateFields.tags as string;
|
||||
}
|
||||
if (updateFields.email) {
|
||||
body.email = updateFields.email as string;
|
||||
}
|
||||
if (shipping) {
|
||||
body.shipping_address = keysToSnakeCase(
|
||||
shipping.shippingAddressValues as IDataObject,
|
||||
)[0] as IAddress;
|
||||
}
|
||||
responseData = await shopifyApiRequest.call(this, 'PUT', `/orders/${orderId}.json`, {
|
||||
order: body,
|
||||
});
|
||||
responseData = responseData.order;
|
||||
}
|
||||
} else if (resource === 'product') {
|
||||
const productId = this.getNodeParameter('productId', i, '') as string;
|
||||
let body: IProduct = {};
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/products/product#create-2020-04
|
||||
if (operation === 'create') {
|
||||
const title = this.getNodeParameter('title', i) as string;
|
||||
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i, {});
|
||||
|
||||
if (additionalFields.productOptions) {
|
||||
const metadata = (additionalFields.productOptions as IDataObject)
|
||||
.option as IDataObject[];
|
||||
additionalFields.options = {};
|
||||
for (const data of metadata) {
|
||||
//@ts-ignore
|
||||
additionalFields.options[data.name as string] = data.value;
|
||||
}
|
||||
delete additionalFields.productOptions;
|
||||
}
|
||||
|
||||
body = additionalFields;
|
||||
|
||||
body.title = title;
|
||||
|
||||
responseData = await shopifyApiRequest.call(this, 'POST', '/products.json', {
|
||||
product: body,
|
||||
});
|
||||
responseData = responseData.product;
|
||||
}
|
||||
if (operation === 'delete') {
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/products/product#destroy-2020-04
|
||||
responseData = await shopifyApiRequest.call(
|
||||
this,
|
||||
'DELETE',
|
||||
`/products/${productId}.json`,
|
||||
);
|
||||
responseData = { success: true };
|
||||
}
|
||||
if (operation === 'get') {
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/products/product#show-2020-04
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i, {});
|
||||
Object.assign(qs, additionalFields);
|
||||
responseData = await shopifyApiRequest.call(
|
||||
this,
|
||||
'GET',
|
||||
`/products/${productId}.json`,
|
||||
{},
|
||||
qs,
|
||||
);
|
||||
responseData = responseData.product;
|
||||
}
|
||||
if (operation === 'getAll') {
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/products/product#index-2020-04
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i, {});
|
||||
|
||||
const returnAll = this.getNodeParameter('returnAll', i);
|
||||
|
||||
Object.assign(qs, additionalFields);
|
||||
|
||||
if (returnAll) {
|
||||
responseData = await shopifyApiRequestAllItems.call(
|
||||
this,
|
||||
'products',
|
||||
'GET',
|
||||
'/products.json',
|
||||
{},
|
||||
qs,
|
||||
);
|
||||
} else {
|
||||
qs.limit = this.getNodeParameter('limit', i);
|
||||
responseData = await shopifyApiRequest.call(this, 'GET', '/products.json', {}, qs);
|
||||
responseData = responseData.products;
|
||||
}
|
||||
}
|
||||
if (operation === 'update') {
|
||||
//https://shopify.dev/docs/admin-api/rest/reference/products/product?api[version]=2020-07#update-2020-07
|
||||
const updateFields = this.getNodeParameter('updateFields', i, {});
|
||||
|
||||
if (updateFields.productOptions) {
|
||||
const metadata = (updateFields.productOptions as IDataObject).option as IDataObject[];
|
||||
updateFields.options = {};
|
||||
for (const data of metadata) {
|
||||
//@ts-ignore
|
||||
updateFields.options[data.name as string] = data.value;
|
||||
}
|
||||
delete updateFields.productOptions;
|
||||
}
|
||||
|
||||
body = updateFields;
|
||||
|
||||
responseData = await shopifyApiRequest.call(
|
||||
this,
|
||||
'PUT',
|
||||
`/products/${productId}.json`,
|
||||
{ product: body },
|
||||
);
|
||||
|
||||
responseData = responseData.product;
|
||||
}
|
||||
}
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
||||
{ itemData: { item: i } },
|
||||
);
|
||||
|
||||
returnData.push(...executionData);
|
||||
} catch (error) {
|
||||
if (this.continueOnFail()) {
|
||||
const executionErrorData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray({ error: error.message }),
|
||||
{ itemData: { item: i } },
|
||||
);
|
||||
returnData.push(...executionErrorData);
|
||||
continue;
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
return [returnData];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user