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

89 lines
2.1 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
2020-04-01 15:10:41 -07:00
import type {
IDataObject,
2020-04-01 15:10:41 -07:00
IExecuteFunctions,
IHookFunctions,
ILoadOptionsFunctions,
IWebhookFunctions,
JsonObject,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2020-04-01 15:10:41 -07:00
import { snakeCase } from 'change-case';
2020-04-01 15:10:41 -07:00
export async function keapApiRequest(
this: IWebhookFunctions | IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
method: string,
resource: string,
body: any = {},
qs: IDataObject = {},
uri?: string,
headers: IDataObject = {},
option: IDataObject = {},
): Promise<any> {
2020-04-01 15:10:41 -07:00
let options: OptionsWithUri = {
headers: {
'Content-Type': 'application/json',
},
method,
body,
qs,
uri: uri || `https://api.infusionsoft.com/crm/rest/v1${resource}`,
2020-10-22 06:46:03 -07:00
json: true,
2020-04-01 15:10:41 -07:00
};
try {
options = Object.assign({}, options, option);
if (Object.keys(headers).length !== 0) {
options.headers = Object.assign({}, options.headers, headers);
}
if (Object.keys(body as IDataObject).length === 0) {
2020-04-01 15:10:41 -07:00
delete options.body;
}
//@ts-ignore
return await this.helpers.requestOAuth2.call(this, 'keapOAuth2Api', options);
2020-04-01 15:10:41 -07:00
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
2020-04-01 15:10:41 -07:00
}
}
export async function keapApiRequestAllItems(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
propertyName: string,
method: string,
endpoint: string,
body: any = {},
query: IDataObject = {},
): Promise<any> {
2020-04-01 15:10:41 -07:00
const returnData: IDataObject[] = [];
let responseData;
let uri: string | undefined;
query.limit = 50;
do {
2020-04-02 16:37:40 -07:00
responseData = await keapApiRequest.call(this, method, endpoint, body, query, uri);
2020-04-01 15:10:41 -07:00
uri = responseData.next;
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
} while (returnData.length < responseData.count);
2020-04-01 15:10:41 -07:00
return returnData;
}
export function keysToSnakeCase(elements: IDataObject[] | IDataObject): IDataObject[] {
2020-04-01 15:10:41 -07:00
if (!Array.isArray(elements)) {
elements = [elements];
}
for (const element of elements) {
for (const key of Object.keys(element)) {
if (key !== snakeCase(key)) {
element[snakeCase(key)] = element[key];
delete element[key];
}
}
}
return elements;
}