2021-04-03 02:07:21 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
IHookFunctions,
|
2021-04-16 09:33:36 -07:00
|
|
|
IWebhookFunctions,
|
|
|
|
NodeApiError,
|
|
|
|
NodeOperationError
|
2021-04-03 02:07:21 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export async function erpNextApiRequest(
|
|
|
|
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
) {
|
|
|
|
|
|
|
|
const credentials = this.getCredentials('erpNextApi');
|
|
|
|
|
|
|
|
if (credentials === undefined) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
|
2021-04-03 02:07:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Accept': 'application/json',
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
Authorization: `token ${credentials.apiKey}:${credentials.apiSecret}`,
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs: query,
|
|
|
|
uri: uri || `https://${credentials.subdomain}.erpnext.com${resource}`,
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
|
|
|
|
if (!Object.keys(options.body).length) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Object.keys(options.qs).length) {
|
|
|
|
delete options.qs;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
return await this.helpers.request!(options);
|
|
|
|
} catch (error) {
|
|
|
|
|
|
|
|
if (error.statusCode === 403) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), { message: `DocType unavailable.` });
|
2021-04-03 02:07:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (error.statusCode === 307) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), { message:`Please ensure the subdomain is correct.` });
|
2021-04-03 02:07:21 -07:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2021-04-03 02:07:21 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function erpNextApiRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
body: IDataObject,
|
|
|
|
query: IDataObject = {},
|
|
|
|
) {
|
|
|
|
// tslint:disable-next-line: no-any
|
|
|
|
const returnData: any[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
query!.limit_start = 0;
|
|
|
|
query!.limit_page_length = 1000;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await erpNextApiRequest.call(this, method, resource, body, query);
|
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
|
|
|
query!.limit_start += query!.limit_page_length - 1;
|
|
|
|
} while (
|
|
|
|
responseData.data.length > 0
|
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|