2021-05-07 16:46:50 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
|
|
|
|
2020-02-13 07:43:59 -08:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
2021-05-07 16:46:50 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
IHookFunctions,
|
|
|
|
NodeApiError,
|
|
|
|
} from 'n8n-workflow';
|
2020-02-13 07:43:59 -08:00
|
|
|
|
|
|
|
export async function mailjetApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | IHookFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
2021-08-20 09:57:30 -07:00
|
|
|
const emailApiCredentials = await this.getCredentials('mailjetEmailApi');
|
2020-02-13 07:43:59 -08:00
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
qs,
|
|
|
|
body,
|
2021-05-07 16:46:50 -07:00
|
|
|
uri: uri || `https://api.mailjet.com${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-02-13 07:43:59 -08:00
|
|
|
};
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
if (Object.keys(options.body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
if (emailApiCredentials !== undefined) {
|
|
|
|
const base64Credentials = Buffer.from(`${emailApiCredentials.apiKey}:${emailApiCredentials.secretKey}`).toString('base64');
|
2021-05-07 16:46:50 -07:00
|
|
|
options.headers!['Authorization'] = `Basic ${base64Credentials}`;
|
2020-02-13 07:43:59 -08:00
|
|
|
} else {
|
2021-08-20 09:57:30 -07:00
|
|
|
const smsApiCredentials = await this.getCredentials('mailjetSmsApi');
|
2021-05-07 16:46:50 -07:00
|
|
|
options.headers!['Authorization'] = `Bearer ${smsApiCredentials!.token}`;
|
2020-02-13 07:43:59 -08:00
|
|
|
}
|
|
|
|
try {
|
|
|
|
return await this.helpers.request!(options);
|
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-02-13 07:43:59 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function mailjetApiRequestAllItems(this: IExecuteFunctions | IHookFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
query.Limit = 1000;
|
|
|
|
query.Offset = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await mailjetApiRequest.call(this, method, endpoint, body, query, undefined, { resolveWithFullResponse: true });
|
|
|
|
returnData.push.apply(returnData, responseData.body);
|
|
|
|
query.Offset = query.Offset + query.Limit;
|
|
|
|
} while (
|
|
|
|
responseData.length !== 0
|
|
|
|
);
|
|
|
|
return returnData;
|
|
|
|
}
|
2021-05-07 16:46:50 -07:00
|
|
|
|
|
|
|
export interface IMessage {
|
|
|
|
From?: { Email?: string, Name?: string };
|
|
|
|
Subject?: string;
|
|
|
|
To?: IDataObject[];
|
|
|
|
Cc?: IDataObject[];
|
|
|
|
Bcc?: IDataObject[];
|
|
|
|
Variables?: IDataObject;
|
|
|
|
TemplateLanguage?: boolean;
|
|
|
|
TemplateID?: number;
|
|
|
|
HTMLPart?: string;
|
|
|
|
TextPart?: string;
|
|
|
|
TrackOpens?: string;
|
|
|
|
ReplyTo?: IDataObject;
|
|
|
|
TrackClicks?: string;
|
|
|
|
Priority?: number;
|
|
|
|
}
|