n8n/packages/nodes-base/nodes/HelpScout/GenericFunctions.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
1.8 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
import type {
IDataObject,
2020-03-16 19:02:48 -07:00
IExecuteFunctions,
IHookFunctions,
2020-03-16 19:02:48 -07:00
ILoadOptionsFunctions,
JsonObject,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2020-03-16 19:02:48 -07:00
import get from 'lodash/get';
2020-03-16 19:02:48 -07:00
export async function helpscoutApiRequest(
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
method: string,
resource: string,
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 as IDataObject).length === 0) {
2020-03-16 19:02:48 -07:00
delete options.body;
}
//@ts-ignore
return await this.helpers.requestOAuth2.call(this, 'helpScoutOAuth2Api', options);
2020-03-16 19:02:48 -07:00
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
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> {
2020-03-16 19:02:48 -07:00
const returnData: IDataObject[] = [];
let responseData;
let uri: undefined | string = undefined;
2020-03-16 19:02:48 -07:00
do {
responseData = await helpscoutApiRequest.call(this, method, endpoint, body, query, uri);
uri = get(responseData, '_links.next.href');
returnData.push.apply(returnData, get(responseData, propertyName) as IDataObject[]);
const limit = query.limit as number | undefined;
if (limit && limit <= returnData.length) {
2020-03-29 19:08:00 -07:00
return returnData;
}
} while (responseData._links?.next?.href !== undefined);
2020-03-16 19:02:48 -07:00
return returnData;
}