2021-01-19 15:16:25 -08:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
2021-04-16 09:33:36 -07:00
|
|
|
IDataObject, NodeApiError,
|
2021-01-19 15:16:25 -08:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2021-03-26 00:48:52 -07:00
|
|
|
export async function sendGridApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, endpoint: string, method: string, body: any = {}, qs: IDataObject = {}, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-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,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
2021-03-26 00:48:52 -07:00
|
|
|
if (Object.keys(option).length !== 0) {
|
|
|
|
Object.assign(options, option);
|
|
|
|
}
|
|
|
|
|
2021-01-19 15:16:25 -08:00
|
|
|
try {
|
2022-07-10 03:32:19 -07:00
|
|
|
return await this.helpers.requestWithAuthentication.call(this, 'sendGridApi', options);
|
2021-01-19 15:16:25 -08:00
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2021-01-19 15:16:25 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function sendGridApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, endpoint: string, method: string, propertyName: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
let uri;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await sendGridApiRequest.call(this, endpoint, method, body, query, uri);
|
|
|
|
uri = responseData._metadata.next;
|
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
|
|
|
if (query.limit && returnData.length >= query.limit) {
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
} while (
|
|
|
|
responseData._metadata.next !== undefined
|
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|