n8n/packages/nodes-base/nodes/Zoho/GenericFunctions.ts

264 lines
6.5 KiB
TypeScript
Raw Normal View History

import {
OptionsWithUri,
} from 'request';
2020-02-12 07:04:43 -08:00
import {
IExecuteFunctions,
2021-04-29 02:56:19 -07:00
IHookFunctions,
2020-02-12 07:04:43 -08:00
} from 'n8n-core';
2021-04-29 02:56:19 -07:00
2020-02-12 07:04:43 -08:00
import {
2021-04-29 02:56:19 -07:00
IDataObject,
2021-05-09 07:30:16 -07:00
ILoadOptionsFunctions,
2021-04-29 02:56:19 -07:00
NodeApiError,
2020-02-12 07:04:43 -08:00
} from 'n8n-workflow';
2021-04-29 02:56:19 -07:00
import {
flow,
} from 'lodash';
2021-05-10 02:11:11 -07:00
import {
AllFields,
DateType,
IdType,
LocationType,
NameType,
ProductDetails,
2021-05-10 03:22:53 -07:00
ResourceItems,
2021-05-10 02:11:11 -07:00
ZohoOAuth2ApiCredentials,
} from './types';
2021-04-29 02:56:19 -07:00
export async function zohoApiRequest(
2021-05-09 07:30:16 -07:00
this: IExecuteFunctions | IHookFunctions | ILoadOptionsFunctions,
2021-04-29 02:56:19 -07:00
method: string,
endpoint: string,
body: IDataObject = {},
qs: IDataObject = {},
uri?: string,
) {
2021-05-10 02:11:11 -07:00
const { oauthTokenData } = this.getCredentials('zohoOAuth2Api') as ZohoOAuth2ApiCredentials;
2021-04-29 02:56:19 -07:00
2020-02-12 07:04:43 -08:00
const options: OptionsWithUri = {
body: {
data: [
body,
],
},
2021-04-29 02:56:19 -07:00
method,
2020-02-12 07:04:43 -08:00
qs,
2021-05-10 02:11:11 -07:00
uri: uri ?? `${oauthTokenData.api_domain}/crm/v2${endpoint}`,
2020-10-22 06:46:03 -07:00
json: true,
2020-02-12 07:04:43 -08:00
};
2021-04-29 02:56:19 -07:00
if (!Object.keys(body).length) {
delete options.body;
}
if (!Object.keys(qs).length) {
delete options.qs;
}
2020-02-12 07:04:43 -08:00
try {
2021-05-09 07:30:16 -07:00
return await this.helpers.requestOAuth2?.call(this, 'zohoOAuth2Api', options);
2020-02-12 07:04:43 -08:00
} catch (error) {
:sparkles: Improve node error handling (#1309) * Add path mapping and response error interfaces * Add error handling and throwing functionality * Refactor error handling into a single function * Re-implement error handling in Hacker News node * Fix linting details * Re-implement error handling in Spotify node * Re-implement error handling in G Suite Admin node * :construction: create basic setup NodeError * :construction: add httpCodes * :construction: add path priolist * :construction: handle statusCode in error, adjust interfaces * :construction: fixing type issues w/Ivan * :construction: add error exploration * 👔 fix linter issues * :wrench: improve object check * :construction: remove path passing from NodeApiError * :construction: add multi error + refactor findProperty method * 👔 allow any * :wrench: handle multi error message callback * :zap: change return type of callback * :zap: add customCallback to MultiError * :construction: refactor to use INode * :hammer: handle arrays, continue search after first null property found * 🚫 refactor method access * :construction: setup NodeErrorView * :zap: change timestamp to Date.now * :books: Add documentation for methods and constants * :construction: change message setting * 🚚 move NodeErrors to workflow * :sparkles: add new ErrorView for Nodes * :art: improve error notification * :art: refactor interfaces * :zap: add WorkflowOperationError, refactor error throwing * 👕 fix linter issues * :art: rename param * :bug: fix handling normal errors * :zap: add usage of NodeApiError * :art: fix throw new error instead of constructor * :art: remove unnecessary code/comments * :art: adjusted spacing + updated status messages * :art: fix tab indentation * ✨ Replace current errors with custom errors (#1576) * :zap: Introduce NodeApiError in catch blocks * :zap: Introduce NodeOperationError in nodes * :zap: Add missing errors and remove incompatible * :zap: Fix NodeOperationError in incompatible nodes * :wrench: Adjust error handling in missed nodes PayPal, FileMaker, Reddit, Taiga and Facebook Graph API nodes * :hammer: Adjust Strava Trigger node error handling * :hammer: Adjust AWS nodes error handling * :hammer: Remove duplicate instantiation of NodeApiError * :bug: fix strava trigger node error handling * Add XML parsing to NodeApiError constructor (#1633) * :bug: Remove type annotation from catch variable * :sparkles: Add XML parsing to NodeApiError * :zap: Simplify error handling in Rekognition node * :zap: Pass in XML flag in generic functions * :fire: Remove try/catch wrappers at call sites * :hammer: Refactor setting description from XML * :hammer: Refactor let to const in resource loaders * :zap: Find property in parsed XML * :zap: Change let to const * :fire: Remove unneeded try/catch block * :shirt: Fix linting issues * :bug: Fix errors from merge conflict resolution * :zap: Add custom errors to latest contributions * :shirt: Fix linting issues * :zap: Refactor MongoDB helpers for custom errors * :bug: Correct custom error type * :zap: Apply feedback to A nodes * :zap: Apply feedback to missed A node * :zap: Apply feedback to B-D nodes * :zap: Apply feedback to E-F nodes * :zap: Apply feedback to G nodes * :zap: Apply feedback to H-L nodes * :zap: Apply feedback to M nodes * :zap: Apply feedback to P nodes * :zap: Apply feedback to R nodes * :zap: Apply feedback to S nodes * :zap: Apply feedback to T nodes * :zap: Apply feedback to V-Z nodes * :zap: Add HTTP code to iterable node error * :hammer: Standardize e as error * :hammer: Standardize err as error * :zap: Fix error handling for non-standard nodes Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <1849459+BHesseldieck@users.noreply.github.com>
2021-04-16 09:33:36 -07:00
throw new NodeApiError(this.getNode(), error);
2020-02-12 07:04:43 -08:00
}
}
2021-04-29 02:56:19 -07:00
/**
* Make an authenticated API request to Zoho CRM API and return all items.
*/
export async function zohoApiRequestAllItems(
2021-05-09 07:30:16 -07:00
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
2021-04-29 02:56:19 -07:00
method: string,
endpoint: string,
2021-05-09 07:30:16 -07:00
body: IDataObject = {},
qs: IDataObject = {},
2021-04-29 02:56:19 -07:00
) {
2020-02-12 07:04:43 -08:00
const returnData: IDataObject[] = [];
let responseData;
let uri: string | undefined;
2021-04-29 02:56:19 -07:00
qs.per_page = 200;
qs.page = 0;
2020-02-12 07:04:43 -08:00
do {
2021-04-29 02:56:19 -07:00
responseData = await zohoApiRequest.call(this, method, endpoint, body, qs, uri);
2021-05-11 00:34:55 -07:00
if (!responseData) return [];
2020-02-15 16:23:22 -08:00
uri = responseData.info.more_records;
2021-04-29 02:56:19 -07:00
returnData.push.apply(returnData, responseData['data']);
qs.page++;
2020-02-12 07:04:43 -08:00
} while (
2020-02-15 16:23:22 -08:00
responseData.info.more_records !== undefined &&
responseData.info.more_records === true
2020-02-12 07:04:43 -08:00
);
return returnData;
}
2021-04-29 02:56:19 -07:00
/**
* Handle a Zoho CRM API listing by returning all items or up to a limit.
*/
export async function handleListing(
this: IExecuteFunctions,
method: string,
endpoint: string,
body: IDataObject = {},
qs: IDataObject = {},
) {
2021-05-09 05:43:57 -07:00
const returnAll = this.getNodeParameter('returnAll', 0) as boolean;
2021-04-29 02:56:19 -07:00
if (returnAll) {
return await zohoApiRequestAllItems.call(this, method, endpoint, body, qs);
}
2021-05-09 14:57:53 -07:00
const responseData = await zohoApiRequestAllItems.call(this, method, endpoint, body, qs);
2021-04-29 02:56:19 -07:00
const limit = this.getNodeParameter('limit', 0) as number;
2021-05-09 14:57:53 -07:00
2021-04-29 02:56:19 -07:00
return responseData.slice(0, limit);
}
// ----------------------------------------
2021-05-10 03:22:53 -07:00
// required field adjusters
2021-04-29 02:56:19 -07:00
// ----------------------------------------
2021-05-09 07:30:16 -07:00
/**
* Place a product ID at a nested position in a product details field.
*/
export const adjustProductDetails = (productDetails: ProductDetails) => {
return productDetails.map(p => {
return {
...omit('product', p),
product: { id: p.id },
};
});
};
2021-05-10 03:22:53 -07:00
// ----------------------------------------
// additional field adjusters
// ----------------------------------------
2021-04-29 02:56:19 -07:00
/**
* Place a location field's contents at the top level of the payload.
*/
2021-05-09 05:43:57 -07:00
const adjustLocationFields = (locationType: LocationType) => (allFields: AllFields) => {
2021-04-29 02:56:19 -07:00
const locationField = allFields[locationType];
2021-05-09 05:43:57 -07:00
if (!locationField) return allFields;
return {
...omit(locationType, allFields),
...locationField.address_fields,
};
2021-04-29 02:56:19 -07:00
};
const adjustAddressFields = adjustLocationFields('Address');
const adjustBillingAddressFields = adjustLocationFields('Billing_Address');
const adjustMailingAddressFields = adjustLocationFields('Mailing_Address');
const adjustShippingAddressFields = adjustLocationFields('Shipping_Address');
const adjustOtherAddressFields = adjustLocationFields('Other_Address');
2021-05-07 04:19:01 -07:00
/**
2021-05-09 06:19:25 -07:00
* Remove from a date field the timestamp set by the datepicker.
2021-05-07 04:19:01 -07:00
*/
2021-05-09 05:43:57 -07:00
const adjustDateField = (dateType: DateType) => (allFields: AllFields) => {
2021-05-07 04:19:01 -07:00
const dateField = allFields[dateType];
if (!dateField) return allFields;
allFields[dateType] = dateField.split('T')[0];
2021-05-07 01:58:12 -07:00
return allFields;
};
2021-05-07 04:19:01 -07:00
const adjustDateOfBirthField = adjustDateField('Date_of_Birth');
const adjustClosingDateField = adjustDateField('Closing_Date');
2021-05-07 08:28:42 -07:00
const adjustInvoiceDateField = adjustDateField('Invoice_Date');
const adjustDueDateField = adjustDateField('Due_Date');
2021-05-09 14:25:55 -07:00
const adjustPurchaseOrderDateField = adjustDateField('PO_Date');
2021-05-09 14:57:53 -07:00
const adjustValidTillField = adjustDateField('Valid_Till');
2021-05-07 08:28:42 -07:00
2021-05-09 05:43:57 -07:00
/**
2021-05-10 02:11:11 -07:00
* Place an ID field's value nested inside the payload.
2021-05-09 05:43:57 -07:00
*/
2021-05-10 02:11:11 -07:00
const adjustIdField = (idType: IdType, nameProperty: NameType) => (allFields: AllFields) => {
const idValue = allFields[idType];
if (!idValue) return allFields;
2021-05-07 08:28:42 -07:00
2021-05-09 05:43:57 -07:00
return {
2021-05-10 02:11:11 -07:00
...omit(idType, allFields),
[nameProperty]: { id: idValue },
2021-05-09 05:43:57 -07:00
};
2021-05-07 08:28:42 -07:00
};
2021-05-10 02:11:11 -07:00
const adjustAccountIdField = adjustIdField('accountId', 'Account_Name');
const adjustContactIdField = adjustIdField('contactId', 'Full_Name');
const adjustDealIdField = adjustIdField('dealId', 'Deal_Name');
2021-05-10 03:22:53 -07:00
// ----------------------------------------
// payload adjusters
// ----------------------------------------
export const adjustAccountPayload = flow(
2021-05-07 08:28:42 -07:00
adjustBillingAddressFields,
adjustShippingAddressFields,
);
2021-05-10 03:22:53 -07:00
export const adjustContactPayload = flow(
2021-05-07 08:28:42 -07:00
adjustMailingAddressFields,
adjustOtherAddressFields,
adjustDateOfBirthField,
);
2021-05-07 04:19:01 -07:00
2021-05-10 03:22:53 -07:00
export const adjustDealPayload = adjustClosingDateField;
2021-05-07 08:28:42 -07:00
2021-05-10 03:22:53 -07:00
export const adjustInvoicePayload = flow(
2021-05-07 08:28:42 -07:00
adjustBillingAddressFields,
adjustShippingAddressFields,
adjustInvoiceDateField,
adjustDueDateField,
2021-05-10 02:11:11 -07:00
adjustAccountIdField,
2021-05-07 08:28:42 -07:00
);
2021-05-10 03:22:53 -07:00
export const adjustLeadPayload = adjustAddressFields;
2021-05-07 08:28:42 -07:00
2021-05-10 03:22:53 -07:00
export const adjustPurchaseOrderPayload = flow(
2021-05-09 14:25:55 -07:00
adjustBillingAddressFields,
adjustShippingAddressFields,
adjustDueDateField,
adjustPurchaseOrderDateField,
);
2021-05-07 08:28:42 -07:00
2021-05-10 03:22:53 -07:00
export const adjustQuotePayload = flow(
2021-05-09 14:57:53 -07:00
adjustBillingAddressFields,
adjustShippingAddressFields,
adjustValidTillField,
);
2021-05-07 08:28:42 -07:00
2021-05-10 03:22:53 -07:00
export const adjustSalesOrderPayload = flow(
2021-05-10 02:11:11 -07:00
adjustBillingAddressFields,
adjustShippingAddressFields,
adjustDueDateField,
adjustAccountIdField,
adjustContactIdField,
adjustDealIdField,
);
2021-04-29 02:56:19 -07:00
2021-05-10 03:22:53 -07:00
export const adjustVendorPayload = adjustAddressFields;
2021-04-29 02:56:19 -07:00
// ----------------------------------------
// helpers
// ----------------------------------------
2021-05-10 03:22:53 -07:00
/**
* Create a copy of an object without a specific property.
*/
const omit = (propertyToOmit: string, { [propertyToOmit]: _, ...remainingObject }) => remainingObject;
2021-04-29 02:56:19 -07:00
2021-05-10 03:22:53 -07:00
/**
* Convert items in a Zoho CRM API response into n8n load options.
*/
export const toLoadOptions = (items: ResourceItems, nameProperty: NameType) =>
items.map((item) => ({ name: item[nameProperty], value: item.id }));