2020-03-16 19:02:48 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
import {
|
2020-03-29 10:10:54 -07:00
|
|
|
IHookFunctions,
|
2020-03-16 19:02:48 -07:00
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
get,
|
|
|
|
} from 'lodash';
|
|
|
|
|
|
|
|
export async function helpscoutApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IHookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
uri: uri || `https://api.helpscout.net${resource}`,
|
|
|
|
json: true
|
|
|
|
};
|
|
|
|
try {
|
|
|
|
if (Object.keys(option).length !== 0) {
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
}
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
//@ts-ignore
|
2020-06-01 17:42:38 -07:00
|
|
|
return await this.helpers.requestOAuth2.call(this, 'helpScoutOAuth2Api', options);
|
2020-03-16 19:02:48 -07:00
|
|
|
} catch (error) {
|
|
|
|
if (error.response && error.response.body
|
|
|
|
&& error.response.body._embedded
|
|
|
|
&& error.response.body._embedded.errors) {
|
|
|
|
// Try to return the error prettier
|
|
|
|
//@ts-ignore
|
|
|
|
throw new Error(`HelpScout error response [${error.statusCode}]: ${error.response.body.message} - ${error.response.body._embedded.errors.map(error => {
|
|
|
|
return `${error.path} ${error.message}`;
|
|
|
|
}).join('-')}`);
|
|
|
|
}
|
2020-03-29 10:10:54 -07:00
|
|
|
|
|
|
|
throw new Error(`HelpScout error response [${error.statusCode}]: ${error.message}`);
|
2020-03-16 19:02:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function helpscoutApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions, propertyName: string ,method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
let uri;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await helpscoutApiRequest.call(this, method, endpoint, body, query, uri);
|
|
|
|
uri = get(responseData, '_links.next.href');
|
|
|
|
returnData.push.apply(returnData, get(responseData, propertyName));
|
2020-03-29 19:08:00 -07:00
|
|
|
if (query.limit && query.limit <= returnData.length) {
|
|
|
|
return returnData;
|
|
|
|
}
|
2020-03-16 19:02:48 -07:00
|
|
|
} while (
|
|
|
|
responseData['_links'] !== undefined &&
|
|
|
|
responseData['_links'].next !== undefined &&
|
|
|
|
responseData['_links'].next.href !== undefined
|
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|