1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-20 01:19:07 +03:00
n8n/packages/nodes-base/nodes/Intercom/GenericFunctions.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
1.8 KiB
TypeScript
Raw Normal View History

import type {
IDataObject,
2019-11-17 01:16:11 +03:00
IExecuteFunctions,
IHookFunctions,
ILoadOptionsFunctions,
JsonObject,
IRequestOptions,
IHttpRequestMethods,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
export async function intercomApiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
endpoint: string,
method: IHttpRequestMethods,
body: any = {},
query?: IDataObject,
uri?: string,
): Promise<any> {
const credentials = await this.getCredentials('intercomApi');
2019-11-17 01:16:11 +03:00
const headerWithAuthentication = Object.assign(
{},
{ Authorization: `Bearer ${credentials.apiKey}`, Accept: 'application/json' },
);
2019-11-17 01:16:11 +03:00
const options: IRequestOptions = {
2019-11-17 01:16:11 +03:00
headers: headerWithAuthentication,
method,
qs: query,
uri: uri || `https://api.intercom.io${endpoint}`,
2019-11-17 01:16:11 +03:00
body,
2020-10-22 16:46:03 +03:00
json: true,
2019-11-17 01:16:11 +03:00
};
try {
return await this.helpers.request(options);
2019-11-17 01:16:11 +03:00
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
2019-11-17 01:16:11 +03:00
}
}
2019-11-17 02:47:28 +03:00
/**
* Make an API request to paginated intercom endpoint
* and return all results
*/
export async function intercomApiRequestAllItems(
this: IHookFunctions | IExecuteFunctions,
propertyName: string,
endpoint: string,
method: IHttpRequestMethods,
body: any = {},
query: IDataObject = {},
): Promise<any> {
const returnData: IDataObject[] = [];
let responseData;
query.per_page = 60;
let uri: string | undefined;
do {
responseData = await intercomApiRequest.call(this, endpoint, method, body, query, uri);
uri = responseData.pages.next;
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
} while (responseData.pages?.next !== null);
return returnData;
}
export function validateJSON(json: string | undefined): any {
2019-11-17 02:47:28 +03:00
let result;
try {
result = JSON.parse(json!);
} catch (exception) {
result = '';
}
return result;
}