mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
70ae90fa3c
* ⚡ Update `lintfix` script * 👕 Remove unneeded lint exceptions * 👕 Run baseline `lintfix` * 👕 Apply `node-param-description-miscased-url` (#3441) * 👕 Apply `rule node-param-placeholder-miscased-id` (#3443) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-wrong-for-upsert` (#3446) * 👕 Apply `node-param-min-value-wrong-for-limit` (#3442) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-wrong-for-dynamic-options` (#3454) * 🔨 fix * ⚡ Fix `Assigned To` fields Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `rule node-param-default-wrong-for-number` (#3453) * 👕 Apply `node-param-default-wrong-for-string` (#3452) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-miscased` (#3449) * 🔨 fix * 🔨 exceptions * ⚡ review fixes * 👕 Apply `node-param-description-lowercase-first-char` (#3451) * ⚡ fix * ⚡ review fixes * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-dynamic-options` (#3456) * Rule working as intended * Add rule * 🔥 Remove repetitions * 👕 Add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Small fix for `node-param-description-wrong-for-dynamic-options` * 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3460) * 👕 Apply `node-param-description-line-break-html-tag` (#3462) * 👕 Run baseline `lintfix` * 👕 Apply `node-param-options-type-unsorted-items` (#3459) * ⚡ fix * 🔨 exceptions * Add exception for Salesmate and Zoom Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Restore `lintfix` command Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com>
323 lines
9.2 KiB
TypeScript
323 lines
9.2 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
ILoadOptionsFunctions,
|
|
INodeExecutionData,
|
|
INodePropertyOptions,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
JsonObject,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
IMessage,
|
|
mailjetApiRequest,
|
|
validateJSON,
|
|
} from './GenericFunctions';
|
|
|
|
import {
|
|
emailFields,
|
|
emailOperations,
|
|
} from './EmailDescription';
|
|
|
|
import {
|
|
smsFields,
|
|
smsOperations,
|
|
} from './SmsDescription';
|
|
export class Mailjet implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Mailjet',
|
|
name: 'mailjet',
|
|
icon: 'file:mailjet.svg',
|
|
group: ['output'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume Mailjet API',
|
|
defaults: {
|
|
name: 'Mailjet',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'mailjetEmailApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'email',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: 'mailjetSmsApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'sms',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Email',
|
|
value: 'email',
|
|
},
|
|
{
|
|
name: 'SMS',
|
|
value: 'sms',
|
|
},
|
|
],
|
|
default: 'email',
|
|
},
|
|
...emailOperations,
|
|
...emailFields,
|
|
...smsOperations,
|
|
...smsFields,
|
|
],
|
|
};
|
|
|
|
methods = {
|
|
loadOptions: {
|
|
// Get all the available custom fields to display them to user so that he can
|
|
// select them easily
|
|
async getTemplates(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
const returnData: INodePropertyOptions[] = [];
|
|
const { Data: templates } = await mailjetApiRequest.call(this, 'GET', '/v3/REST/template');
|
|
for (const template of templates) {
|
|
returnData.push({
|
|
name: template.Name,
|
|
value: template.ID,
|
|
});
|
|
}
|
|
return returnData;
|
|
},
|
|
},
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
const returnData: IDataObject[] = [];
|
|
const length = items.length;
|
|
let responseData;
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
try {
|
|
if (resource === 'email') {
|
|
//https://dev.mailjet.com/email/guides/send-api-v31/#send-a-basic-email
|
|
if (operation === 'send') {
|
|
const fromEmail = this.getNodeParameter('fromEmail', i) as string;
|
|
const htmlBody = this.getNodeParameter('html', i) as string;
|
|
const textBody = this.getNodeParameter('text', i) as string;
|
|
const subject = this.getNodeParameter('subject', i) as string;
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
const toEmail = (this.getNodeParameter('toEmail', i) as string).split(',') as string[];
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i) as boolean;
|
|
|
|
const body: IMessage = {
|
|
From: {
|
|
Email: fromEmail,
|
|
},
|
|
Subject: subject,
|
|
To: [],
|
|
Cc: [],
|
|
Bcc: [],
|
|
Variables: {},
|
|
};
|
|
|
|
for (const email of toEmail) {
|
|
body.To?.push({
|
|
Email: email,
|
|
});
|
|
}
|
|
|
|
if (jsonParameters) {
|
|
const variablesJson = this.getNodeParameter('variablesJson', i) as string;
|
|
const parsedJson = validateJSON(variablesJson);
|
|
if (parsedJson === undefined) {
|
|
throw new NodeOperationError(this.getNode(),`Parameter 'Variables (JSON)' has a invalid JSON`);
|
|
}
|
|
body.Variables = parsedJson;
|
|
} else {
|
|
const variables = (this.getNodeParameter('variablesUi', i) as IDataObject).variablesValues as IDataObject[] || [];
|
|
for (const variable of variables) {
|
|
body.Variables![variable.name as string] = variable.value;
|
|
}
|
|
}
|
|
|
|
if (htmlBody) {
|
|
body.HTMLPart = htmlBody;
|
|
}
|
|
if (textBody) {
|
|
body.TextPart = textBody;
|
|
}
|
|
if (additionalFields.bccEmail) {
|
|
const bccEmail = (additionalFields.bccEmail as string).split(',') as string[];
|
|
for (const email of bccEmail) {
|
|
body.Bcc!.push({
|
|
Email: email,
|
|
});
|
|
}
|
|
}
|
|
if (additionalFields.ccAddresses) {
|
|
const ccEmail = (additionalFields.ccAddresses as string).split(',') as string[];
|
|
for (const email of ccEmail) {
|
|
body.Cc!.push({
|
|
Email: email,
|
|
});
|
|
}
|
|
}
|
|
if (additionalFields.trackOpens) {
|
|
body.TrackOpens = additionalFields.trackOpens as string;
|
|
}
|
|
if (additionalFields.replyTo) {
|
|
const replyTo = additionalFields.replyTo as string;
|
|
body['ReplyTo'] = {
|
|
Email: replyTo,
|
|
};
|
|
}
|
|
if (additionalFields.trackClicks) {
|
|
body.TrackClicks = additionalFields.trackClicks as string;
|
|
}
|
|
if (additionalFields.fromName) {
|
|
body.From!.Name = additionalFields.fromName as string;
|
|
}
|
|
if (additionalFields.templateLanguage) {
|
|
body.TemplateLanguage = additionalFields.templateLanguage as boolean;
|
|
}
|
|
if (additionalFields.priority) {
|
|
body.Priority = additionalFields.priority as number;
|
|
}
|
|
responseData = await mailjetApiRequest.call(this, 'POST', '/v3.1/send', { Messages: [body] });
|
|
responseData = responseData.Messages;
|
|
|
|
}
|
|
//https://dev.mailjet.com/email/guides/send-api-v31/#use-a-template
|
|
if (operation === 'sendTemplate') {
|
|
const fromEmail = this.getNodeParameter('fromEmail', i) as string;
|
|
const templateId = parseInt(this.getNodeParameter('templateId', i) as string, 10);
|
|
const subject = this.getNodeParameter('subject', i) as string;
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
const toEmail = (this.getNodeParameter('toEmail', i) as string).split(',') as string[];
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i) as boolean;
|
|
|
|
const body: IMessage = {
|
|
From: {
|
|
Email: fromEmail,
|
|
},
|
|
Subject: subject,
|
|
To: [],
|
|
Cc: [],
|
|
Bcc: [],
|
|
Variables: {},
|
|
TemplateID: templateId,
|
|
};
|
|
|
|
for (const email of toEmail) {
|
|
body.To!.push({
|
|
Email: email,
|
|
});
|
|
}
|
|
|
|
if (jsonParameters) {
|
|
const variablesJson = this.getNodeParameter('variablesJson', i) as string;
|
|
const parsedJson = validateJSON(variablesJson);
|
|
if (parsedJson === undefined) {
|
|
throw new NodeOperationError(this.getNode(), `Parameter 'Variables (JSON)' has a invalid JSON`);
|
|
}
|
|
body.Variables = parsedJson;
|
|
} else {
|
|
const variables = (this.getNodeParameter('variablesUi', i) as IDataObject).variablesValues as IDataObject[] || [];
|
|
for (const variable of variables) {
|
|
body.Variables![variable.name as string] = variable.value;
|
|
}
|
|
}
|
|
|
|
if (additionalFields.bccEmail) {
|
|
const bccEmail = (additionalFields.bccEmail as string).split(',') as string[];
|
|
for (const email of bccEmail) {
|
|
body.Bcc!.push({
|
|
Email: email,
|
|
});
|
|
}
|
|
}
|
|
if (additionalFields.ccEmail) {
|
|
const ccEmail = (additionalFields.ccEmail as string).split(',') as string[];
|
|
for (const email of ccEmail) {
|
|
body.Cc!.push({
|
|
Email: email,
|
|
});
|
|
}
|
|
}
|
|
if (additionalFields.replyTo) {
|
|
const replyTo = additionalFields.replyTo as string;
|
|
body['ReplyTo'] = {
|
|
Email: replyTo,
|
|
};
|
|
}
|
|
if (additionalFields.trackOpens) {
|
|
body.TrackOpens = additionalFields.trackOpens as string;
|
|
}
|
|
if (additionalFields.trackClicks) {
|
|
body.TrackClicks = additionalFields.trackClicks as string;
|
|
}
|
|
if (additionalFields.fromName) {
|
|
body.From!.Name = additionalFields.fromName as string;
|
|
}
|
|
if (additionalFields.templateLanguage) {
|
|
body.TemplateLanguage = additionalFields.templateLanguage as boolean;
|
|
}
|
|
if (additionalFields.priority) {
|
|
body.Priority = additionalFields.priority as number;
|
|
}
|
|
responseData = await mailjetApiRequest.call(this, 'POST', '/v3.1/send', { Messages: [body] });
|
|
responseData = responseData.Messages;
|
|
}
|
|
}
|
|
if (resource === 'sms') {
|
|
//https://dev.mailjet.com/sms/reference/send-message#v4_post_sms-send
|
|
if (operation === 'send') {
|
|
const from = this.getNodeParameter('from', i) as string;
|
|
const to = this.getNodeParameter('to', i) as boolean;
|
|
const text = this.getNodeParameter('text', i) as string;
|
|
const body: IDataObject = {
|
|
From: from,
|
|
To: to,
|
|
Text: text,
|
|
};
|
|
responseData = await mailjetApiRequest.call(this, 'POST', '/v4/sms-send', body);
|
|
}
|
|
}
|
|
if (Array.isArray(responseData)) {
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
} else {
|
|
returnData.push(responseData as IDataObject);
|
|
}
|
|
} catch (error) {
|
|
if (this.continueOnFail()) {
|
|
returnData.push({ error: (error as JsonObject).message });
|
|
continue;
|
|
}
|
|
throw error;
|
|
}
|
|
}
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
}
|