2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
2020-04-06 16:11:50 -07:00
|
|
|
|
2020-01-05 10:34:09 -08:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
2020-01-07 19:15:37 -08:00
|
|
|
IExecuteSingleFunctions,
|
2020-01-05 10:34:09 -08:00
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
2020-04-06 16:11:50 -07:00
|
|
|
|
2022-11-11 07:07:50 -08:00
|
|
|
import { IDataObject } from 'n8n-workflow';
|
2022-08-17 08:50:24 -07:00
|
|
|
|
|
|
|
export async function zendeskApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2020-06-09 05:00:41 -07:00
|
|
|
const authenticationMethod = this.getNodeParameter('authentication', 0);
|
|
|
|
|
2022-04-18 09:43:09 -07:00
|
|
|
let credentials;
|
|
|
|
|
|
|
|
if (authenticationMethod === 'apiToken') {
|
2022-08-17 08:50:24 -07:00
|
|
|
credentials = (await this.getCredentials('zendeskApi')) as { subdomain: string };
|
2022-04-18 09:43:09 -07:00
|
|
|
} else {
|
2022-08-17 08:50:24 -07:00
|
|
|
credentials = (await this.getCredentials('zendeskOAuth2Api')) as { subdomain: string };
|
2022-04-18 09:43:09 -07:00
|
|
|
}
|
|
|
|
|
2020-01-05 10:34:09 -08:00
|
|
|
let options: OptionsWithUri = {
|
|
|
|
method,
|
|
|
|
qs,
|
|
|
|
body,
|
2022-04-18 09:43:09 -07:00
|
|
|
uri: uri || getUri(resource, credentials.subdomain),
|
2020-08-26 23:53:23 -07:00
|
|
|
json: true,
|
|
|
|
qsStringifyOptions: {
|
|
|
|
arrayFormat: 'brackets',
|
|
|
|
},
|
2020-01-05 10:34:09 -08:00
|
|
|
};
|
2020-06-09 05:00:41 -07:00
|
|
|
|
2020-01-05 10:34:09 -08:00
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
if (Object.keys(options.body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
2020-06-09 05:00:41 -07:00
|
|
|
|
2022-04-18 09:43:09 -07:00
|
|
|
const credentialType = authenticationMethod === 'apiToken' ? 'zendeskApi' : 'zendeskOAuth2Api';
|
2020-06-09 05:00:41 -07:00
|
|
|
|
2022-11-22 08:57:17 -08:00
|
|
|
return this.helpers.requestWithAuthentication.call(this, credentialType, options);
|
2020-01-05 10:34:09 -08:00
|
|
|
}
|
2020-01-06 16:30:40 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to paginated flow endpoint
|
|
|
|
* and return all results
|
|
|
|
*/
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function zendeskApiRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2020-01-06 16:30:40 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
let uri: string | undefined;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await zendeskApiRequest.call(this, method, resource, body, query, uri);
|
2020-01-07 19:15:37 -08:00
|
|
|
uri = responseData.next_page;
|
2020-01-06 16:30:40 -08:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2020-04-09 13:13:14 -07:00
|
|
|
if (query.limit && query.limit <= returnData.length) {
|
|
|
|
return returnData;
|
|
|
|
}
|
2022-08-17 08:50:24 -07:00
|
|
|
} while (responseData.next_page !== undefined && responseData.next_page !== null);
|
2020-01-06 16:30:40 -08:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
2020-04-09 13:13:14 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
export function validateJSON(json: string | undefined): any {
|
2020-04-09 13:13:14 -07:00
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = undefined;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2022-04-18 09:43:09 -07:00
|
|
|
|
|
|
|
function getUri(resource: string, subdomain: string) {
|
|
|
|
if (resource.includes('webhooks')) {
|
|
|
|
return `https://${subdomain}.zendesk.com/api/v2${resource}`;
|
|
|
|
} else {
|
|
|
|
return `https://${subdomain}.zendesk.com/api/v2${resource}.json`;
|
|
|
|
}
|
|
|
|
}
|