mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 12:35:46 +03:00
91d7e16c81
* 🔨 formatting nodes with prettier
90 lines
2.2 KiB
TypeScript
90 lines
2.2 KiB
TypeScript
import { OptionsWithUri } from 'request';
|
|
|
|
import {
|
|
IExecuteFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
IWebhookFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
|
|
|
import { snakeCase } from 'change-case';
|
|
|
|
export async function keapApiRequest(
|
|
this: IWebhookFunctions | IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
method: string,
|
|
resource: string,
|
|
// tslint:disable-next-line:no-any
|
|
body: any = {},
|
|
qs: IDataObject = {},
|
|
uri?: string,
|
|
headers: IDataObject = {},
|
|
option: IDataObject = {},
|
|
// tslint:disable-next-line:no-any
|
|
): Promise<any> {
|
|
let options: OptionsWithUri = {
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
method,
|
|
body,
|
|
qs,
|
|
uri: uri || `https://api.infusionsoft.com/crm/rest/v1${resource}`,
|
|
json: true,
|
|
};
|
|
try {
|
|
options = Object.assign({}, options, option);
|
|
if (Object.keys(headers).length !== 0) {
|
|
options.headers = Object.assign({}, options.headers, headers);
|
|
}
|
|
if (Object.keys(body).length === 0) {
|
|
delete options.body;
|
|
}
|
|
//@ts-ignore
|
|
return await this.helpers.requestOAuth2.call(this, 'keapOAuth2Api', options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|
|
|
|
export async function keapApiRequestAllItems(
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
propertyName: string,
|
|
method: string,
|
|
endpoint: string,
|
|
// tslint:disable-next-line:no-any
|
|
body: any = {},
|
|
query: IDataObject = {},
|
|
// tslint:disable-next-line:no-any
|
|
): Promise<any> {
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData;
|
|
let uri: string | undefined;
|
|
query.limit = 50;
|
|
|
|
do {
|
|
responseData = await keapApiRequest.call(this, method, endpoint, body, query, uri);
|
|
uri = responseData.next;
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
|
} while (returnData.length < responseData.count);
|
|
|
|
return returnData;
|
|
}
|
|
|
|
export function keysToSnakeCase(elements: IDataObject[] | IDataObject): IDataObject[] {
|
|
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;
|
|
}
|