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

76 lines
1.8 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
import type {
IDataObject,
2019-12-06 09:04:50 -08:00
IExecuteFunctions,
IExecuteSingleFunctions,
2019-12-06 09:04:50 -08:00
IHookFunctions,
ILoadOptionsFunctions,
JsonObject,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2019-12-06 09:04:50 -08:00
export async function flowApiRequest(
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
method: string,
resource: string,
body: any = {},
qs: IDataObject = {},
uri?: string,
option: IDataObject = {},
): Promise<any> {
const credentials = await this.getCredentials('flowApi');
2019-12-06 09:04:50 -08:00
let options: OptionsWithUri = {
headers: { Authorization: `Bearer ${credentials.accessToken}` },
2019-12-06 09:04:50 -08:00
method,
qs,
body,
uri: uri || `https://api.getflow.com/v2${resource}`,
2020-10-22 06:46:03 -07:00
json: true,
2019-12-06 09:04:50 -08:00
};
options = Object.assign({}, options, option);
if (Object.keys(options.body as IDataObject).length === 0) {
2019-12-06 09:04:50 -08:00
delete options.body;
}
2019-12-06 09:04:50 -08:00
try {
return await this.helpers.request(options);
2019-12-06 09:04:50 -08:00
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
2019-12-06 09:04:50 -08:00
}
}
/**
* Make an API request to paginated flow endpoint
* and return all results
*/
export async function FlowApiRequestAllItems(
this: IHookFunctions | IExecuteFunctions,
propertyName: string,
method: string,
resource: string,
body: any = {},
query: IDataObject = {},
): Promise<any> {
2019-12-06 09:04:50 -08:00
const returnData: IDataObject[] = [];
let responseData;
query.limit = 100;
let uri: string | undefined;
do {
responseData = await flowApiRequest.call(this, method, resource, body, query, uri, {
resolveWithFullResponse: true,
});
2019-12-06 09:04:50 -08:00
uri = responseData.headers.link;
// @ts-ignore
returnData.push.apply(returnData, responseData.body[propertyName] as IDataObject[]);
} while (responseData.headers.link !== undefined && responseData.headers.link !== '');
2019-12-06 09:04:50 -08:00
return returnData;
}