n8n/packages/nodes-base/nodes/Microsoft/Dynamics/GenericFunctions.ts

500 lines
13 KiB
TypeScript
Raw Normal View History

import {
OptionsWithUri,
} from 'request';
import {
IExecuteFunctions,
IExecuteSingleFunctions,
ILoadOptionsFunctions,
} from 'n8n-core';
import {
IDataObject,
INodeProperties,
INodePropertyOptions,
NodeApiError,
} from 'n8n-workflow';
export async function microsoftApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
2021-10-28 17:08:32 -07:00
const credenitals = await this.getCredentials('microsoftDynamicsOAuth2Api') as { subdomain: string };
let options: OptionsWithUri = {
headers: {
'Content-Type': 'application/json',
'accept': 'application/json',
'Prefer': 'return=representation',
},
method,
body,
qs,
uri: uri || `https://${credenitals.subdomain}.crm.dynamics.com/api/data/v9.2${resource}`,
json: true,
};
try {
if (Object.keys(option).length !== 0) {
options = Object.assign({}, options, option);
}
//@ts-ignore
return await this.helpers.requestOAuth2.call(this, 'microsoftDynamicsOAuth2Api', options, { property: 'id_token' });
} catch (error) {
throw new NodeApiError(this.getNode(), error);
}
}
export async function microsoftApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
const returnData: IDataObject[] = [];
let responseData;
let uri: string | undefined;
query['$top'] = 100;
do {
responseData = await microsoftApiRequest.call(this, method, endpoint, body, query, uri);
uri = responseData['@odata.nextLink'];
returnData.push.apply(returnData, responseData[propertyName]);
} while (
responseData['@odata.nextLink'] !== undefined
);
return returnData;
}
export async function getPicklistOptions(this: ILoadOptionsFunctions, entityName: string, attributeName: string): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
const endpoint = `/EntityDefinitions(LogicalName='${entityName}')/Attributes(LogicalName='${attributeName}')/Microsoft.Dynamics.CRM.PicklistAttributeMetadata?$select=LogicalName&$expand=OptionSet($select=Options),GlobalOptionSet($select=Options)`;
const { OptionSet: { Options: options } } = await microsoftApiRequest.call(this, 'GET', endpoint);
for (const option of options) {
returnData.push({
name: option.Label.UserLocalizedLabel.Label,
value: option.Value,
});
}
return returnData;
}
export async function getEntityFields(this: ILoadOptionsFunctions, entityName: string): Promise<IField[]> {
const endpoint = `/EntityDefinitions(LogicalName='${entityName}')/Attributes`;
const { value } = await microsoftApiRequest.call(this, 'GET', endpoint);
return value;
}
export function adjustAddresses(addresses: [{ [key: string]: string }]) {
// tslint:disable-next-line: no-any
const results: { [key: string]: any } = {};
for (const [index, address] of addresses.entries()) {
for (const key of Object.keys(address)) {
if (address[key] !== '') {
results[`address${index + 1}_${key}`] = address[key];
}
}
}
return results;
}
export function getAccountFields(): INodeProperties[] {
return [
{
displayName: 'Account Category',
name: 'accountcategorycode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getAccountCategories',
},
default: '',
description: 'Category to indicate whether the customer account is standard or preferred',
},
{
displayName: 'Account Rating',
name: 'accountratingcode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getAccountRatingCodes',
},
default: '',
},
{
displayName: 'Address',
name: 'addresses',
type: 'fixedCollection',
default: {},
typeOptions: {
multipleValues: true,
},
placeholder: 'Add Address Field',
options: [
{
displayName: 'Address Fields',
name: 'address',
values: [
{
displayName: 'Address Type',
name: 'addresstypecode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getAddressTypes',
},
default: '',
},
{
displayName: 'Line1',
name: 'line1',
type: 'string',
default: '',
},
{
displayName: 'Line2',
name: 'line2',
type: 'string',
default: '',
},
{
displayName: 'Line3',
name: 'line3',
type: 'string',
default: '',
},
{
displayName: 'City',
name: 'city',
type: 'string',
default: '',
},
{
displayName: 'State or Province',
name: 'stateorprovince',
type: 'string',
default: '',
},
{
displayName: 'Country',
name: 'country',
type: 'string',
default: '',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
},
{
displayName: 'Postalcode',
name: 'postalcode',
type: 'string',
default: '',
},
{
displayName: 'Primary Contact Name',
name: 'primarycontactname',
type: 'string',
default: '',
},
{
displayName: 'Telephone1',
name: 'telephone1',
type: 'string',
default: '',
},
{
displayName: 'Telephone2',
name: 'telephone2',
type: 'string',
default: '',
},
{
displayName: 'Fax',
name: 'fax',
type: 'string',
default: '',
},
],
},
],
},
{
displayName: 'Business Type',
name: 'businesstypecode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getBusinessTypes',
},
default: '',
description: 'The legal designation or other business type of the account for contracts or reporting purposes',
},
{
displayName: 'Customer Size',
name: 'customersizecode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getCustomerSizeCodes',
},
default: '',
},
{
displayName: 'Customer Type',
name: 'customertypecode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getCustomerTypeCodes',
},
default: '',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
description: 'Additional information to describe the account, such as an excerpt from the companys website',
},
{
displayName: 'Email Address 1',
name: 'emailaddress1',
type: 'string',
default: '',
description: 'The primary email address for the account',
},
{
displayName: 'Email Address 2',
name: 'emailaddress2',
type: 'string',
default: '',
description: 'The secondary email address for the account',
},
{
displayName: 'Email Address 3',
name: 'emailaddress3',
type: 'string',
default: '',
description: 'Alternate email address for the account',
},
{
displayName: 'Fax',
name: 'fax',
type: 'string',
default: '',
},
{
displayName: 'FTP site URL',
name: 'ftpsiteurl',
type: 'string',
default: '',
description: 'URL for the accounts FTP site to enable users to access data and share documents',
},
{
displayName: 'Industry',
name: 'industrycode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getIndustryCodes',
},
default: '',
description: 'The accounts primary industry for use in marketing segmentation and demographic analysis',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
displayOptions: {
show: {
'/resource': [
'account',
],
'/operation': [
'update',
],
},
},
description: 'Company o business name',
},
{
displayName: 'Credit Limit',
name: 'creditlimit',
type: 'number',
default: '',
refactor: Apply `eslint-plugin-n8n-nodes-base` autofixable rules (#3174) * :zap: Initial setup * :shirt: Update `.eslintignore` * :shirt: Autofix node-param-default-missing (#3173) * :fire: Remove duplicate key * :shirt: Add exceptions * :package: Update package-lock.json * :shirt: Apply `node-class-description-inputs-wrong-trigger-node` (#3176) * :shirt: Apply `node-class-description-inputs-wrong-regular-node` (#3177) * :shirt: Apply `node-class-description-outputs-wrong` (#3178) * :shirt: Apply `node-execute-block-double-assertion-for-items` (#3179) * :shirt: Apply `node-param-default-wrong-for-collection` (#3180) * :shirt: Apply node-param-default-wrong-for-boolean (#3181) * Autofixed default missing * Autofixed booleans, worked well * :zap: Fix params * :rewind: Undo exempted autofixes * :package: Update package-lock.json * :shirt: Apply node-class-description-missing-subtitle (#3182) * :zap: Fix missing comma * :shirt: Apply `node-param-default-wrong-for-fixed-collection` (#3184) * :shirt: Add exception for `node-class-description-missing-subtitle` * :shirt: Apply `node-param-default-wrong-for-multi-options` (#3185) * :shirt: Apply `node-param-collection-type-unsorted-items` (#3186) * Missing coma * :shirt: Apply `node-param-default-wrong-for-simplify` (#3187) * :shirt: Apply `node-param-description-comma-separated-hyphen` (#3190) * :shirt: Apply `node-param-description-empty-string` (#3189) * :shirt: Apply `node-param-description-excess-inner-whitespace` (#3191) * Rule looks good * Add whitespace rule in eslint config * :zao: fix * :shirt: Apply `node-param-description-identical-to-display-name` (#3193) * :shirt: Apply `node-param-description-missing-for-ignore-ssl-issues` (#3195) * :rewind: Revert ":zao: fix" This reverts commit ef8a76f3dfedffd1bdccf3178af8a8d90cf5a55c. * :shirt: Apply `node-param-description-missing-for-simplify` (#3196) * :shirt: Apply `node-param-description-missing-final-period` (#3194) * Rule working as intended * Add rule to eslint * :shirt: Apply node-param-description-missing-for-return-all (#3197) * :zap: Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: agobrech <ael.gobrecht@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com>
2022-04-22 09:29:51 -07:00
description: 'Credit limit of the account. This is a useful reference when you address invoice and accounting issues with the customer.',
},
{
displayName: 'Number Of Employees',
name: 'numberofemployees',
type: 'number',
default: 0,
description: 'Number of employees that work at the account for use in marketing segmentation and demographic analysis',
},
{
displayName: 'Payment Terms',
name: 'paymenttermscode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getPaymentTermsCodes',
},
default: '',
description: 'The payment terms to indicate when the customer needs to pay the total amount',
},
{
displayName: 'Preferred Appointment Day',
name: 'preferredappointmentdaycode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getPreferredAppointmentDayCodes',
},
default: '',
description: '',
},
{
displayName: 'Preferred Appointment Time',
name: 'preferredappointmenttimecode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getPreferredAppointmentTimeCodes',
},
default: '',
description: '',
},
{
displayName: 'Preferred Contact Method',
name: 'preferredcontactmethodcode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getPreferredContactMethodCodes',
},
default: '',
description: '',
},
{
displayName: 'Primary Satori ID',
name: 'primarysatoriid',
type: 'string',
default: '',
},
{
displayName: 'Primary Twitter ID',
name: 'primarytwitterid',
type: 'string',
default: '',
},
{
displayName: 'Revenue',
name: 'revenue',
type: 'number',
default: '',
description: 'The annual revenue for the account, used as an indicator in financial performance analysis',
},
{
displayName: 'Shares Outstanding',
name: 'sharesoutstanding',
type: 'number',
default: '',
refactor: Apply `eslint-plugin-n8n-nodes-base` autofixable rules (#3174) * :zap: Initial setup * :shirt: Update `.eslintignore` * :shirt: Autofix node-param-default-missing (#3173) * :fire: Remove duplicate key * :shirt: Add exceptions * :package: Update package-lock.json * :shirt: Apply `node-class-description-inputs-wrong-trigger-node` (#3176) * :shirt: Apply `node-class-description-inputs-wrong-regular-node` (#3177) * :shirt: Apply `node-class-description-outputs-wrong` (#3178) * :shirt: Apply `node-execute-block-double-assertion-for-items` (#3179) * :shirt: Apply `node-param-default-wrong-for-collection` (#3180) * :shirt: Apply node-param-default-wrong-for-boolean (#3181) * Autofixed default missing * Autofixed booleans, worked well * :zap: Fix params * :rewind: Undo exempted autofixes * :package: Update package-lock.json * :shirt: Apply node-class-description-missing-subtitle (#3182) * :zap: Fix missing comma * :shirt: Apply `node-param-default-wrong-for-fixed-collection` (#3184) * :shirt: Add exception for `node-class-description-missing-subtitle` * :shirt: Apply `node-param-default-wrong-for-multi-options` (#3185) * :shirt: Apply `node-param-collection-type-unsorted-items` (#3186) * Missing coma * :shirt: Apply `node-param-default-wrong-for-simplify` (#3187) * :shirt: Apply `node-param-description-comma-separated-hyphen` (#3190) * :shirt: Apply `node-param-description-empty-string` (#3189) * :shirt: Apply `node-param-description-excess-inner-whitespace` (#3191) * Rule looks good * Add whitespace rule in eslint config * :zao: fix * :shirt: Apply `node-param-description-identical-to-display-name` (#3193) * :shirt: Apply `node-param-description-missing-for-ignore-ssl-issues` (#3195) * :rewind: Revert ":zao: fix" This reverts commit ef8a76f3dfedffd1bdccf3178af8a8d90cf5a55c. * :shirt: Apply `node-param-description-missing-for-simplify` (#3196) * :shirt: Apply `node-param-description-missing-final-period` (#3194) * Rule working as intended * Add rule to eslint * :shirt: Apply node-param-description-missing-for-return-all (#3197) * :zap: Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: agobrech <ael.gobrecht@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com>
2022-04-22 09:29:51 -07:00
description: 'The number of shares available to the public for the account. This number is used as an indicator in financial performance analysis.',
},
{
displayName: 'Shipping Method',
name: 'shippingmethodcode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getShippingMethodCodes',
},
default: '',
description: 'Shipping method for deliveries sent to the accounts address to designate the preferred carrier or other delivery option',
},
{
displayName: 'SIC',
name: 'sic',
type: 'string',
default: '',
description: 'The Standard Industrial Classification (SIC) code that indicates the accounts primary industry of business, for use in marketing segmentation and demographic analysis',
},
{
displayName: 'Stage ID',
name: 'stageid',
type: 'string',
default: '',
},
{
displayName: 'Stock Exchange',
name: 'stockexchange',
type: 'string',
default: '',
description: 'The stock exchange at which the account is listed to track their stock and financial performance of the company',
},
{
displayName: 'Telephone 1',
name: 'telephone1',
type: 'string',
default: '',
description: 'The main phone number for this account',
},
{
displayName: 'Telephone 2',
name: 'telephone2',
type: 'string',
default: '',
description: 'The second phone number for this account',
},
{
displayName: 'Telephone 3',
name: 'telephone3',
type: 'string',
default: '',
description: 'The third phone number for this account',
},
{
displayName: 'Territory',
name: 'territorycode',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getTerritoryCodes',
},
default: '',
description: 'Region or territory for the account for use in segmentation and analysis',
},
{
displayName: 'Ticker Symbol',
name: 'tickersymbol',
type: 'string',
default: '',
refactor: Apply `eslint-plugin-n8n-nodes-base` autofixable rules (#3174) * :zap: Initial setup * :shirt: Update `.eslintignore` * :shirt: Autofix node-param-default-missing (#3173) * :fire: Remove duplicate key * :shirt: Add exceptions * :package: Update package-lock.json * :shirt: Apply `node-class-description-inputs-wrong-trigger-node` (#3176) * :shirt: Apply `node-class-description-inputs-wrong-regular-node` (#3177) * :shirt: Apply `node-class-description-outputs-wrong` (#3178) * :shirt: Apply `node-execute-block-double-assertion-for-items` (#3179) * :shirt: Apply `node-param-default-wrong-for-collection` (#3180) * :shirt: Apply node-param-default-wrong-for-boolean (#3181) * Autofixed default missing * Autofixed booleans, worked well * :zap: Fix params * :rewind: Undo exempted autofixes * :package: Update package-lock.json * :shirt: Apply node-class-description-missing-subtitle (#3182) * :zap: Fix missing comma * :shirt: Apply `node-param-default-wrong-for-fixed-collection` (#3184) * :shirt: Add exception for `node-class-description-missing-subtitle` * :shirt: Apply `node-param-default-wrong-for-multi-options` (#3185) * :shirt: Apply `node-param-collection-type-unsorted-items` (#3186) * Missing coma * :shirt: Apply `node-param-default-wrong-for-simplify` (#3187) * :shirt: Apply `node-param-description-comma-separated-hyphen` (#3190) * :shirt: Apply `node-param-description-empty-string` (#3189) * :shirt: Apply `node-param-description-excess-inner-whitespace` (#3191) * Rule looks good * Add whitespace rule in eslint config * :zao: fix * :shirt: Apply `node-param-description-identical-to-display-name` (#3193) * :shirt: Apply `node-param-description-missing-for-ignore-ssl-issues` (#3195) * :rewind: Revert ":zao: fix" This reverts commit ef8a76f3dfedffd1bdccf3178af8a8d90cf5a55c. * :shirt: Apply `node-param-description-missing-for-simplify` (#3196) * :shirt: Apply `node-param-description-missing-final-period` (#3194) * Rule working as intended * Add rule to eslint * :shirt: Apply node-param-description-missing-for-return-all (#3197) * :zap: Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: agobrech <ael.gobrecht@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com>
2022-04-22 09:29:51 -07:00
description: 'Type the stock exchange symbol for the account to track financial performance of the company. You can click the code entered in this field to access the latest trading information from MSN Money.',
},
{
displayName: 'Website URL',
name: 'websiteurl',
type: 'string',
default: '',
description: 'The accounts website URL to get quick details about the company profile',
},
{
displayName: 'Yomi Name',
name: 'yominame',
type: 'string',
default: '',
description: 'The phonetic spelling of the company name, if specified in Japanese, to make sure the name is pronounced correctly in phone calls and other communications',
},
];
}
export const sort = (a: { name: string }, b: { name: string }) => {
if (a.name < b.name) { return -1; }
if (a.name > b.name) { return 1; }
return 0;
};
export interface IField {
IsRetrievable: boolean;
LogicalName: string;
IsSearchable: string;
IsValidODataAttribute: string;
IsValidForRead: string;
CanBeSecuredForRead: string;
AttributeType: string;
IsSortableEnabled: {
Value: boolean,
};
DisplayName: {
UserLocalizedLabel: {
Label: string
}
};
}