2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
2021-03-01 14:38:22 -08:00
|
|
|
|
2020-03-16 19:02:48 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
2020-10-01 05:01:39 -07:00
|
|
|
IHookFunctions,
|
2020-03-16 19:02:48 -07:00
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
2021-03-01 14:38:22 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
2020-03-16 19:02:48 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { get } from 'lodash';
|
2020-03-16 19:02:48 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function helpscoutApiRequest(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IHookFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-03-16 19:02:48 -07:00
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
uri: uri || `https://api.helpscout.net${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-03-16 19:02:48 -07:00
|
|
|
};
|
|
|
|
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) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-03-16 19:02:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function helpscoutApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-03-16 19:02:48 -07:00
|
|
|
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;
|
|
|
|
}
|
2022-12-02 12:54:28 -08:00
|
|
|
} while (responseData._links?.next?.href !== undefined);
|
2020-03-16 19:02:48 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|