2020-01-15 18:53:43 -08:00
|
|
|
|
import { snakeCase } from 'change-case';
|
|
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
|
import {
|
|
|
|
|
IExecuteFunctions,
|
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
import {
|
|
|
|
|
IDataObject,
|
|
|
|
|
INodeTypeDescription,
|
|
|
|
|
INodeExecutionData,
|
|
|
|
|
INodeType,
|
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
|
INodePropertyOptions,
|
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
import {
|
|
|
|
|
mauticApiRequest,
|
|
|
|
|
mauticApiRequestAllItems,
|
|
|
|
|
validateJSON,
|
|
|
|
|
} from './GenericFunctions';
|
|
|
|
|
import {
|
|
|
|
|
contactFields,
|
|
|
|
|
contactOperations,
|
|
|
|
|
} from './ContactDescription';
|
|
|
|
|
|
|
|
|
|
export class Mautic implements INodeType {
|
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
|
displayName: 'Mautic',
|
|
|
|
|
name: 'mautic',
|
|
|
|
|
icon: 'file:mautic.png',
|
|
|
|
|
group: ['output'],
|
|
|
|
|
version: 1,
|
|
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
|
|
|
description: 'Consume Mautic API',
|
|
|
|
|
defaults: {
|
|
|
|
|
name: 'Mautic',
|
|
|
|
|
color: '#52619b',
|
|
|
|
|
},
|
|
|
|
|
inputs: ['main'],
|
|
|
|
|
outputs: ['main'],
|
|
|
|
|
credentials: [
|
|
|
|
|
{
|
|
|
|
|
name: 'mauticApi',
|
|
|
|
|
required: true,
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
properties: [
|
|
|
|
|
{
|
|
|
|
|
displayName: 'Resource',
|
|
|
|
|
name: 'resource',
|
|
|
|
|
type: 'options',
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
name: 'Contact',
|
|
|
|
|
value: 'contact',
|
|
|
|
|
description: 'Use this endpoint to manipulate and obtain details on Mautic’s contacts.',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
default: 'contact',
|
|
|
|
|
description: 'Resource to consume.',
|
|
|
|
|
},
|
|
|
|
|
...contactOperations,
|
|
|
|
|
...contactFields,
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
methods = {
|
|
|
|
|
loadOptions: {
|
|
|
|
|
// Get all the available companies to display them to user so that he can
|
|
|
|
|
// select them easily
|
|
|
|
|
async getCompanies(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
|
let companies;
|
|
|
|
|
try {
|
|
|
|
|
companies = await mauticApiRequestAllItems.call(this, 'companies', 'GET', '/companies');
|
|
|
|
|
} catch (err) {
|
|
|
|
|
throw new Error(`Mautic Error: ${JSON.stringify(err)}`);
|
|
|
|
|
}
|
|
|
|
|
for (const company of companies) {
|
|
|
|
|
returnData.push({
|
|
|
|
|
name: company.fields.all.companyname,
|
|
|
|
|
value: company.id,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
return returnData;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
|
const items = this.getInputData();
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
const length = items.length as unknown as number;
|
|
|
|
|
let qs: IDataObject;
|
|
|
|
|
let responseData;
|
2020-01-15 18:53:43 -08:00
|
|
|
|
|
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
|
qs = {};
|
2020-01-15 18:53:43 -08:00
|
|
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
|
if (resource === 'contact') {
|
|
|
|
|
//https://developer.mautic.org/?php#create-contact
|
|
|
|
|
if (operation === 'create') {
|
|
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
|
const jsonActive = this.getNodeParameter('jsonParameters', i) as boolean;
|
|
|
|
|
let body: IDataObject = {};
|
|
|
|
|
if (!jsonActive) {
|
|
|
|
|
const firstName = this.getNodeParameter('firstName', i) as string;
|
|
|
|
|
const lastName = this.getNodeParameter('lastName', i) as string;
|
|
|
|
|
const company = this.getNodeParameter('company', i) as string;
|
|
|
|
|
const position = this.getNodeParameter('position', i) as string;
|
|
|
|
|
const title = this.getNodeParameter('title', i) as string;
|
|
|
|
|
body.firstname = firstName;
|
|
|
|
|
body.lastname = lastName;
|
|
|
|
|
body.company = company;
|
|
|
|
|
body.position = position;
|
|
|
|
|
body.title = title;
|
|
|
|
|
} else {
|
|
|
|
|
const json = validateJSON(this.getNodeParameter('bodyJson', i) as string);
|
|
|
|
|
if (json !== undefined) {
|
|
|
|
|
body = { ...json };
|
|
|
|
|
} else {
|
2020-01-15 18:53:43 -08:00
|
|
|
|
throw new Error('Invalid JSON');
|
2020-01-15 05:55:46 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (additionalFields.ipAddress) {
|
|
|
|
|
body.ipAddress = additionalFields.ipAddress as string;
|
|
|
|
|
}
|
|
|
|
|
if (additionalFields.lastActive) {
|
|
|
|
|
body.ipAddress = additionalFields.lastActive as string;
|
|
|
|
|
}
|
|
|
|
|
if (additionalFields.ownerId) {
|
|
|
|
|
body.ownerId = additionalFields.ownerId as string;
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
responseData = await mauticApiRequest.call(this, 'POST', '/contacts/new', body);
|
|
|
|
|
responseData = responseData.contact;
|
|
|
|
|
} catch (err) {
|
|
|
|
|
throw new Error(`Mautic Error: ${JSON.stringify(err)}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//https://developer.mautic.org/?php#edit-contact
|
|
|
|
|
if (operation === 'update') {
|
|
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
|
const contactId = this.getNodeParameter('contactId', i) as string;
|
|
|
|
|
let body: IDataObject = {};
|
|
|
|
|
if (updateFields.firstName) {
|
|
|
|
|
body.firstname = updateFields.firstName as string;
|
|
|
|
|
}
|
|
|
|
|
if (updateFields.lastName) {
|
|
|
|
|
body.lastname = updateFields.lastName as string;
|
|
|
|
|
}
|
|
|
|
|
if (updateFields.company) {
|
|
|
|
|
body.company = updateFields.company as string;
|
|
|
|
|
}
|
|
|
|
|
if (updateFields.position) {
|
|
|
|
|
body.position = updateFields.position as string;
|
|
|
|
|
}
|
|
|
|
|
if (updateFields.title) {
|
|
|
|
|
body.title = updateFields.title as string;
|
|
|
|
|
}
|
|
|
|
|
if (updateFields.bodyJson) {
|
|
|
|
|
const json = validateJSON(updateFields.bodyJson as string);
|
|
|
|
|
if (json !== undefined) {
|
|
|
|
|
body = { ...json };
|
|
|
|
|
} else {
|
2020-01-15 18:53:43 -08:00
|
|
|
|
throw new Error('Invalid JSON');
|
2020-01-15 05:55:46 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (updateFields.ipAddress) {
|
|
|
|
|
body.ipAddress = updateFields.ipAddress as string;
|
|
|
|
|
}
|
|
|
|
|
if (updateFields.lastActive) {
|
|
|
|
|
body.ipAddress = updateFields.lastActive as string;
|
|
|
|
|
}
|
|
|
|
|
if (updateFields.ownerId) {
|
|
|
|
|
body.ownerId = updateFields.ownerId as string;
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
responseData = await mauticApiRequest.call(this, 'PATCH', `/contacts/${contactId}/edit`, body);
|
|
|
|
|
responseData = responseData.contact;
|
|
|
|
|
} catch (err) {
|
|
|
|
|
throw new Error(`Mautic Error: ${JSON.stringify(err)}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//https://developer.mautic.org/?php#get-contact
|
|
|
|
|
if (operation === 'get') {
|
|
|
|
|
const contactId = this.getNodeParameter('contactId', i) as string;
|
|
|
|
|
try {
|
|
|
|
|
responseData = await mauticApiRequest.call(this, 'GET', `/contacts/${contactId}`);
|
|
|
|
|
responseData = responseData.contact;
|
|
|
|
|
} catch (err) {
|
|
|
|
|
throw new Error(`Mautic Error: ${JSON.stringify(err)}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//https://developer.mautic.org/?php#list-contacts
|
|
|
|
|
if (operation === 'getAll') {
|
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
2020-01-15 18:53:43 -08:00
|
|
|
|
qs = Object.assign(qs, options);
|
|
|
|
|
if (qs.orderBy) {
|
|
|
|
|
// For some reason does camelCase get used in the returned data
|
|
|
|
|
// but snake_case here. So convert it automatically to not confuse
|
|
|
|
|
// the users.
|
|
|
|
|
qs.orderBy = snakeCase(qs.orderBy as string);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
|
try {
|
|
|
|
|
if (returnAll === true) {
|
|
|
|
|
responseData = await mauticApiRequestAllItems.call(this, 'contacts', 'GET', '/contacts', {}, qs);
|
|
|
|
|
} else {
|
|
|
|
|
qs.limit = this.getNodeParameter('limit', i) as number;
|
|
|
|
|
qs.start = 0;
|
|
|
|
|
responseData = await mauticApiRequest.call(this, 'GET', '/contacts', {}, qs);
|
|
|
|
|
responseData = responseData.contacts;
|
|
|
|
|
responseData = Object.values(responseData);
|
|
|
|
|
}
|
2020-01-15 18:53:43 -08:00
|
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
|
} catch (err) {
|
|
|
|
|
throw new Error(`Mautic Error: ${JSON.stringify(err)}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//https://developer.mautic.org/?php#delete-contact
|
|
|
|
|
if (operation === 'delete') {
|
|
|
|
|
const contactId = this.getNodeParameter('contactId', i) as string;
|
|
|
|
|
try {
|
|
|
|
|
responseData = await mauticApiRequest.call(this, 'DELETE', `/contacts/${contactId}/delete`);
|
|
|
|
|
responseData = responseData.contact;
|
|
|
|
|
} catch (err) {
|
|
|
|
|
throw new Error(`Mautic Error: ${JSON.stringify(err)}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 18:53:43 -08:00
|
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
|
if (Array.isArray(responseData)) {
|
2020-01-15 18:53:43 -08:00
|
|
|
|
if (options.rawData !== true) {
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
responseData = responseData.map(item => item.fields.all);
|
|
|
|
|
}
|
2020-01-15 05:55:46 -08:00
|
|
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
|
|
|
} else {
|
2020-01-15 18:53:43 -08:00
|
|
|
|
if (options.rawData !== true) {
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
responseData = responseData.fields.all;
|
|
|
|
|
}
|
2020-01-15 05:55:46 -08:00
|
|
|
|
returnData.push(responseData as IDataObject);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 18:53:43 -08:00
|
|
|
|
|
2020-01-15 05:55:46 -08:00
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
|
}
|
|
|
|
|
}
|