2022-08-01 13:47:55 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
2019-11-06 16:58:18 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { BINARY_ENCODING, IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2019-11-06 16:58:18 -08:00
|
|
|
|
2022-08-19 06:42:15 -07:00
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
2019-11-10 14:14:36 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function freshdeskApiRequest(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
2022-08-19 06:42:15 -07:00
|
|
|
) {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('freshdeskApi');
|
2019-11-06 16:58:18 -08:00
|
|
|
|
2019-11-10 14:14:36 -08:00
|
|
|
const apiKey = `${credentials.apiKey}:X`;
|
2019-11-06 16:58:18 -08:00
|
|
|
|
2020-02-18 11:03:48 -08:00
|
|
|
const endpoint = 'freshdesk.com/api/v2';
|
2019-11-06 22:06:19 -08:00
|
|
|
|
2020-02-18 11:03:48 -08:00
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
Authorization: `${Buffer.from(apiKey).toString(BINARY_ENCODING)}`,
|
|
|
|
},
|
2019-11-06 16:58:18 -08:00
|
|
|
method,
|
2019-11-06 22:06:19 -08:00
|
|
|
body,
|
2020-02-18 11:03:48 -08:00
|
|
|
qs: query,
|
|
|
|
uri: uri || `https://${credentials.domain}.${endpoint}${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2019-11-06 16:58:18 -08:00
|
|
|
};
|
2020-02-18 11:03:48 -08:00
|
|
|
if (!Object.keys(body).length) {
|
2019-11-07 10:07:29 -08:00
|
|
|
delete options.body;
|
2019-11-06 22:06:19 -08:00
|
|
|
}
|
2020-02-18 11:03:48 -08:00
|
|
|
if (!Object.keys(query).length) {
|
|
|
|
delete options.qs;
|
|
|
|
}
|
|
|
|
options = Object.assign({}, options, option);
|
2019-11-06 16:58:18 -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);
|
2020-02-18 11:03:48 -08:00
|
|
|
}
|
|
|
|
}
|
2019-11-06 16:58:18 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function freshdeskApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
2022-08-19 06:42:15 -07:00
|
|
|
) {
|
2020-02-18 11:03:48 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
let uri: string | undefined;
|
|
|
|
query.per_page = 100;
|
|
|
|
do {
|
2022-08-01 13:47:55 -07:00
|
|
|
responseData = await freshdeskApiRequest.call(this, method, endpoint, body, query, uri, {
|
|
|
|
resolveWithFullResponse: true,
|
|
|
|
});
|
2020-02-18 11:03:48 -08:00
|
|
|
if (responseData.headers.link) {
|
2022-08-01 13:47:55 -07:00
|
|
|
uri = responseData.headers['link'].split(';')[0].replace('<', '').replace('>', '');
|
2019-11-06 16:58:18 -08:00
|
|
|
}
|
2020-02-18 11:03:48 -08:00
|
|
|
returnData.push.apply(returnData, responseData.body);
|
|
|
|
} while (
|
|
|
|
responseData.headers['link'] !== undefined &&
|
|
|
|
responseData.headers['link'].includes('rel="next"')
|
|
|
|
);
|
|
|
|
return returnData;
|
2019-11-06 16:58:18 -08:00
|
|
|
}
|
2019-11-08 07:41:10 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
export function validateJSON(json: string | undefined): any {
|
2019-11-08 07:41:10 -08:00
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = [];
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-10 14:14:36 -08:00
|
|
|
export function capitalize(s: string): string {
|
2019-11-08 07:41:10 -08:00
|
|
|
if (typeof s !== 'string') return '';
|
|
|
|
return s.charAt(0).toUpperCase() + s.slice(1);
|
|
|
|
}
|