mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
✨ added order resource
This commit is contained in:
parent
effe90a0be
commit
530bafd2bc
|
@ -1,5 +1,7 @@
|
||||||
import { OptionsWithUri } from 'request';
|
import { OptionsWithUri } from 'request';
|
||||||
import { createHash } from 'crypto';
|
import { createHash } from 'crypto';
|
||||||
|
import { snakeCase } from 'change-case';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
IExecuteFunctions,
|
IExecuteFunctions,
|
||||||
IExecuteSingleFunctions,
|
IExecuteSingleFunctions,
|
||||||
|
@ -7,7 +9,16 @@ import {
|
||||||
ILoadOptionsFunctions,
|
ILoadOptionsFunctions,
|
||||||
IWebhookFunctions,
|
IWebhookFunctions,
|
||||||
} from 'n8n-core';
|
} from 'n8n-core';
|
||||||
import { IDataObject, ICredentialDataDecryptedObject } from 'n8n-workflow';
|
import {
|
||||||
|
IDataObject,
|
||||||
|
ICredentialDataDecryptedObject
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
import {
|
||||||
|
IShoppingLine,
|
||||||
|
IFeeLine,
|
||||||
|
ILineItem,
|
||||||
|
ICouponLine
|
||||||
|
} from './OrderInterface';
|
||||||
|
|
||||||
export async function woocommerceApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IWebhookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
export async function woocommerceApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IWebhookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
||||||
const credentials = this.getCredentials('wooCommerceApi');
|
const credentials = this.getCredentials('wooCommerceApi');
|
||||||
|
@ -77,3 +88,53 @@ export function getAutomaticSecret(credentials: ICredentialDataDecryptedObject)
|
||||||
const data = `${credentials.consumerKey},${credentials.consumerSecret}`;
|
const data = `${credentials.consumerKey},${credentials.consumerSecret}`;
|
||||||
return createHash('md5').update(data).digest('hex');
|
return createHash('md5').update(data).digest('hex');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function setMetadata(data:
|
||||||
|
IShoppingLine[] |
|
||||||
|
IShoppingLine[] |
|
||||||
|
IFeeLine[] |
|
||||||
|
ILineItem[] |
|
||||||
|
ICouponLine[]) {
|
||||||
|
for (let i = 0; i < data.length; i++) {
|
||||||
|
//@ts-ignore\
|
||||||
|
if (data[i].metadataUi && data[i].metadataUi.metadataValues) {
|
||||||
|
//@ts-ignore
|
||||||
|
data[i].meta_data = data[i].metadataUi.metadataValues;
|
||||||
|
//@ts-ignore
|
||||||
|
delete data[i].metadataUi
|
||||||
|
console.log(data[i]);
|
||||||
|
} else {
|
||||||
|
//@ts-ignore
|
||||||
|
delete data[i].metadataUi;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function toSnakeCase(data:
|
||||||
|
IShoppingLine[] |
|
||||||
|
IShoppingLine[] |
|
||||||
|
IFeeLine[] |
|
||||||
|
ILineItem[] |
|
||||||
|
ICouponLine[] |
|
||||||
|
IDataObject) {
|
||||||
|
if (!Array.isArray(data)) {
|
||||||
|
data = [data];
|
||||||
|
}
|
||||||
|
let remove = false;
|
||||||
|
for (let i = 0; i < data.length; i++) {
|
||||||
|
for (const key of Object.keys(data[i])) {
|
||||||
|
//@ts-ignore
|
||||||
|
if (data[i][snakeCase(key)] === undefined) {
|
||||||
|
remove = true;
|
||||||
|
}
|
||||||
|
//@ts-ignore
|
||||||
|
data[i][snakeCase(key)] = data[i][key]
|
||||||
|
if (remove) {
|
||||||
|
//@ts-ignore
|
||||||
|
delete data[i][key];
|
||||||
|
remove = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
1701
packages/nodes-base/nodes/WooCommerce/OrderDescription.ts
Normal file
1701
packages/nodes-base/nodes/WooCommerce/OrderDescription.ts
Normal file
File diff suppressed because it is too large
Load diff
65
packages/nodes-base/nodes/WooCommerce/OrderInterface.ts
Normal file
65
packages/nodes-base/nodes/WooCommerce/OrderInterface.ts
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
import { IDataObject } from "n8n-workflow";
|
||||||
|
|
||||||
|
export interface IAddress {
|
||||||
|
first_name?: string;
|
||||||
|
last_name?: string;
|
||||||
|
company?: string;
|
||||||
|
address_1?: string;
|
||||||
|
address_2?: string;
|
||||||
|
city?: string;
|
||||||
|
state?: string;
|
||||||
|
postcode?: string;
|
||||||
|
country?: string;
|
||||||
|
email?: string;
|
||||||
|
phone?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ILineItem {
|
||||||
|
name?: string;
|
||||||
|
product_id?: number;
|
||||||
|
variation_id?: number;
|
||||||
|
quantity?: string;
|
||||||
|
tax_class?: string;
|
||||||
|
subtotal?: string;
|
||||||
|
total?: string;
|
||||||
|
meta_data?: IDataObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IShoppingLine {
|
||||||
|
method_title?: string;
|
||||||
|
method_id?: number;
|
||||||
|
total?: string;
|
||||||
|
meta_data?: IDataObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IFeeLine {
|
||||||
|
name?: string;
|
||||||
|
tax_class?: string;
|
||||||
|
tax_status?: string;
|
||||||
|
total?: string;
|
||||||
|
meta_data?: IDataObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ICouponLine {
|
||||||
|
code?: string;
|
||||||
|
meta_data?: IDataObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IOrder {
|
||||||
|
billing?: IAddress;
|
||||||
|
coupon_lines?: ICouponLine[];
|
||||||
|
currency?: string;
|
||||||
|
customer_id?: number;
|
||||||
|
customer_note?: string;
|
||||||
|
fee_lines?: IFeeLine[];
|
||||||
|
line_items?: ILineItem[];
|
||||||
|
meta_data?: IDataObject[];
|
||||||
|
parent_id?: number;
|
||||||
|
payment_method?: string;
|
||||||
|
payment_method_title?: string;
|
||||||
|
set_paid?: boolean;
|
||||||
|
shipping?: IAddress;
|
||||||
|
shipping_lines?: IShoppingLine[];
|
||||||
|
status?: string;
|
||||||
|
transaction_id?: string;
|
||||||
|
}
|
|
@ -12,14 +12,30 @@ import {
|
||||||
import {
|
import {
|
||||||
woocommerceApiRequest,
|
woocommerceApiRequest,
|
||||||
woocommerceApiRequestAllItems,
|
woocommerceApiRequestAllItems,
|
||||||
|
toSnakeCase,
|
||||||
|
setMetadata,
|
||||||
} from './GenericFunctions';
|
} from './GenericFunctions';
|
||||||
import {
|
import {
|
||||||
productFields,
|
productFields,
|
||||||
productOperations,
|
productOperations,
|
||||||
} from './ProductDescription';
|
} from './ProductDescription';
|
||||||
import {
|
import {
|
||||||
IProduct, IImage, IDimension,
|
orderFields,
|
||||||
|
orderOperations,
|
||||||
|
} from './Orderdescription';
|
||||||
|
import {
|
||||||
|
IProduct,
|
||||||
|
IImage,
|
||||||
|
IDimension,
|
||||||
} from './ProductInterface';
|
} from './ProductInterface';
|
||||||
|
import {
|
||||||
|
IOrder,
|
||||||
|
IAddress,
|
||||||
|
ICouponLine,
|
||||||
|
IFeeLine,
|
||||||
|
ILineItem,
|
||||||
|
IShoppingLine,
|
||||||
|
} from './OrderInterface';
|
||||||
|
|
||||||
export class WooCommerce implements INodeType {
|
export class WooCommerce implements INodeType {
|
||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
|
@ -52,12 +68,18 @@ export class WooCommerce implements INodeType {
|
||||||
name: 'Product',
|
name: 'Product',
|
||||||
value: 'product',
|
value: 'product',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Order',
|
||||||
|
value: 'order',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
default: 'product',
|
default: 'product',
|
||||||
description: 'Resource to consume.',
|
description: 'Resource to consume.',
|
||||||
},
|
},
|
||||||
...productOperations,
|
...productOperations,
|
||||||
...productFields,
|
...productFields,
|
||||||
|
...orderOperations,
|
||||||
|
...orderFields,
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -415,6 +437,201 @@ export class WooCommerce implements INodeType {
|
||||||
responseData = await woocommerceApiRequest.call(this,'DELETE', `/products/${productId}`, {}, { force: true });
|
responseData = await woocommerceApiRequest.call(this,'DELETE', `/products/${productId}`, {}, { force: true });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (resource === 'order') {
|
||||||
|
//https://woocommerce.github.io/woocommerce-rest-api-docs/#create-an-order
|
||||||
|
if (operation === 'create') {
|
||||||
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||||
|
const body: IOrder = {};
|
||||||
|
if (additionalFields.currency) {
|
||||||
|
body.currency = additionalFields.currency as string;
|
||||||
|
}
|
||||||
|
if (additionalFields.customerId) {
|
||||||
|
body.customer_id = parseInt(additionalFields.customerId as string, 10);
|
||||||
|
}
|
||||||
|
if (additionalFields.customerNote) {
|
||||||
|
body.customer_note = additionalFields.customerNote as string;
|
||||||
|
}
|
||||||
|
if (additionalFields.parentId) {
|
||||||
|
body.parent_id = parseInt(additionalFields.parentId as string, 10);
|
||||||
|
}
|
||||||
|
if (additionalFields.paymentMethodId) {
|
||||||
|
body.payment_method = additionalFields.paymentMethodId as string
|
||||||
|
}
|
||||||
|
if (additionalFields.paymentMethodTitle) {
|
||||||
|
body.payment_method_title = additionalFields.paymentMethodTitle as string
|
||||||
|
}
|
||||||
|
if (additionalFields.setPaid) {
|
||||||
|
body.set_paid = additionalFields.setPaid as boolean;
|
||||||
|
}
|
||||||
|
if (additionalFields.status) {
|
||||||
|
body.status = additionalFields.status as string;
|
||||||
|
}
|
||||||
|
if (additionalFields.transactionID) {
|
||||||
|
body.transaction_id = additionalFields.transactionID as string;
|
||||||
|
}
|
||||||
|
const billing = (this.getNodeParameter('billingUi', i) as IDataObject).billingValues as IAddress;
|
||||||
|
if (billing !== undefined) {
|
||||||
|
body.billing = billing;
|
||||||
|
toSnakeCase(billing as IDataObject);
|
||||||
|
}
|
||||||
|
const shipping = (this.getNodeParameter('shippingUi', i) as IDataObject).shippingValues as IAddress;
|
||||||
|
if (shipping !== undefined) {
|
||||||
|
body.shipping = shipping;
|
||||||
|
toSnakeCase(shipping as IDataObject);
|
||||||
|
}
|
||||||
|
const couponLines = (this.getNodeParameter('couponLinesUi', i) as IDataObject).couponLinesValues as ICouponLine[];
|
||||||
|
if (couponLines) {
|
||||||
|
body.coupon_lines = couponLines;
|
||||||
|
setMetadata(couponLines);
|
||||||
|
toSnakeCase(couponLines);
|
||||||
|
}
|
||||||
|
const feeLines = (this.getNodeParameter('feeLinesUi', i) as IDataObject).feeLinesValues as IFeeLine[];
|
||||||
|
if (feeLines) {
|
||||||
|
body.fee_lines = feeLines;
|
||||||
|
setMetadata(feeLines);
|
||||||
|
toSnakeCase(feeLines);
|
||||||
|
}
|
||||||
|
const lineItems = (this.getNodeParameter('lineItemsUi', i) as IDataObject).lineItemsValues as ILineItem[];
|
||||||
|
if (lineItems) {
|
||||||
|
body.line_items = lineItems;
|
||||||
|
setMetadata(lineItems);
|
||||||
|
toSnakeCase(lineItems);
|
||||||
|
//@ts-ignore
|
||||||
|
}
|
||||||
|
const metadata = (this.getNodeParameter('metadataUi', i) as IDataObject).metadataValues as IDataObject[];
|
||||||
|
if (metadata) {
|
||||||
|
body.meta_data = metadata;
|
||||||
|
}
|
||||||
|
const shippingLines = (this.getNodeParameter('shippingLinesUi', i) as IDataObject).shippingLinesValues as IShoppingLine[];
|
||||||
|
if (shippingLines) {
|
||||||
|
body.shipping_lines = shippingLines;
|
||||||
|
setMetadata(shippingLines);
|
||||||
|
toSnakeCase(shippingLines);
|
||||||
|
}
|
||||||
|
responseData = await woocommerceApiRequest.call(this, 'POST', '/orders', body);
|
||||||
|
}
|
||||||
|
//https://woocommerce.github.io/woocommerce-rest-api-docs/#update-an-order
|
||||||
|
if (operation === 'update') {
|
||||||
|
const orderId = this.getNodeParameter('orderId', i) as string;
|
||||||
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
||||||
|
const body: IOrder = {};
|
||||||
|
if (updateFields.currency) {
|
||||||
|
body.currency = updateFields.currency as string;
|
||||||
|
}
|
||||||
|
if (updateFields.customerId) {
|
||||||
|
body.customer_id = parseInt(updateFields.customerId as string, 10);
|
||||||
|
}
|
||||||
|
if (updateFields.customerNote) {
|
||||||
|
body.customer_note = updateFields.customerNote as string;
|
||||||
|
}
|
||||||
|
if (updateFields.parentId) {
|
||||||
|
body.parent_id = parseInt(updateFields.parentId as string, 10);
|
||||||
|
}
|
||||||
|
if (updateFields.paymentMethodId) {
|
||||||
|
body.payment_method = updateFields.paymentMethodId as string
|
||||||
|
}
|
||||||
|
if (updateFields.paymentMethodTitle) {
|
||||||
|
body.payment_method_title = updateFields.paymentMethodTitle as string
|
||||||
|
}
|
||||||
|
|
||||||
|
if (updateFields.status) {
|
||||||
|
body.status = updateFields.status as string;
|
||||||
|
}
|
||||||
|
if (updateFields.transactionID) {
|
||||||
|
body.transaction_id = updateFields.transactionID as string;
|
||||||
|
}
|
||||||
|
const billing = (this.getNodeParameter('billingUi', i) as IDataObject).billingValues as IAddress;
|
||||||
|
if (billing !== undefined) {
|
||||||
|
body.billing = billing;
|
||||||
|
toSnakeCase(billing as IDataObject);
|
||||||
|
}
|
||||||
|
const shipping = (this.getNodeParameter('shippingUi', i) as IDataObject).shippingValues as IAddress;
|
||||||
|
if (shipping !== undefined) {
|
||||||
|
body.shipping = shipping;
|
||||||
|
toSnakeCase(shipping as IDataObject);
|
||||||
|
}
|
||||||
|
const couponLines = (this.getNodeParameter('couponLinesUi', i) as IDataObject).couponLinesValues as ICouponLine[];
|
||||||
|
if (couponLines) {
|
||||||
|
body.coupon_lines = couponLines;
|
||||||
|
setMetadata(couponLines);
|
||||||
|
toSnakeCase(couponLines);
|
||||||
|
}
|
||||||
|
const feeLines = (this.getNodeParameter('feeLinesUi', i) as IDataObject).feeLinesValues as IFeeLine[];
|
||||||
|
if (feeLines) {
|
||||||
|
body.fee_lines = feeLines;
|
||||||
|
setMetadata(feeLines);
|
||||||
|
toSnakeCase(feeLines);
|
||||||
|
}
|
||||||
|
const lineItems = (this.getNodeParameter('lineItemsUi', i) as IDataObject).lineItemsValues as ILineItem[];
|
||||||
|
if (lineItems) {
|
||||||
|
body.line_items = lineItems;
|
||||||
|
setMetadata(lineItems);
|
||||||
|
toSnakeCase(lineItems);
|
||||||
|
}
|
||||||
|
const metadata = (this.getNodeParameter('metadataUi', i) as IDataObject).metadataValues as IDataObject[];
|
||||||
|
if (metadata) {
|
||||||
|
body.meta_data = metadata;
|
||||||
|
}
|
||||||
|
const shippingLines = (this.getNodeParameter('shippingLinesUi', i) as IDataObject).shippingLinesValues as IShoppingLine[];
|
||||||
|
if (shippingLines) {
|
||||||
|
body.shipping_lines = shippingLines;
|
||||||
|
setMetadata(shippingLines);
|
||||||
|
toSnakeCase(shippingLines);
|
||||||
|
}
|
||||||
|
responseData = await woocommerceApiRequest.call(this, 'PUT', `/orders/${orderId}`, body);
|
||||||
|
}
|
||||||
|
//https://woocommerce.github.io/woocommerce-rest-api-docs/#retrieve-an-order
|
||||||
|
if (operation === 'get') {
|
||||||
|
const orderId = this.getNodeParameter('orderId', i) as string;
|
||||||
|
responseData = await woocommerceApiRequest.call(this,'GET', `/orders/${orderId}`, {}, qs);
|
||||||
|
}
|
||||||
|
//https://woocommerce.github.io/woocommerce-rest-api-docs/#list-all-orders
|
||||||
|
if (operation === 'getAll') {
|
||||||
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||||
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||||
|
if (options.after) {
|
||||||
|
qs.after = options.after as string;
|
||||||
|
}
|
||||||
|
if (options.before) {
|
||||||
|
qs.before = options.before as string;
|
||||||
|
}
|
||||||
|
if (options.category) {
|
||||||
|
qs.category = options.category as string;
|
||||||
|
}
|
||||||
|
if (options.customer) {
|
||||||
|
qs.customer = parseInt(options.customer as string, 10);
|
||||||
|
}
|
||||||
|
if (options.decimalPoints) {
|
||||||
|
qs.dp = options.decimalPoints as number;
|
||||||
|
}
|
||||||
|
if (options.product) {
|
||||||
|
qs.product = parseInt(options.product as string, 10);
|
||||||
|
}
|
||||||
|
if (options.order) {
|
||||||
|
qs.order = options.order as string;
|
||||||
|
}
|
||||||
|
if (options.orderBy) {
|
||||||
|
qs.orderby = options.orderBy as string;
|
||||||
|
}
|
||||||
|
if (options.search) {
|
||||||
|
qs.search = options.search as string;
|
||||||
|
}
|
||||||
|
if (options.status) {
|
||||||
|
qs.status = options.status as string;
|
||||||
|
}
|
||||||
|
if (returnAll === true) {
|
||||||
|
responseData = await woocommerceApiRequestAllItems.call(this, 'GET', '/orders', {}, qs);
|
||||||
|
} else {
|
||||||
|
qs.per_page = this.getNodeParameter('limit', i) as number;
|
||||||
|
responseData = await woocommerceApiRequest.call(this, 'GET', '/orders', {}, qs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//https://woocommerce.github.io/woocommerce-rest-api-docs/#delete-an-order
|
||||||
|
if (operation === 'delete') {
|
||||||
|
const orderId = this.getNodeParameter('orderId', i) as string;
|
||||||
|
responseData = await woocommerceApiRequest.call(this,'DELETE', `/orders/${orderId}`, {}, { force: true });
|
||||||
|
}
|
||||||
|
}
|
||||||
if (Array.isArray(responseData)) {
|
if (Array.isArray(responseData)) {
|
||||||
returnData.push.apply(returnData, responseData as IDataObject[]);
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue