mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
417 lines
13 KiB
TypeScript
417 lines
13 KiB
TypeScript
import {
|
|
type IExecuteFunctions,
|
|
type IDataObject,
|
|
type ILoadOptionsFunctions,
|
|
type INodeExecutionData,
|
|
type INodeType,
|
|
type INodeTypeDescription,
|
|
type INodeTypeBaseDescription,
|
|
NodeConnectionType,
|
|
} from 'n8n-workflow';
|
|
|
|
import isEmpty from 'lodash/isEmpty';
|
|
import omit from 'lodash/omit';
|
|
import { lemlistApiRequest, lemlistApiRequestAllItems } from '../GenericFunctions';
|
|
import {
|
|
activityFields,
|
|
activityOperations,
|
|
campaignFields,
|
|
campaignOperations,
|
|
enrichmentFields,
|
|
enrichmentOperations,
|
|
leadFields,
|
|
leadOperations,
|
|
teamFields,
|
|
teamOperations,
|
|
unsubscribeFields,
|
|
unsubscribeOperations,
|
|
} from './descriptions';
|
|
const versionDescription: INodeTypeDescription = {
|
|
displayName: 'Lemlist',
|
|
name: 'lemlist',
|
|
icon: 'file:lemlist.svg',
|
|
group: ['transform'],
|
|
version: 2,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume the Lemlist API',
|
|
defaults: {
|
|
name: 'Lemlist',
|
|
},
|
|
inputs: [NodeConnectionType.Main],
|
|
outputs: [NodeConnectionType.Main],
|
|
credentials: [
|
|
{
|
|
name: 'lemlistApi',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Activity',
|
|
value: 'activity',
|
|
},
|
|
{
|
|
name: 'Campaign',
|
|
value: 'campaign',
|
|
},
|
|
{
|
|
name: 'Enrichment',
|
|
value: 'enrich',
|
|
},
|
|
{
|
|
name: 'Lead',
|
|
value: 'lead',
|
|
},
|
|
{
|
|
name: 'Team',
|
|
value: 'team',
|
|
},
|
|
{
|
|
name: 'Unsubscribe',
|
|
value: 'unsubscribe',
|
|
},
|
|
],
|
|
default: 'activity',
|
|
},
|
|
...activityOperations,
|
|
...activityFields,
|
|
...campaignOperations,
|
|
...campaignFields,
|
|
...enrichmentOperations,
|
|
...enrichmentFields,
|
|
...leadOperations,
|
|
...leadFields,
|
|
...teamOperations,
|
|
...teamFields,
|
|
...unsubscribeOperations,
|
|
...unsubscribeFields,
|
|
],
|
|
};
|
|
export class LemlistV2 implements INodeType {
|
|
description: INodeTypeDescription;
|
|
|
|
constructor(baseDescription: INodeTypeBaseDescription) {
|
|
this.description = {
|
|
...baseDescription,
|
|
...versionDescription,
|
|
};
|
|
}
|
|
|
|
methods = {
|
|
loadOptions: {
|
|
async getCampaigns(this: ILoadOptionsFunctions) {
|
|
const campaigns = await lemlistApiRequest.call(this, 'GET', '/campaigns');
|
|
return campaigns.map(({ _id, name }: { _id: string; name: string }) => ({
|
|
name,
|
|
value: _id,
|
|
}));
|
|
},
|
|
},
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions) {
|
|
const items = this.getInputData();
|
|
|
|
const resource = this.getNodeParameter('resource', 0);
|
|
const operation = this.getNodeParameter('operation', 0);
|
|
|
|
let responseData;
|
|
const returnData: INodeExecutionData[] = [];
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
try {
|
|
if (resource === 'activity') {
|
|
// *********************************************************************
|
|
// activity
|
|
// *********************************************************************
|
|
|
|
if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// activity: getAll
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#activities
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
|
|
|
const qs = {} as IDataObject;
|
|
const filters = this.getNodeParameter('filters', i);
|
|
|
|
if (!isEmpty(filters)) {
|
|
Object.assign(qs, filters);
|
|
}
|
|
|
|
if (returnAll) {
|
|
responseData = await lemlistApiRequestAllItems.call(this, 'GET', '/activities', qs);
|
|
} else {
|
|
qs.limit = this.getNodeParameter('limit', i);
|
|
responseData = await lemlistApiRequest.call(this, 'GET', '/activities', {}, qs);
|
|
}
|
|
}
|
|
} else if (resource === 'campaign') {
|
|
// *********************************************************************
|
|
// campaign
|
|
// *********************************************************************
|
|
|
|
if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// campaign: getAll
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#32ab1bf9-9b2f-40ed-9bbd-0b8370fed3d9
|
|
const qs = {} as IDataObject;
|
|
const filters = this.getNodeParameter('filters', i);
|
|
|
|
if (!isEmpty(filters)) {
|
|
Object.assign(qs, filters);
|
|
}
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
|
|
|
if (returnAll) {
|
|
responseData = await lemlistApiRequestAllItems.call(this, 'GET', '/campaigns', {});
|
|
} else {
|
|
qs.limit = this.getNodeParameter('limit', i);
|
|
responseData = await lemlistApiRequest.call(this, 'GET', '/campaigns', {}, qs);
|
|
}
|
|
} else if (operation === 'getStats') {
|
|
// ----------------------------------
|
|
// campaign: getStats
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#0b5cc72c-c1c8-47d0-a086-32b1b63522e3
|
|
const qs = {} as IDataObject;
|
|
|
|
const campaignId = this.getNodeParameter('campaignId', i);
|
|
|
|
qs.startDate = this.getNodeParameter('startDate', i);
|
|
qs.endDate = this.getNodeParameter('endDate', i);
|
|
qs.timezone = this.getNodeParameter('timezone', i);
|
|
responseData = await lemlistApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/campaigns/${campaignId}/stats`,
|
|
{},
|
|
qs,
|
|
);
|
|
}
|
|
} else if (resource === 'lead') {
|
|
// *********************************************************************
|
|
// lead
|
|
// *********************************************************************
|
|
|
|
if (operation === 'create') {
|
|
// ----------------------------------
|
|
// lead: create
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#add-a-lead-in-a-campaign
|
|
|
|
const qs = {} as IDataObject;
|
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
|
|
|
if (additionalFields.deduplicate !== undefined) {
|
|
qs.deduplicate = additionalFields.deduplicate;
|
|
}
|
|
|
|
const body = {} as IDataObject;
|
|
|
|
const remainingAdditionalFields = omit(additionalFields, 'deduplicate');
|
|
|
|
if (!isEmpty(remainingAdditionalFields)) {
|
|
Object.assign(body, remainingAdditionalFields);
|
|
}
|
|
|
|
const campaignId = this.getNodeParameter('campaignId', i);
|
|
const email = this.getNodeParameter('email', i);
|
|
const endpoint = `/campaigns/${campaignId}/leads/${email}`;
|
|
|
|
responseData = await lemlistApiRequest.call(this, 'POST', endpoint, body, qs);
|
|
} else if (operation === 'delete') {
|
|
// ----------------------------------
|
|
// lead: delete
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#delete-a-lead-from-a-campaign
|
|
|
|
const campaignId = this.getNodeParameter('campaignId', i);
|
|
const email = this.getNodeParameter('email', i);
|
|
const endpoint = `/campaigns/${campaignId}/leads/${email}`;
|
|
responseData = await lemlistApiRequest.call(
|
|
this,
|
|
'DELETE',
|
|
endpoint,
|
|
{},
|
|
{ action: 'remove' },
|
|
);
|
|
} else if (operation === 'get') {
|
|
// ----------------------------------
|
|
// lead: get
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#get-a-specific-lead-by-email
|
|
|
|
const email = this.getNodeParameter('email', i);
|
|
responseData = await lemlistApiRequest.call(this, 'GET', `/leads/${email}`);
|
|
} else if (operation === 'unsubscribe') {
|
|
// ----------------------------------
|
|
// lead: unsubscribe
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#unsubscribe-a-lead-from-a-campaign
|
|
|
|
const campaignId = this.getNodeParameter('campaignId', i);
|
|
const email = this.getNodeParameter('email', i);
|
|
const endpoint = `/campaigns/${campaignId}/leads/${email}`;
|
|
responseData = await lemlistApiRequest.call(this, 'DELETE', endpoint);
|
|
}
|
|
} else if (resource === 'team') {
|
|
// *********************************************************************
|
|
// team
|
|
// *********************************************************************
|
|
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// team: get
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#team
|
|
|
|
responseData = await lemlistApiRequest.call(this, 'GET', '/team');
|
|
} else if (operation === 'getCredits') {
|
|
// ----------------------------------
|
|
// team: getCredits
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#c9af1cf3-8d3d-469e-a548-268b579d2cb3
|
|
|
|
responseData = await lemlistApiRequest.call(this, 'GET', '/team/credits');
|
|
}
|
|
} else if (resource === 'unsubscribe') {
|
|
// *********************************************************************
|
|
// unsubscribe
|
|
// *********************************************************************
|
|
|
|
if (operation === 'add') {
|
|
// ----------------------------------
|
|
// unsubscribe: Add
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#add-an-email-address-in-the-unsubscribes
|
|
|
|
const email = this.getNodeParameter('email', i);
|
|
responseData = await lemlistApiRequest.call(this, 'POST', `/unsubscribes/${email}`);
|
|
} else if (operation === 'delete') {
|
|
// ----------------------------------
|
|
// unsubscribe: delete
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#delete-an-email-address-from-the-unsubscribes
|
|
|
|
const email = this.getNodeParameter('email', i);
|
|
responseData = await lemlistApiRequest.call(this, 'DELETE', `/unsubscribes/${email}`);
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// unsubscribe: getAll
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#list-all-unsubscribes
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
|
|
|
if (returnAll) {
|
|
responseData = await lemlistApiRequestAllItems.call(this, 'GET', '/unsubscribes', {});
|
|
} else {
|
|
const qs = {
|
|
limit: this.getNodeParameter('limit', i),
|
|
};
|
|
responseData = await lemlistApiRequest.call(this, 'GET', '/unsubscribes', {}, qs);
|
|
}
|
|
}
|
|
} else if (resource === 'enrich') {
|
|
// *********************************************************************
|
|
// enrichment
|
|
// *********************************************************************
|
|
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// enrichment: get
|
|
// ----------------------------------
|
|
|
|
// https://developer.lemlist.com/#71b74cc3-8098-4389-b3c2-67a027df9407
|
|
|
|
const enrichId = this.getNodeParameter('enrichId', i);
|
|
|
|
responseData = await lemlistApiRequest.call(this, 'GET', `/enrich/${enrichId}`);
|
|
} else if (operation === 'enrichLead') {
|
|
// https://developer.lemlist.com/#fe2a52fc-fa73-46d0-8b7d-395d9653bfd5
|
|
const findEmail = this.getNodeParameter('findEmail', i);
|
|
const verifyEmail = this.getNodeParameter('verifyEmail', i);
|
|
const linkedinEnrichment = this.getNodeParameter('linkedinEnrichment', i);
|
|
const findPhone = this.getNodeParameter('findPhone', i);
|
|
const qs = {} as IDataObject;
|
|
|
|
qs.findEmail = findEmail;
|
|
qs.verifyEmail = verifyEmail;
|
|
qs.linkedinEnrichment = linkedinEnrichment;
|
|
qs.findPhone = findPhone;
|
|
|
|
const body = {} as IDataObject;
|
|
|
|
const leadId = this.getNodeParameter('leadId', i);
|
|
const endpoint = `/leads/${leadId}/enrich/`;
|
|
|
|
responseData = await lemlistApiRequest.call(this, 'POST', endpoint, body, qs);
|
|
} else if (operation === 'enrichPerson') {
|
|
// https://developer.lemlist.com/#4ba3d505-0bfa-4f36-8549-f3cb343786bf
|
|
const findEmail = this.getNodeParameter('findEmail', i);
|
|
const verifyEmail = this.getNodeParameter('verifyEmail', i);
|
|
const linkedinEnrichment = this.getNodeParameter('linkedinEnrichment', i);
|
|
const findPhone = this.getNodeParameter('findPhone', i);
|
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
|
const qs = {} as IDataObject;
|
|
if (!isEmpty(additionalFields)) {
|
|
Object.assign(qs, additionalFields);
|
|
}
|
|
qs.findEmail = findEmail;
|
|
qs.verifyEmail = verifyEmail;
|
|
qs.linkedinEnrichment = linkedinEnrichment;
|
|
qs.findPhone = findPhone;
|
|
|
|
const body = {} as IDataObject;
|
|
|
|
const endpoint = '/enrich/';
|
|
|
|
responseData = await lemlistApiRequest.call(this, 'POST', endpoint, body, qs);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
if (this.continueOnFail()) {
|
|
const executionErrorData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray({ error: error.message }),
|
|
{ itemData: { item: i } },
|
|
);
|
|
|
|
returnData.push(...executionErrorData);
|
|
continue;
|
|
}
|
|
throw error;
|
|
}
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray(responseData as IDataObject),
|
|
{ itemData: { item: i } },
|
|
);
|
|
|
|
returnData.push(...executionData);
|
|
}
|
|
|
|
return [returnData];
|
|
}
|
|
}
|