2019-11-16 14:16:11 -08:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
2020-10-01 05:01:39 -07:00
|
|
|
IExecuteSingleFunctions,
|
2019-11-16 14:16:11 -08:00
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
2019-11-22 14:04:06 -08:00
|
|
|
import {
|
2021-04-16 09:33:36 -07:00
|
|
|
IDataObject, NodeApiError, NodeOperationError,
|
2019-11-22 14:04:06 -08:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export async function intercomApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, endpoint: string, method: string, body: any = {}, query?: IDataObject, uri?: string): Promise<any> { // tslint:disable-line:no-any
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('intercomApi');
|
2019-11-16 14:16:11 -08:00
|
|
|
if (credentials === undefined) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
|
2019-11-16 14:16:11 -08:00
|
|
|
}
|
|
|
|
|
2019-11-22 14:04:06 -08:00
|
|
|
const headerWithAuthentication = Object.assign({},
|
2019-11-16 14:16:11 -08:00
|
|
|
{ Authorization: `Bearer ${credentials.apiKey}`, Accept: 'application/json' });
|
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: headerWithAuthentication,
|
|
|
|
method,
|
2019-11-22 14:04:06 -08:00
|
|
|
qs: query,
|
|
|
|
uri: uri || `https://api.intercom.io${endpoint}`,
|
2019-11-16 14:16:11 -08:00
|
|
|
body,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2019-11-16 14:16:11 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
return await this.helpers.request!(options);
|
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2019-11-16 14:16:11 -08:00
|
|
|
}
|
|
|
|
}
|
2019-11-16 15:47:28 -08:00
|
|
|
|
2019-11-22 14:04:06 -08: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: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-11-16 15:47:28 -08:00
|
|
|
export function validateJSON(json: string | undefined): any { // tslint:disable-line:no-any
|
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = '';
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|