2020-01-05 10:34:09 -08:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
import { IDataObject } from 'n8n-workflow';
|
|
|
|
|
|
|
|
export async function zendeskApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
const credentials = this.getCredentials('zendeskApi');
|
|
|
|
if (credentials === undefined) {
|
|
|
|
throw new Error('No credentials got returned!');
|
|
|
|
}
|
|
|
|
const base64Key = Buffer.from(`${credentials.email}/token:${credentials.apiToken}`).toString('base64')
|
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: { 'Authorization': `Basic ${base64Key}`},
|
|
|
|
method,
|
|
|
|
qs,
|
|
|
|
body,
|
2020-01-05 18:32:22 -08:00
|
|
|
uri: uri ||`${credentials.domain}/api/v2${resource}.json`,
|
2020-01-05 10:34:09 -08:00
|
|
|
json: true
|
|
|
|
};
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
if (Object.keys(options.body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
return await this.helpers.request!(options);
|
2020-01-05 18:32:22 -08:00
|
|
|
} catch (err) {
|
|
|
|
let errorMessage = '';
|
|
|
|
if (err.error && err.description) {
|
|
|
|
errorMessage = err.description;
|
2020-01-05 10:34:09 -08:00
|
|
|
}
|
|
|
|
throw new Error(errorMessage);
|
|
|
|
}
|
|
|
|
}
|