n8n/packages/nodes-base/nodes/Egoi/GenericFunctions.ts
Iván Ovejero b03e358a12
refactor: Integrate consistent-type-imports in nodes-base (no-changelog) (#5267)
* 👕 Enable `consistent-type-imports` for nodes-base

* 👕 Apply to nodes-base

*  Undo unrelated changes

* 🚚 Move to `.eslintrc.js` in nodes-base

*  Revert "Enable `consistent-type-imports` for nodes-base"

This reverts commit 529ad72b05.

* 👕 Fix severity
2023-01-27 12:22:44 +01:00

118 lines
2.7 KiB
TypeScript

import type { OptionsWithUrl } from 'request';
import type {
IExecuteFunctions,
IExecuteSingleFunctions,
IHookFunctions,
ILoadOptionsFunctions,
} from 'n8n-core';
import type { IDataObject } from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
interface IContact {
tags: [];
base: IDataObject;
extra: IDataObject[];
}
const fieldCache: {
[key: string]: IDataObject[];
} = {};
export async function egoiApiRequest(
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
method: string,
endpoint: string,
body: any = {},
qs: IDataObject = {},
_headers?: object,
): 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 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 egoiApiRequestAllItems(
this: IExecuteFunctions | ILoadOptionsFunctions,
propertyName: string,
method: string,
endpoint: string,
body: any = {},
query: IDataObject = {},
): 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(
(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;
}