2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
|
|
|
import { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
|
|
|
|
2022-11-11 07:07:50 -08:00
|
|
|
import { IDataObject, IHookFunctions } from 'n8n-workflow';
|
2022-08-17 08:50:24 -07:00
|
|
|
|
|
|
|
export async function mailjetApiRequest(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | IHookFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
path: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2022-12-02 03:53:59 -08:00
|
|
|
const resource = this.getNodeParameter('resource', 0);
|
2022-05-15 11:39:54 -07:00
|
|
|
|
|
|
|
let credentialType;
|
|
|
|
|
|
|
|
if (resource === 'email' || this.getNode().type.includes('Trigger')) {
|
|
|
|
credentialType = 'mailjetEmailApi';
|
2022-08-17 08:50:24 -07:00
|
|
|
const { sandboxMode } = (await this.getCredentials('mailjetEmailApi')) as {
|
|
|
|
sandboxMode: boolean;
|
|
|
|
};
|
2022-05-15 11:39:54 -07:00
|
|
|
|
|
|
|
if (!this.getNode().type.includes('Trigger')) {
|
|
|
|
Object.assign(body, { SandboxMode: sandboxMode });
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
credentialType = 'mailjetSmsApi';
|
|
|
|
}
|
|
|
|
|
2020-02-13 07:43:59 -08:00
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
qs,
|
|
|
|
body,
|
2023-01-13 09:11:56 -08:00
|
|
|
uri: uri ?? `https://api.mailjet.com${path}`,
|
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;
|
|
|
|
}
|
2022-05-15 11:39:54 -07:00
|
|
|
|
2022-11-22 08:57:17 -08:00
|
|
|
return this.helpers.requestWithAuthentication.call(this, credentialType, options);
|
2020-02-13 07:43:59 -08:00
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function mailjetApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | IHookFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-02-13 07:43:59 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
query.Limit = 1000;
|
|
|
|
query.Offset = 0;
|
|
|
|
|
|
|
|
do {
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await mailjetApiRequest.call(this, method, endpoint, body, query, undefined, {
|
|
|
|
resolveWithFullResponse: true,
|
|
|
|
});
|
2020-02-13 07:43:59 -08:00
|
|
|
returnData.push.apply(returnData, responseData.body);
|
|
|
|
query.Offset = query.Offset + query.Limit;
|
2022-08-17 08:50:24 -07:00
|
|
|
} while (responseData.length !== 0);
|
2020-02-13 07:43:59 -08:00
|
|
|
return returnData;
|
|
|
|
}
|
2021-05-07 16:46:50 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export function validateJSON(json: string | undefined): IDataObject | undefined {
|
2022-03-20 12:13:18 -07:00
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = undefined;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-05-07 16:46:50 -07:00
|
|
|
export interface IMessage {
|
2022-08-17 08:50:24 -07:00
|
|
|
From?: { Email?: string; Name?: string };
|
2021-05-07 16:46:50 -07:00
|
|
|
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;
|
|
|
|
}
|