n8n/packages/nodes-base/nodes/Egoi/GenericFunctions.ts
Michael Kret 0ecbb4a19d
refactor: Format nodes-base package (A-F) (#3800)
* 🔨 prettier formated nodes - A

* 🔨 prettier formated nodes - B

*  prettier formated nodes - C

*  prettier formated nodes - D

*  prettier formated nodes - E-F

* 🎨 Adjust nodes-base formatting command (#3805)

* Format additional files in nodes A-F (#3811)

*  fixes

* 🎨 Add Mindee to ignored dirs

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
2022-08-01 22:47:55 +02:00

120 lines
2.8 KiB
TypeScript

import { OptionsWithUrl } from 'request';
import {
IExecuteFunctions,
IExecuteSingleFunctions,
IHookFunctions,
ILoadOptionsFunctions,
} from 'n8n-core';
import { IDataObject, NodeApiError } from 'n8n-workflow';
interface IContact {
tags: [];
base: IDataObject;
extra: IDataObject[];
}
const fieldCache: {
[key: string]: IDataObject[];
} = {};
export async function getFields(this: IExecuteFunctions, listId: string) {
if (fieldCache[listId]) {
return fieldCache[listId];
}
fieldCache[listId] = await egoiApiRequest.call(this, 'GET', `/lists/${listId}/fields`);
return fieldCache[listId];
}
export async function egoiApiRequest(
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
method: string,
endpoint: string,
// tslint:disable-next-line:no-any
body: any = {},
qs: IDataObject = {},
headers?: object,
// tslint:disable-next-line:no-any
): Promise<any> {
const credentials = await this.getCredentials('egoiApi');
const options: OptionsWithUrl = {
headers: {
accept: 'application/json',
Apikey: `${credentials.apiKey}`,
},
method,
qs,
body,
url: `https://api.egoiapp.com${endpoint}`,
json: true,
};
if (Object.keys(body).length === 0) {
delete options.body;
}
try {
return await this.helpers.request!(options);
} catch (error) {
throw new NodeApiError(this.getNode(), error);
}
}
export async function egoiApiRequestAllItems(
this: IExecuteFunctions | ILoadOptionsFunctions,
propertyName: string,
method: string,
endpoint: string,
// tslint:disable-next-line:no-any
body: any = {},
query: IDataObject = {},
// tslint:disable-next-line:no-any
): Promise<any> {
const returnData: IDataObject[] = [];
let responseData;
query.offset = 0;
query.count = 500;
do {
responseData = await egoiApiRequest.call(this, method, endpoint, body, query);
returnData.push.apply(returnData, responseData[propertyName]);
query.offset += query.count;
} while (responseData[propertyName] && responseData[propertyName].length !== 0);
return returnData;
}
export async function simplify(this: IExecuteFunctions, contacts: IContact[], listId: string) {
let fields = await getFields.call(this, listId);
fields = fields.filter((element: IDataObject) => element.type === 'extra');
const fieldsKeyValue: IDataObject = {};
for (const field of fields) {
fieldsKeyValue[field.field_id as string] = field.name;
}
const data: IDataObject[] = [];
for (const contact of contacts) {
const extras = contact.extra.reduce(
// tslint:disable-next-line:no-any
(acumulator: IDataObject, currentValue: IDataObject): any => {
const key = fieldsKeyValue[currentValue.field_id as string] as string;
return { [key]: currentValue.value, ...acumulator };
},
{},
);
data.push({
...contact.base,
...extras,
tags: contact.tags,
});
}
return data;
}