n8n/packages/nodes-base/nodes/Cockpit/CollectionFunctions.ts

87 lines
2 KiB
TypeScript
Raw Normal View History

import type { IExecuteFunctions, ILoadOptionsFunctions, IDataObject } from 'n8n-workflow';
import { jsonParse } from 'n8n-workflow';
import type { ICollection } from './CollectionInterface';
2020-04-04 07:04:25 -07:00
import { cockpitApiRequest } from './GenericFunctions';
export async function createCollectionEntry(
this: IExecuteFunctions | ILoadOptionsFunctions,
resourceName: string,
data: IDataObject,
id?: string,
): Promise<any> {
2020-04-04 07:04:25 -07:00
const body: ICollection = {
2020-04-11 11:24:51 -07:00
data,
2020-04-04 07:04:25 -07:00
};
if (id) {
body.data = {
_id: id,
2020-10-22 06:46:03 -07:00
...body.data,
2020-04-04 07:04:25 -07:00
};
}
return cockpitApiRequest.call(this, 'post', `/collections/save/${resourceName}`, body);
}
export async function getAllCollectionEntries(
this: IExecuteFunctions | ILoadOptionsFunctions,
resourceName: string,
options: IDataObject,
): Promise<any> {
2020-04-04 07:04:25 -07:00
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 = jsonParse(options.filter.toString(), {
errorMessage: "'Filter' option is not valid JSON",
});
2020-04-04 07:04:25 -07:00
}
if (options.limit) {
body.limit = options.limit as number;
2020-04-04 07:04:25 -07:00
}
if (options.skip) {
body.skip = options.skip as number;
2020-04-04 07:04:25 -07:00
}
if (options.sort) {
body.sort = jsonParse(options.sort.toString(), {
errorMessage: "'Sort' option is not valid JSON",
});
2020-04-04 07:04:25 -07:00
}
if (options.populate) {
body.populate = options.populate as boolean;
2020-04-04 07:04:25 -07:00
}
body.simple = true;
if (options.rawData) {
body.simple = !options.rawData;
2020-04-04 07:04:25 -07:00
}
if (options.language) {
body.lang = options.language as string;
2020-04-04 07:04:25 -07:00
}
return cockpitApiRequest.call(this, 'post', `/collections/get/${resourceName}`, body);
2020-04-04 07:04:25 -07:00
}
export async function getAllCollectionNames(
this: IExecuteFunctions | ILoadOptionsFunctions,
): Promise<string[]> {
return cockpitApiRequest.call(this, 'GET', '/collections/listCollections', {});
}