2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2021-01-19 15:16:25 -08:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2021-01-19 15:16:25 -08:00
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type { IDataObject } from 'n8n-workflow';
|
2021-01-19 15:16:25 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function sendGridApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
endpoint: string,
|
|
|
|
method: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
option: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2021-01-19 15:16:25 -08:00
|
|
|
const host = 'api.sendgrid.com/v3';
|
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
method,
|
|
|
|
qs,
|
|
|
|
body,
|
2021-03-26 00:48:52 -07:00
|
|
|
uri: `https://${host}${endpoint}`,
|
2021-01-19 15:16:25 -08:00
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
2023-02-27 19:39:43 -08:00
|
|
|
if (Object.keys(body as IDataObject).length === 0) {
|
2021-01-19 15:16:25 -08:00
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
2021-03-26 00:48:52 -07:00
|
|
|
if (Object.keys(option).length !== 0) {
|
|
|
|
Object.assign(options, option);
|
|
|
|
}
|
|
|
|
|
2022-11-22 08:57:17 -08:00
|
|
|
return this.helpers.requestWithAuthentication.call(this, 'sendGridApi', options);
|
2021-01-19 15:16:25 -08:00
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function sendGridApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
endpoint: string,
|
|
|
|
method: string,
|
|
|
|
propertyName: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2021-01-19 15:16:25 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
let uri;
|
|
|
|
|
|
|
|
do {
|
2023-02-27 19:39:43 -08:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
|
|
responseData = await sendGridApiRequest.call(this, endpoint, method, body, query, uri); // posible bug, as function does not have uri parameter
|
2021-01-19 15:16:25 -08:00
|
|
|
uri = responseData._metadata.next;
|
2023-02-27 19:39:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
|
2021-01-19 15:16:25 -08:00
|
|
|
if (query.limit && returnData.length >= query.limit) {
|
|
|
|
return returnData;
|
|
|
|
}
|
2022-08-17 08:50:24 -07:00
|
|
|
} while (responseData._metadata.next !== undefined);
|
2021-01-19 15:16:25 -08:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|