2019-06-23 12:21:44 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
2020-07-23 13:51:05 -07:00
|
|
|
ILoadOptionsFunctions,
|
2019-06-23 12:21:44 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2020-07-23 13:51:05 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
2019-08-27 23:20:53 -07:00
|
|
|
|
|
|
|
export interface ICustomInterface {
|
|
|
|
name: string;
|
2019-10-22 02:30:35 -07:00
|
|
|
key: string;
|
2019-08-27 23:20:53 -07:00
|
|
|
options?: Array<{
|
|
|
|
id: number;
|
|
|
|
label: string;
|
|
|
|
}>;
|
|
|
|
}
|
|
|
|
|
2019-10-22 02:30:35 -07:00
|
|
|
export interface ICustomProperties {
|
|
|
|
[key: string]: ICustomInterface;
|
|
|
|
}
|
|
|
|
|
2019-06-23 12:21:44 -07:00
|
|
|
/**
|
|
|
|
* Make an API request to Pipedrive
|
|
|
|
*
|
|
|
|
* @param {IHookFunctions} this
|
|
|
|
* @param {string} method
|
|
|
|
* @param {string} url
|
|
|
|
* @param {object} body
|
|
|
|
* @returns {Promise<any>}
|
|
|
|
*/
|
2020-07-23 13:51:05 -07:00
|
|
|
export async function pipedriveApiRequest(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: IDataObject, query?: IDataObject, formData?: IDataObject, downloadFile?: boolean): Promise<any> { // tslint:disable-line:no-any
|
2020-07-23 14:10:20 -07:00
|
|
|
const authenticationMethod = this.getNodeParameter('authentication', 0);
|
2019-06-23 12:21:44 -07:00
|
|
|
|
2019-09-03 14:06:03 -07:00
|
|
|
const options: OptionsWithUri = {
|
2020-07-23 13:51:05 -07:00
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
},
|
2019-06-23 12:21:44 -07:00
|
|
|
method,
|
|
|
|
qs: query,
|
|
|
|
uri: `https://api.pipedrive.com/v1${endpoint}`,
|
|
|
|
};
|
|
|
|
|
2019-09-03 14:06:03 -07:00
|
|
|
if (downloadFile === true) {
|
|
|
|
options.encoding = null;
|
|
|
|
} else {
|
|
|
|
options.json = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Object.keys(body).length !== 0) {
|
|
|
|
options.body = body;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (formData !== undefined && Object.keys(formData).length !== 0) {
|
|
|
|
options.formData = formData;
|
|
|
|
}
|
|
|
|
|
2020-06-09 06:48:40 -07:00
|
|
|
if (query === undefined) {
|
|
|
|
query = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
2019-06-23 12:21:44 -07:00
|
|
|
try {
|
2020-07-23 13:51:05 -07:00
|
|
|
if (authenticationMethod === 'basicAuth' || authenticationMethod === 'apiToken') {
|
2020-06-09 06:48:40 -07:00
|
|
|
|
|
|
|
const credentials = this.getCredentials('pipedriveApi');
|
|
|
|
if (credentials === undefined) {
|
|
|
|
throw new Error('No credentials got returned!');
|
|
|
|
}
|
|
|
|
|
|
|
|
query.api_token = credentials.apiToken;
|
|
|
|
|
2020-07-23 14:10:20 -07:00
|
|
|
//@ts-ignore
|
2020-06-09 06:48:40 -07:00
|
|
|
responseData = await this.helpers.request(options);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
responseData = await this.helpers.requestOAuth2!.call(this, 'pipedriveOAuth2Api', options);
|
|
|
|
}
|
2019-06-23 12:21:44 -07:00
|
|
|
|
2019-09-03 14:06:03 -07:00
|
|
|
if (downloadFile === true) {
|
|
|
|
return {
|
|
|
|
data: responseData,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-06-23 12:21:44 -07:00
|
|
|
if (responseData.success === false) {
|
|
|
|
throw new Error(`Pipedrive error response: ${responseData.error} (${responseData.error_info})`);
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
additionalData: responseData.additional_data,
|
|
|
|
data: responseData.data,
|
|
|
|
};
|
2020-06-09 06:48:40 -07:00
|
|
|
} catch(error) {
|
2019-06-23 12:21:44 -07:00
|
|
|
if (error.statusCode === 401) {
|
|
|
|
// Return a clear error
|
|
|
|
throw new Error('The Pipedrive credentials are not valid!');
|
|
|
|
}
|
|
|
|
|
2019-07-09 23:39:58 -07:00
|
|
|
if (error.response && error.response.body && error.response.body.error) {
|
2019-06-23 12:21:44 -07:00
|
|
|
// Try to return the error prettier
|
2020-07-23 13:51:05 -07:00
|
|
|
let errorMessage = `Pipedrive error response [${error.statusCode}]: ${error.response.body.error.message}`;
|
2019-07-09 23:39:58 -07:00
|
|
|
if (error.response.body.error_info) {
|
|
|
|
errorMessage += ` - ${error.response.body.error_info}`;
|
|
|
|
}
|
|
|
|
throw new Error(errorMessage);
|
2019-06-23 12:21:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// If that data does not exist for some reason return the actual error
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to paginated Pipedrive endpoint
|
|
|
|
* and return all results
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @param {(IHookFunctions | IExecuteFunctions)} this
|
|
|
|
* @param {string} method
|
|
|
|
* @param {string} endpoint
|
|
|
|
* @param {IDataObject} body
|
|
|
|
* @param {IDataObject} [query]
|
|
|
|
* @returns {Promise<any>}
|
|
|
|
*/
|
|
|
|
export async function pipedriveApiRequestAllItems(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: IDataObject, query?: IDataObject): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
if (query === undefined) {
|
|
|
|
query = {};
|
|
|
|
}
|
2020-07-23 13:51:05 -07:00
|
|
|
query.limit = 100;
|
2019-06-23 12:21:44 -07:00
|
|
|
query.start = 0;
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await pipedriveApiRequest.call(this, method, endpoint, body, query);
|
2020-07-23 13:51:05 -07:00
|
|
|
// the search path returns data diferently
|
|
|
|
if (responseData.data.items) {
|
|
|
|
returnData.push.apply(returnData, responseData.data.items);
|
|
|
|
} else {
|
|
|
|
returnData.push.apply(returnData, responseData.data);
|
|
|
|
}
|
2019-06-23 12:21:44 -07:00
|
|
|
|
|
|
|
query.start = responseData.additionalData.pagination.next_start;
|
|
|
|
} while (
|
|
|
|
responseData.additionalData !== undefined &&
|
|
|
|
responseData.additionalData.pagination !== undefined &&
|
|
|
|
responseData.additionalData.pagination.more_items_in_collection === true
|
|
|
|
);
|
|
|
|
|
|
|
|
return {
|
|
|
|
data: returnData
|
|
|
|
};
|
|
|
|
}
|
2019-08-27 23:20:53 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-10-22 02:30:35 -07:00
|
|
|
* Gets the custom properties from Pipedrive
|
2019-08-27 23:20:53 -07:00
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @param {(IHookFunctions | IExecuteFunctions)} this
|
|
|
|
* @param {string} resource
|
2019-10-22 02:30:35 -07:00
|
|
|
* @returns {Promise<ICustomProperties>}
|
2019-08-27 23:20:53 -07:00
|
|
|
*/
|
2019-10-22 02:30:35 -07:00
|
|
|
export async function pipedriveGetCustomProperties(this: IHookFunctions | IExecuteFunctions, resource: string): Promise<ICustomProperties> {
|
2019-08-27 23:20:53 -07:00
|
|
|
|
|
|
|
const endpoints: { [key: string]: string } = {
|
|
|
|
'activity': '/activityFields',
|
|
|
|
'deal': '/dealFields',
|
|
|
|
'organization': '/organizationFields',
|
|
|
|
'person': '/personFields',
|
|
|
|
'product': '/productFields',
|
|
|
|
};
|
|
|
|
|
|
|
|
if (endpoints[resource] === undefined) {
|
|
|
|
throw new Error(`The resource "${resource}" is not supported for resolving custom values!`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const requestMethod = 'GET';
|
|
|
|
|
|
|
|
const body = {};
|
|
|
|
const qs = {};
|
|
|
|
// Get the custom properties and their values
|
|
|
|
const responseData = await pipedriveApiRequest.call(this, requestMethod, endpoints[resource], body, qs);
|
|
|
|
|
2019-10-22 02:30:35 -07:00
|
|
|
const customProperties: ICustomProperties = {};
|
2019-08-27 23:20:53 -07:00
|
|
|
|
|
|
|
for (const customPropertyData of responseData.data) {
|
|
|
|
customProperties[customPropertyData.key] = customPropertyData;
|
|
|
|
}
|
|
|
|
|
2019-10-22 02:30:35 -07:00
|
|
|
return customProperties;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts names and values of custom properties from their actual values to the
|
|
|
|
* Pipedrive internal ones
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @param {ICustomProperties} customProperties
|
|
|
|
* @param {IDataObject} item
|
|
|
|
*/
|
|
|
|
export function pipedriveEncodeCustomProperties(customProperties: ICustomProperties, item: IDataObject): void {
|
2019-08-27 23:20:53 -07:00
|
|
|
let customPropertyData;
|
|
|
|
|
2019-10-22 02:30:35 -07:00
|
|
|
for (const key of Object.keys(item)) {
|
|
|
|
customPropertyData = Object.values(customProperties).find(customPropertyData => customPropertyData.name === key);
|
|
|
|
|
|
|
|
if (customPropertyData !== undefined) {
|
|
|
|
// Is a custom property
|
|
|
|
|
|
|
|
// Check if also the value has to be resolved or just the key
|
|
|
|
if (item[key] !== null && item[key] !== undefined && customPropertyData.options !== undefined && Array.isArray(customPropertyData.options)) {
|
|
|
|
// Has an option key so get the actual option-value
|
|
|
|
const propertyOption = customPropertyData.options.find(option => option.label.toString() === item[key]!.toString());
|
|
|
|
|
|
|
|
if (propertyOption !== undefined) {
|
|
|
|
item[customPropertyData.key as string] = propertyOption.id;
|
|
|
|
delete item[key];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Does already represent the actual value or is null
|
|
|
|
item[customPropertyData.key as string] = item[key];
|
|
|
|
delete item[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts names and values of custom properties to their actual values
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @param {ICustomProperties} customProperties
|
|
|
|
* @param {IDataObject} item
|
|
|
|
*/
|
|
|
|
export function pipedriveResolveCustomProperties(customProperties: ICustomProperties, item: IDataObject): void {
|
|
|
|
let customPropertyData;
|
|
|
|
|
|
|
|
// Itterate over all keys and replace the custom ones
|
|
|
|
for (const key of Object.keys(item)) {
|
|
|
|
if (customProperties[key] !== undefined) {
|
|
|
|
// Is a custom property
|
|
|
|
customPropertyData = customProperties[key];
|
|
|
|
|
|
|
|
// Check if also the value has to be resolved or just the key
|
|
|
|
if (item[key] !== null && item[key] !== undefined && customPropertyData.options !== undefined && Array.isArray(customPropertyData.options)) {
|
|
|
|
// Has an option key so get the actual option-value
|
|
|
|
const propertyOption = customPropertyData.options.find(option => option.id.toString() === item[key]!.toString());
|
|
|
|
|
|
|
|
if (propertyOption !== undefined) {
|
|
|
|
item[customPropertyData.name as string] = propertyOption.label;
|
2019-08-27 23:20:53 -07:00
|
|
|
delete item[key];
|
|
|
|
}
|
2019-10-22 02:30:35 -07:00
|
|
|
} else {
|
|
|
|
// Does already represent the actual value or is null
|
|
|
|
item[customPropertyData.name as string] = item[key];
|
|
|
|
delete item[key];
|
2019-08-27 23:20:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|