n8n/packages/nodes-base/nodes/WooCommerce/GenericFunctions.ts

148 lines
3.8 KiB
TypeScript
Raw Normal View History

import {
OptionsWithUri,
} from 'request';
2020-02-24 16:19:04 -08:00
2020-01-29 17:53:01 -08:00
import {
IExecuteFunctions,
IExecuteSingleFunctions,
IHookFunctions,
ILoadOptionsFunctions,
IWebhookFunctions,
} from 'n8n-core';
2020-02-24 16:19:04 -08:00
import {
ICredentialDataDecryptedObject,
2020-02-24 16:19:04 -08:00
IDataObject,
} from 'n8n-workflow';
2020-02-24 16:19:04 -08:00
import {
ICouponLine,
IFeeLine,
ILineItem,
IShoppingLine,
2020-02-24 16:19:04 -08:00
} from './OrderInterface';
2020-01-29 17:53:01 -08:00
import {
createHash,
} from 'crypto';
import {
snakeCase,
} from 'change-case';
2020-01-29 17:53:01 -08:00
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');
if (credentials === undefined) {
throw new Error('No credentials got returned!');
}
let options: OptionsWithUri = {
auth: {
user: credentials.consumerKey as string,
password: credentials.consumerSecret as string,
2020-01-29 17:53:01 -08:00
},
method,
qs,
body,
uri: uri || `${credentials.url}/wp-json/wc/v3${resource}`,
2020-10-22 06:46:03 -07:00
json: true,
2020-01-29 17:53:01 -08:00
};
if (!Object.keys(body).length) {
delete options.form;
}
options = Object.assign({}, options, option);
2020-01-29 17:53:01 -08:00
try {
return await this.helpers.request!(options);
} catch (error) {
if (error.statusCode === 401) {
// Return a clear error
throw new Error('The WooCommerce credentials are not valid!');
}
if (error.response.body && error.response.body.message) {
// Try to return the error prettier
throw new Error(`WooCommerce Error [${error.statusCode}]: ${error.response.body.message}`);
}
// If that data does not exist for some reason return the actual error
throw new Error('WooCommerce Error: ' + error.message);
2020-01-29 17:53:01 -08:00
}
}
export async function woocommerceApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
2020-02-16 10:43:51 -08:00
const returnData: IDataObject[] = [];
let responseData;
let uri: string | undefined;
query.per_page = 100;
do {
responseData = await woocommerceApiRequest.call(this, method, endpoint, body, query, uri, { resolveWithFullResponse: true });
uri = responseData.headers['link'].split(';')[0].replace('<', '').replace('>', '');
2020-02-16 10:43:51 -08:00
returnData.push.apply(returnData, responseData.body);
} while (
responseData.headers['link'] !== undefined &&
responseData.headers['link'].includes('rel="next"')
);
return returnData;
}
2020-01-29 17:53:01 -08:00
/**
* Creates a secret from the credentials
*
* @export
* @param {ICredentialDataDecryptedObject} credentials
* @returns
*/
export function getAutomaticSecret(credentials: ICredentialDataDecryptedObject) {
const data = `${credentials.consumerKey},${credentials.consumerSecret}`;
return createHash('md5').update(data).digest('hex');
2020-01-29 17:53:01 -08:00
}
2020-02-24 16:19:04 -08:00
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;
2020-02-24 16:19:04 -08:00
} 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];
2020-02-24 16:19:04 -08:00
if (remove) {
//@ts-ignore
delete data[i][key];
remove = false;
}
}
}
}