mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
91d7e16c81
* 🔨 formatting nodes with prettier
90 lines
2.1 KiB
TypeScript
90 lines
2.1 KiB
TypeScript
import { OptionsWithUri } from 'request';
|
|
|
|
import {
|
|
IExecuteFunctions,
|
|
IExecuteSingleFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import { IDataObject, NodeApiError, NodeOperationError } from 'n8n-workflow';
|
|
|
|
export async function intercomApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
endpoint: string,
|
|
method: string,
|
|
// tslint:disable-next-line:no-any
|
|
body: any = {},
|
|
query?: IDataObject,
|
|
uri?: string,
|
|
// tslint:disable-next-line:no-any
|
|
): Promise<any> {
|
|
const credentials = await this.getCredentials('intercomApi');
|
|
|
|
const headerWithAuthentication = Object.assign(
|
|
{},
|
|
{ Authorization: `Bearer ${credentials.apiKey}`, Accept: 'application/json' },
|
|
);
|
|
|
|
const options: OptionsWithUri = {
|
|
headers: headerWithAuthentication,
|
|
method,
|
|
qs: query,
|
|
uri: uri || `https://api.intercom.io${endpoint}`,
|
|
body,
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
return await this.helpers.request!(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Make an API request to paginated intercom endpoint
|
|
* and return all results
|
|
*/
|
|
export async function intercomApiRequestAllItems(
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
propertyName: string,
|
|
endpoint: string,
|
|
method: string,
|
|
// tslint:disable-next-line:no-any
|
|
body: any = {},
|
|
query: IDataObject = {},
|
|
// tslint:disable-next-line:no-any
|
|
): 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]);
|
|
} while (
|
|
responseData.pages !== undefined &&
|
|
responseData.pages.next !== undefined &&
|
|
responseData.pages.next !== null
|
|
);
|
|
|
|
return returnData;
|
|
}
|
|
|
|
// tslint:disable-next-line:no-any
|
|
export function validateJSON(json: string | undefined): any {
|
|
let result;
|
|
try {
|
|
result = JSON.parse(json!);
|
|
} catch (exception) {
|
|
result = '';
|
|
}
|
|
return result;
|
|
}
|