2020-04-30 05:03:36 -07:00
|
|
|
import { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import {
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
|
|
|
IDataObject
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
contactOperations,
|
|
|
|
contactFields
|
|
|
|
} from './ContactDescription';
|
|
|
|
import { agileCrmApiRequest, validateJSON} from './GenericFunctions';
|
|
|
|
import { IContact, IProperty } from './ContactInterface';
|
|
|
|
|
|
|
|
|
|
|
|
export class AgileCrm implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'AgileCRM',
|
|
|
|
name: 'agileCrm',
|
|
|
|
icon: 'file:agilecrm.png',
|
|
|
|
group: ['transform'],
|
|
|
|
version: 1,
|
|
|
|
description: 'Consume AgileCRM API',
|
|
|
|
defaults: {
|
|
|
|
name: 'AgileCRM',
|
|
|
|
color: '#772244',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'agileCrmApi',
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
// Node properties which the user gets displayed and
|
|
|
|
// can change on the node.
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Contact',
|
|
|
|
value: 'contact'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
default: 'contact',
|
|
|
|
description: 'Resource to consume.',
|
|
|
|
},
|
|
|
|
// CONTACT
|
|
|
|
...contactOperations,
|
|
|
|
...contactFields,
|
|
|
|
],
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
|
|
|
|
const items = this.getInputData();
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
const length = items.length as unknown as number;
|
|
|
|
let responseData;
|
|
|
|
const qs: IDataObject = {};
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
|
|
|
|
if(resource === 'contact'){
|
|
|
|
|
|
|
|
if(operation === 'get'){
|
|
|
|
const contactId = this.getNodeParameter('contactId', i) as string;
|
|
|
|
|
|
|
|
const endpoint = `api/contacts/${contactId}`;
|
2020-05-02 04:59:17 -07:00
|
|
|
responseData = await agileCrmApiRequest.call(this, 'GET', endpoint, {});
|
2020-04-30 05:03:36 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-04 06:14:22 -07:00
|
|
|
if(operation === 'delete'){
|
|
|
|
const contactId = this.getNodeParameter('contactId', i) as string;
|
|
|
|
|
|
|
|
const endpoint = `api/contacts/${contactId}`;
|
|
|
|
responseData = await agileCrmApiRequest.call(this, 'DELETE', endpoint, {});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-30 05:03:36 -07:00
|
|
|
if(operation === 'getAll'){
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
|
|
|
|
if (returnAll) {
|
|
|
|
const endpoint = `api/contacts`;
|
2020-05-02 04:59:17 -07:00
|
|
|
responseData = await agileCrmApiRequest.call(this, 'GET', endpoint, {});
|
2020-04-30 05:03:36 -07:00
|
|
|
} else {
|
|
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
|
|
const endpoint = `api/contacts?page_size=${limit}`;
|
2020-05-02 04:59:17 -07:00
|
|
|
responseData = await agileCrmApiRequest.call(this, 'GET', endpoint, {});
|
2020-04-30 05:03:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(operation === 'create'){
|
|
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i) as boolean;
|
|
|
|
const body: IContact = {};
|
2020-05-02 11:06:49 -07:00
|
|
|
let properties : IDataObject[] = [];
|
2020-04-30 05:03:36 -07:00
|
|
|
|
|
|
|
if (jsonParameters) {
|
|
|
|
const additionalFieldsJson = this.getNodeParameter('additionalFieldsJson', i) as string;
|
|
|
|
|
|
|
|
if (additionalFieldsJson !== '' ) {
|
|
|
|
|
|
|
|
if (validateJSON(additionalFieldsJson) !== undefined) {
|
|
|
|
|
|
|
|
Object.assign(body, JSON.parse(additionalFieldsJson));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
throw new Error('Additional fields must be a valid JSON');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
|
|
|
|
if (additionalFields.starValue) {
|
|
|
|
body.star_value = additionalFields.starValue as string;
|
|
|
|
}
|
|
|
|
if (additionalFields.leadScore) {
|
|
|
|
body.lead_score = additionalFields.leadScore as string;
|
|
|
|
}
|
|
|
|
if (additionalFields.tags) {
|
|
|
|
body.tags = additionalFields.tags as string[];
|
|
|
|
}
|
2020-05-02 11:06:49 -07:00
|
|
|
if(additionalFields.firstName){
|
|
|
|
properties.push({
|
|
|
|
type: 'SYSTEM',
|
|
|
|
name: 'first_name',
|
|
|
|
value: additionalFields.firstName as string
|
|
|
|
} as IDataObject);
|
2020-04-30 05:03:36 -07:00
|
|
|
}
|
2020-05-02 11:06:49 -07:00
|
|
|
if(additionalFields.lastName){
|
|
|
|
properties.push({
|
|
|
|
type: 'SYSTEM',
|
|
|
|
name: 'last_name',
|
|
|
|
value: additionalFields.lastName as string
|
|
|
|
} as IDataObject);
|
|
|
|
}
|
|
|
|
if(additionalFields.company){
|
|
|
|
properties.push({
|
|
|
|
type: 'SYSTEM',
|
|
|
|
name: 'company',
|
|
|
|
value: additionalFields.company as string
|
|
|
|
} as IDataObject);
|
|
|
|
}
|
|
|
|
if(additionalFields.title){
|
|
|
|
properties.push({
|
|
|
|
type: 'SYSTEM',
|
|
|
|
name: 'title',
|
|
|
|
value: additionalFields.title as string
|
|
|
|
} as IDataObject);
|
|
|
|
}
|
|
|
|
if(additionalFields.emailOptions){
|
|
|
|
//@ts-ignore
|
|
|
|
additionalFields.emailOptions.emailProperties.map(property => {
|
|
|
|
properties.push({
|
|
|
|
type: 'SYSTEM',
|
|
|
|
subtype: property.subtype as string,
|
|
|
|
name: 'email',
|
|
|
|
value: property.email as string
|
|
|
|
} as IDataObject);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if(additionalFields.addressOptions){
|
|
|
|
//@ts-ignore
|
|
|
|
additionalFields.addressOptions.addressProperties.map(property => {
|
|
|
|
properties.push({
|
|
|
|
type: 'SYSTEM',
|
|
|
|
subtype: property.subtype as string,
|
|
|
|
name: 'address',
|
|
|
|
value: property.address as string
|
|
|
|
} as IDataObject);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if(additionalFields.websiteOptions){
|
|
|
|
//@ts-ignore
|
|
|
|
additionalFields.websiteOptions.websiteProperties.map(property => {
|
|
|
|
properties.push({
|
|
|
|
type: 'SYSTEM',
|
|
|
|
subtype: property.subtype as string,
|
|
|
|
name: 'webiste',
|
|
|
|
value: property.url as string
|
|
|
|
} as IDataObject);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if(additionalFields.phoneOptions){
|
|
|
|
//@ts-ignore
|
|
|
|
additionalFields.phoneOptions.phoneProperties.map(property => {
|
|
|
|
properties.push({
|
|
|
|
type: 'SYSTEM',
|
|
|
|
subtype: property.subtype as string,
|
|
|
|
name: 'phone',
|
|
|
|
value: property.number as string
|
|
|
|
} as IDataObject);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if(additionalFields.customProperties){
|
|
|
|
//@ts-ignore
|
|
|
|
additionalFields.customProperties.customProperty.map(property => {
|
|
|
|
properties.push({
|
|
|
|
type: 'CUSTOM',
|
|
|
|
subtype: property.subtype as string,
|
|
|
|
name: property.name,
|
|
|
|
value: property.value as string
|
|
|
|
} as IDataObject);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
body.properties = properties;
|
|
|
|
|
2020-04-30 05:03:36 -07:00
|
|
|
}
|
|
|
|
const endpoint = 'api/contacts';
|
|
|
|
responseData = await agileCrmApiRequest.call(this, 'POST', endpoint, body);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Array.isArray(responseData)) {
|
|
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
|
|
} else {
|
|
|
|
returnData.push(responseData as IDataObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|