2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IExecuteFunctions,
|
2020-10-13 12:35:01 -07:00
|
|
|
IDataObject,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodePropertyOptions,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
2022-08-30 08:55:33 -07:00
|
|
|
NodeExecutionWithMetadata,
|
2020-10-13 12:35:01 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { automizyApiRequest, automizyApiRequestAllItems } from './GenericFunctions';
|
2020-10-13 12:35:01 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { contactFields, contactOperations } from './ContactDescription';
|
2020-10-13 12:35:01 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { listFields, listOperations } from './ListDescription';
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
export class Automizy implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'Automizy',
|
|
|
|
name: 'automizy',
|
2022-06-20 07:54:01 -07:00
|
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
2020-10-13 12:35:01 -07:00
|
|
|
icon: 'file:automizy.png',
|
|
|
|
group: ['input'],
|
|
|
|
version: 1,
|
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
|
|
description: 'Consume Automizy API',
|
|
|
|
defaults: {
|
|
|
|
name: 'Automizy',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'automizyApi',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-10-13 12:35:01 -07:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Contact',
|
|
|
|
value: 'contact',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'List',
|
|
|
|
value: 'list',
|
|
|
|
},
|
|
|
|
],
|
2020-10-15 03:07:06 -07:00
|
|
|
default: 'contact',
|
2020-10-13 12:35:01 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
...contactOperations,
|
|
|
|
...contactFields,
|
|
|
|
|
|
|
|
...listOperations,
|
|
|
|
...listFields,
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
methods = {
|
|
|
|
loadOptions: {
|
|
|
|
// Get all the tags to display them to user so that he can
|
|
|
|
// select them easily
|
2022-08-01 13:47:55 -07:00
|
|
|
async getLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
2020-10-13 12:39:36 -07:00
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const lists = await automizyApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'smartLists',
|
|
|
|
'GET',
|
2022-12-29 03:20:43 -08:00
|
|
|
'/smart-lists',
|
2020-10-13 12:39:36 -07:00
|
|
|
);
|
|
|
|
for (const list of lists) {
|
|
|
|
returnData.push({
|
|
|
|
name: list.name,
|
2020-10-22 06:46:03 -07:00
|
|
|
value: list.id,
|
2020-10-13 12:39:36 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
2022-08-01 13:47:55 -07:00
|
|
|
async getTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
2020-10-13 12:35:01 -07:00
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const tags = await automizyApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'contactTags',
|
|
|
|
'GET',
|
2020-10-22 09:00:28 -07:00
|
|
|
'/contacts/tag-manager',
|
2020-10-13 12:35:01 -07:00
|
|
|
);
|
|
|
|
for (const tag of tags) {
|
|
|
|
returnData.push({
|
2020-10-13 12:39:36 -07:00
|
|
|
name: tag.name,
|
2020-10-22 06:46:03 -07:00
|
|
|
value: tag.name,
|
2020-10-13 12:35:01 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
2022-08-01 13:47:55 -07:00
|
|
|
async getCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
2020-10-13 12:35:01 -07:00
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const customFields = await automizyApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'customFields',
|
|
|
|
'GET',
|
2020-10-22 09:00:28 -07:00
|
|
|
'/custom-fields',
|
2020-10-13 12:35:01 -07:00
|
|
|
);
|
|
|
|
for (const customField of customFields) {
|
|
|
|
returnData.push({
|
2020-10-13 12:39:36 -07:00
|
|
|
name: customField.name,
|
2020-10-22 06:46:03 -07:00
|
|
|
value: customField.id,
|
2020-10-13 12:35:01 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
2022-08-30 08:55:33 -07:00
|
|
|
const returnData: INodeExecutionData[] = [];
|
2022-04-22 09:29:51 -07:00
|
|
|
const length = items.length;
|
2020-10-13 12:35:01 -07:00
|
|
|
const qs: IDataObject = {};
|
|
|
|
let responseData;
|
2022-12-02 03:53:59 -08:00
|
|
|
const resource = this.getNodeParameter('resource', 0);
|
|
|
|
const operation = this.getNodeParameter('operation', 0);
|
2020-10-13 12:35:01 -07:00
|
|
|
for (let i = 0; i < length; i++) {
|
2020-10-13 12:39:36 -07:00
|
|
|
if (resource === 'contact') {
|
|
|
|
if (operation === 'create') {
|
2020-10-13 12:35:01 -07:00
|
|
|
const listId = this.getNodeParameter('listId', i) as string;
|
|
|
|
|
|
|
|
const email = this.getNodeParameter('email', i) as string;
|
|
|
|
|
2022-11-18 07:29:44 -08:00
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
const body: IDataObject = {
|
|
|
|
email,
|
|
|
|
};
|
|
|
|
|
|
|
|
Object.assign(body, additionalFields);
|
|
|
|
|
|
|
|
if (body.customFieldsUi) {
|
2022-08-01 13:47:55 -07:00
|
|
|
const customFieldsValues = (body.customFieldsUi as IDataObject)
|
|
|
|
.customFieldsValues as IDataObject[];
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
body.customFields = {};
|
|
|
|
|
|
|
|
for (const customField of customFieldsValues) {
|
|
|
|
//@ts-ignore
|
|
|
|
body.customFields[customField.key] = customField.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete body.customFieldsUi;
|
|
|
|
}
|
|
|
|
|
|
|
|
responseData = await automizyApiRequest.call(
|
|
|
|
this,
|
|
|
|
'POST',
|
|
|
|
`/smart-lists/${listId}/contacts`,
|
2020-10-22 09:00:28 -07:00
|
|
|
body,
|
2020-10-13 12:35:01 -07:00
|
|
|
);
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = responseData.contacts;
|
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
2022-08-30 08:55:33 -07:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
|
2020-10-13 12:39:36 -07:00
|
|
|
if (operation === 'delete') {
|
|
|
|
const contactId = this.getNodeParameter('contactId', i) as string;
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
responseData = await automizyApiRequest.call(this, 'DELETE', `/contacts/${contactId}`);
|
2020-10-13 12:39:36 -07:00
|
|
|
|
|
|
|
responseData = { success: true };
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
|
|
|
this.helpers.returnJsonArray(responseData),
|
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:39:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (operation === 'get') {
|
|
|
|
const contactId = this.getNodeParameter('contactId', i) as string;
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
responseData = await automizyApiRequest.call(this, 'GET', `/contacts/${contactId}`);
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
2022-08-30 08:55:33 -07:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:39:36 -07:00
|
|
|
}
|
|
|
|
|
2020-10-13 12:35:01 -07:00
|
|
|
if (operation === 'getAll') {
|
2022-11-18 05:31:38 -08:00
|
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
const listId = this.getNodeParameter('listId', i) as string;
|
|
|
|
|
2022-11-18 07:29:44 -08:00
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
if (additionalFields.direction && additionalFields.sortBy) {
|
2020-10-13 12:39:36 -07:00
|
|
|
qs.order = `${additionalFields.sortBy}:${additionalFields.direction}`;
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (additionalFields.fields) {
|
|
|
|
qs.fields = additionalFields.fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (returnAll) {
|
|
|
|
responseData = await automizyApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'contacts',
|
|
|
|
'GET',
|
|
|
|
`/smart-lists/${listId}/contacts`,
|
|
|
|
{},
|
2020-10-22 09:00:28 -07:00
|
|
|
qs,
|
2020-10-13 12:35:01 -07:00
|
|
|
);
|
|
|
|
} else {
|
2022-11-18 06:26:22 -08:00
|
|
|
qs.limit = this.getNodeParameter('limit', i);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
responseData = await automizyApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/smart-lists/${listId}/contacts`,
|
|
|
|
{},
|
2020-10-22 09:00:28 -07:00
|
|
|
qs,
|
2020-10-13 12:35:01 -07:00
|
|
|
);
|
|
|
|
}
|
2022-08-30 08:55:33 -07:00
|
|
|
|
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
2022-08-30 08:55:33 -07:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (operation === 'update') {
|
|
|
|
const email = this.getNodeParameter('email', i) as string;
|
|
|
|
|
2022-11-18 07:29:44 -08:00
|
|
|
const updateFields = this.getNodeParameter('updateFields', i);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
const body: IDataObject = {};
|
|
|
|
|
|
|
|
Object.assign(body, updateFields);
|
|
|
|
|
|
|
|
if (body.customFieldsUi) {
|
2022-08-01 13:47:55 -07:00
|
|
|
const customFieldsValues = (body.customFieldsUi as IDataObject)
|
|
|
|
.customFieldsValues as IDataObject[];
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
body.customFields = {};
|
|
|
|
|
|
|
|
for (const customField of customFieldsValues) {
|
|
|
|
//@ts-ignore
|
|
|
|
body.customFields[customField.key] = customField.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete body.customFieldsUi;
|
|
|
|
}
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
responseData = await automizyApiRequest.call(this, 'PATCH', `/contacts/${email}`, body);
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
2022-08-30 08:55:33 -07:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resource === 'list') {
|
|
|
|
if (operation === 'create') {
|
|
|
|
const name = this.getNodeParameter('name', i) as string;
|
|
|
|
|
|
|
|
const body: IDataObject = {
|
|
|
|
name,
|
|
|
|
};
|
|
|
|
|
2022-12-29 03:20:43 -08:00
|
|
|
responseData = await automizyApiRequest.call(this, 'POST', '/smart-lists', body);
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
2022-08-30 08:55:33 -07:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (operation === 'delete') {
|
|
|
|
const listId = this.getNodeParameter('listId', i) as string;
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
responseData = await automizyApiRequest.call(this, 'DELETE', `/smart-lists/${listId}`);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
responseData = { success: true };
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
|
|
|
this.helpers.returnJsonArray(responseData),
|
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (operation === 'get') {
|
|
|
|
const listId = this.getNodeParameter('listId', i) as string;
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
responseData = await automizyApiRequest.call(this, 'GET', `/smart-lists/${listId}`);
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
2022-08-30 08:55:33 -07:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (operation === 'getAll') {
|
2022-11-18 05:31:38 -08:00
|
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
2022-11-18 07:29:44 -08:00
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
if (additionalFields.direction && additionalFields.sortBy) {
|
2020-10-13 12:39:36 -07:00
|
|
|
qs.order = `${additionalFields.sortBy}:${additionalFields.direction}`;
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (additionalFields.fields) {
|
|
|
|
qs.fields = additionalFields.fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (returnAll) {
|
|
|
|
responseData = await automizyApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'smartLists',
|
|
|
|
'GET',
|
2022-12-29 03:20:43 -08:00
|
|
|
'/smart-lists',
|
2020-10-13 12:35:01 -07:00
|
|
|
{},
|
2020-10-22 09:00:28 -07:00
|
|
|
qs,
|
2020-10-13 12:35:01 -07:00
|
|
|
);
|
|
|
|
} else {
|
2022-11-18 06:26:22 -08:00
|
|
|
qs.limit = this.getNodeParameter('limit', i);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
2022-12-29 03:20:43 -08:00
|
|
|
responseData = await automizyApiRequest.call(this, 'GET', '/smart-lists', {}, qs);
|
2020-10-13 12:35:01 -07:00
|
|
|
|
|
|
|
responseData = responseData.smartLists;
|
|
|
|
}
|
2022-08-30 08:55:33 -07:00
|
|
|
|
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
2022-08-30 08:55:33 -07:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (operation === 'update') {
|
|
|
|
const listId = this.getNodeParameter('listId', i) as string;
|
|
|
|
|
|
|
|
const name = this.getNodeParameter('name', i) as string;
|
|
|
|
|
|
|
|
const body: IDataObject = {
|
|
|
|
name,
|
|
|
|
};
|
|
|
|
|
|
|
|
responseData = await automizyApiRequest.call(
|
|
|
|
this,
|
|
|
|
'PATCH',
|
|
|
|
`/smart-lists/${listId}`,
|
2020-10-22 09:00:28 -07:00
|
|
|
body,
|
2020-10-13 12:35:01 -07:00
|
|
|
);
|
2022-08-30 08:55:33 -07:00
|
|
|
|
|
|
|
responseData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
2022-08-30 08:55:33 -07:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-30 08:55:33 -07:00
|
|
|
|
|
|
|
returnData.push(...(responseData as NodeExecutionWithMetadata[]));
|
|
|
|
|
|
|
|
return this.prepareOutputData(returnData);
|
2020-10-13 12:35:01 -07:00
|
|
|
}
|
|
|
|
}
|