pull:初次提交
This commit is contained in:
87
n8n-n8n-1.109.2/packages/nodes-base/nodes/Cockpit/CollectionFunctions.ts
Executable file
87
n8n-n8n-1.109.2/packages/nodes-base/nodes/Cockpit/CollectionFunctions.ts
Executable file
@@ -0,0 +1,87 @@
|
||||
import type { IExecuteFunctions, ILoadOptionsFunctions, IDataObject } from 'n8n-workflow';
|
||||
import { jsonParse } from 'n8n-workflow';
|
||||
|
||||
import type { ICollection } from './CollectionInterface';
|
||||
import { cockpitApiRequest } from './GenericFunctions';
|
||||
|
||||
export async function createCollectionEntry(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions,
|
||||
resourceName: string,
|
||||
data: IDataObject,
|
||||
id?: string,
|
||||
): Promise<any> {
|
||||
const body: ICollection = {
|
||||
data,
|
||||
};
|
||||
|
||||
if (id) {
|
||||
body.data = {
|
||||
_id: id,
|
||||
...body.data,
|
||||
};
|
||||
}
|
||||
|
||||
return await cockpitApiRequest.call(this, 'POST', `/collections/save/${resourceName}`, body);
|
||||
}
|
||||
|
||||
export async function getAllCollectionEntries(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions,
|
||||
resourceName: string,
|
||||
options: IDataObject,
|
||||
): 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 = jsonParse(options.filter.toString(), {
|
||||
errorMessage: "'Filter' option is not valid JSON",
|
||||
});
|
||||
}
|
||||
|
||||
if (options.limit) {
|
||||
body.limit = options.limit as number;
|
||||
}
|
||||
|
||||
if (options.skip) {
|
||||
body.skip = options.skip as number;
|
||||
}
|
||||
|
||||
if (options.sort) {
|
||||
body.sort = jsonParse(options.sort.toString(), {
|
||||
errorMessage: "'Sort' option is not valid JSON",
|
||||
});
|
||||
}
|
||||
|
||||
if (options.populate) {
|
||||
body.populate = options.populate as boolean;
|
||||
}
|
||||
|
||||
body.simple = true;
|
||||
if (options.rawData) {
|
||||
body.simple = !options.rawData;
|
||||
}
|
||||
|
||||
if (options.language) {
|
||||
body.lang = options.language as string;
|
||||
}
|
||||
|
||||
return await cockpitApiRequest.call(this, 'POST', `/collections/get/${resourceName}`, body);
|
||||
}
|
||||
|
||||
export async function getAllCollectionNames(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions,
|
||||
): Promise<string[]> {
|
||||
return await cockpitApiRequest.call(this, 'GET', '/collections/listCollections', {});
|
||||
}
|
||||
Reference in New Issue
Block a user