2020-02-12 07:04:43 -08:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
|
|
IDataObject
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export async function zohoApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body: {
|
|
|
|
data: [
|
|
|
|
body,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
qs,
|
|
|
|
uri: uri || `https://www.zohoapis.com/crm/v2${resource}`,
|
|
|
|
json: true
|
|
|
|
};
|
|
|
|
try {
|
|
|
|
//@ts-ignore
|
|
|
|
return await this.helpers.requestOAuth.call(this, 'zohoOAuth2Api', options);
|
|
|
|
} catch (error) {
|
|
|
|
if (error.response && error.response.body && error.response.body.message) {
|
|
|
|
// Try to return the error prettier
|
|
|
|
throw new Error(`Zoho error response [${error.statusCode}]: ${error.response.body.message}`);
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function zohoApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, propertyName: string ,method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
let uri: string | undefined;
|
2020-02-15 16:23:22 -08:00
|
|
|
query.per_page = 200;
|
|
|
|
query.page = 0;
|
2020-02-12 07:04:43 -08:00
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await zohoApiRequest.call(this, method, endpoint, body, query, uri);
|
2020-02-15 16:23:22 -08:00
|
|
|
uri = responseData.info.more_records;
|
2020-02-12 07:04:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2020-02-15 16:23:22 -08:00
|
|
|
query.page++;
|
2020-02-12 07:04:43 -08:00
|
|
|
} while (
|
2020-02-15 16:23:22 -08:00
|
|
|
responseData.info.more_records !== undefined &&
|
|
|
|
responseData.info.more_records === true
|
2020-02-12 07:04:43 -08:00
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|