n8n/packages/nodes-base/nodes/Cockpit/CollectionFunctions.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

85 lines
2 KiB
TypeScript

import { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
import { IDataObject } from 'n8n-workflow';
import { ICollection } from './CollectionInterface';
import { cockpitApiRequest } from './GenericFunctions';
export async function createCollectionEntry(
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
resourceName: string,
data: IDataObject,
id?: string,
// tslint:disable-next-line:no-any
): Promise<any> {
const body: ICollection = {
data,
};
if (id) {
body.data = {
_id: id,
...body.data,
};
}
return cockpitApiRequest.call(this, 'post', `/collections/save/${resourceName}`, body);
}
export async function getAllCollectionEntries(
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
resourceName: string,
options: IDataObject,
// tslint:disable-next-line:no-any
): Promise<any> {
const body: ICollection = {};
if (options.fields) {
const fields = (options.fields as string).split(',').map((field) => field.trim());
const bodyFields = {
_id: false,
} as IDataObject;
for (const field of fields) {
bodyFields[field] = true;
}
body.fields = bodyFields;
}
if (options.filter) {
body.filter = JSON.parse(options.filter.toString());
}
if (options.limit) {
body.limit = options.limit as number;
}
if (options.skip) {
body.skip = options.skip as number;
}
if (options.sort) {
body.sort = JSON.parse(options.sort.toString());
}
if (options.populate) {
body.populate = options.populate as boolean;
}
body.simple = true;
if (options.rawData) {
body.simple = !options.rawData as boolean;
}
if (options.language) {
body.lang = options.language as string;
}
return cockpitApiRequest.call(this, 'post', `/collections/get/${resourceName}`, body);
}
export async function getAllCollectionNames(
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
): Promise<string[]> {
return cockpitApiRequest.call(this, 'GET', `/collections/listCollections`, {});
}