@warleon/n8n-nodes-payload-cms 1.4.2 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nodes/PayloadCms/PayloadCms.node.d.ts +3 -1
- package/dist/nodes/PayloadCms/PayloadCms.node.js +33 -3
- package/dist/nodes/PayloadCms/payload.types.d.ts +39 -6
- package/dist/nodes/PayloadCms/utils.d.ts +3 -0
- package/dist/nodes/PayloadCms/utils.js +37 -0
- package/dist/nodes/PayloadCms/utls.d.ts +2 -0
- package/dist/nodes/PayloadCms/utls.js +71 -0
- package/package.json +1 -1
|
@@ -2,12 +2,14 @@ import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeProp
|
|
|
2
2
|
import { AxiosRequestConfig } from "axios";
|
|
3
3
|
import { SanitizedCollectionConfig, SanitizedGlobalConfig } from "./payload.types";
|
|
4
4
|
export declare class PayloadCms implements INodeType {
|
|
5
|
-
private static
|
|
5
|
+
private static collectionsCache;
|
|
6
|
+
private static globalsCache;
|
|
6
7
|
description: INodeTypeDescription;
|
|
7
8
|
methods: {
|
|
8
9
|
loadOptions: {
|
|
9
10
|
getCollections(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
|
|
10
11
|
getGlobals(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
|
|
12
|
+
getPayloadFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
|
|
11
13
|
};
|
|
12
14
|
};
|
|
13
15
|
discoverCollections(this: ILoadOptionsFunctions): Promise<SanitizedCollectionConfig[]>;
|
|
@@ -41,9 +41,10 @@ const n8n_workflow_1 = require("n8n-workflow");
|
|
|
41
41
|
const axios_1 = __importStar(require("axios"));
|
|
42
42
|
const form_data_1 = __importDefault(require("form-data"));
|
|
43
43
|
const qs_esm_1 = require("qs-esm");
|
|
44
|
+
const utils_1 = require("./utils");
|
|
44
45
|
class PayloadCms {
|
|
45
|
-
|
|
46
|
-
static
|
|
46
|
+
static collectionsCache = new Map();
|
|
47
|
+
static globalsCache = new Map();
|
|
47
48
|
description = {
|
|
48
49
|
displayName: "Payload CMS",
|
|
49
50
|
name: "payloadCms",
|
|
@@ -313,6 +314,7 @@ class PayloadCms {
|
|
|
313
314
|
async getCollections() {
|
|
314
315
|
try {
|
|
315
316
|
const collections = await PayloadCms.prototype.discoverCollections.call(this);
|
|
317
|
+
PayloadCms.collectionsCache.set(this.getInstanceId(), collections);
|
|
316
318
|
return collections.map((collection) => ({
|
|
317
319
|
name: collection.labels?.plural || collection.slug,
|
|
318
320
|
value: collection.slug,
|
|
@@ -325,6 +327,7 @@ class PayloadCms {
|
|
|
325
327
|
async getGlobals() {
|
|
326
328
|
try {
|
|
327
329
|
const globals = await PayloadCms.prototype.discoverGlobals.call(this);
|
|
330
|
+
PayloadCms.globalsCache.set(this.getInstanceId(), globals);
|
|
328
331
|
return globals.map((global) => ({
|
|
329
332
|
name: global.label || global.slug,
|
|
330
333
|
value: global.slug,
|
|
@@ -334,6 +337,33 @@ class PayloadCms {
|
|
|
334
337
|
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Failed to load globals: ${error instanceof Error ? error.message : "Unknown error"}`);
|
|
335
338
|
}
|
|
336
339
|
},
|
|
340
|
+
async getPayloadFields() {
|
|
341
|
+
const resource = this.getCurrentNodeParameter("resource");
|
|
342
|
+
switch (resource) {
|
|
343
|
+
case "collection":
|
|
344
|
+
const collectionSlug = this.getCurrentNodeParameter("collection");
|
|
345
|
+
const collection = PayloadCms.collectionsCache
|
|
346
|
+
.get(this.getInstanceId())
|
|
347
|
+
?.find((c) => c.slug === collectionSlug);
|
|
348
|
+
if (!collection) {
|
|
349
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Failed to load fields for collection ${collectionSlug}: collection not found`);
|
|
350
|
+
}
|
|
351
|
+
return collection.fields.flatMap((f) => (0, utils_1.payloadField2N8nOption)(f));
|
|
352
|
+
break;
|
|
353
|
+
case "global":
|
|
354
|
+
const globalSlug = this.getCurrentNodeParameter("collection");
|
|
355
|
+
const global = PayloadCms.globalsCache
|
|
356
|
+
.get(this.getInstanceId())
|
|
357
|
+
?.find((g) => g.slug === globalSlug);
|
|
358
|
+
if (!global) {
|
|
359
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Failed to load fields for global ${globalSlug}: global not found`);
|
|
360
|
+
}
|
|
361
|
+
return global.fields.flatMap((f) => (0, utils_1.payloadField2N8nOption)(f));
|
|
362
|
+
break;
|
|
363
|
+
default:
|
|
364
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Failed to load fields for resource ${resource}: resource not supported`);
|
|
365
|
+
}
|
|
366
|
+
},
|
|
337
367
|
},
|
|
338
368
|
};
|
|
339
369
|
async discoverCollections() {
|
|
@@ -513,7 +543,7 @@ class PayloadCms {
|
|
|
513
543
|
else {
|
|
514
544
|
data = {};
|
|
515
545
|
}
|
|
516
|
-
const sanitizeData = { ...
|
|
546
|
+
const sanitizeData = { ...metadata, ...data };
|
|
517
547
|
formData.append("_payload", JSON.stringify(sanitizeData));
|
|
518
548
|
requestConfig = {
|
|
519
549
|
method: method,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { DeepRequired } from "ts-essentials";
|
|
2
|
-
export interface SanitizedGlobalConfig extends
|
|
3
|
-
fields:
|
|
2
|
+
export interface SanitizedGlobalConfig extends GlobalConfig {
|
|
3
|
+
fields: PayloadField[];
|
|
4
4
|
slug: GlobalSlug;
|
|
5
5
|
}
|
|
6
6
|
export interface SanitizedCollectionConfig extends DeepRequired<CollectionConfig> {
|
|
7
7
|
auth: Auth;
|
|
8
|
-
fields:
|
|
8
|
+
fields: PayloadField[];
|
|
9
9
|
slug: CollectionSlug;
|
|
10
10
|
}
|
|
11
11
|
export type CollectionConfig<TSlug extends object = any> = {
|
|
@@ -118,12 +118,11 @@ export interface IncomingAuthType {
|
|
|
118
118
|
*/
|
|
119
119
|
useSessions?: boolean;
|
|
120
120
|
}
|
|
121
|
-
export type Field = any;
|
|
122
121
|
export type CollectionSlug = string;
|
|
123
122
|
export type GlobalSlug = string;
|
|
124
|
-
export type GlobalConfig
|
|
123
|
+
export type GlobalConfig = {
|
|
125
124
|
custom?: Record<string, any>;
|
|
126
|
-
fields:
|
|
125
|
+
fields: PayloadField[];
|
|
127
126
|
label?: StaticLabel;
|
|
128
127
|
};
|
|
129
128
|
export declare const validOperators: readonly [
|
|
@@ -158,3 +157,37 @@ export type Where = {
|
|
|
158
157
|
or?: Where[];
|
|
159
158
|
[key: string]: Where[] | WhereField | undefined;
|
|
160
159
|
};
|
|
160
|
+
export type PayloadFieldType = "array" | "blocks" | "checkbox" | "code" | "collapsible" | "date" | "email" | "group" | "join" | "json" | "number" | "point" | "radio" | "relationship" | "richText" | "row" | "select" | "tabs" | "text" | "textarea" | "ui" | "upload";
|
|
161
|
+
export interface PayloadAdminConfig {
|
|
162
|
+
disableBulkEdit?: boolean;
|
|
163
|
+
hidden?: boolean;
|
|
164
|
+
disabled?: boolean;
|
|
165
|
+
components?: {
|
|
166
|
+
Field?: boolean;
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
export interface PayloadHooksConfig {
|
|
170
|
+
beforeValidate?: (null | unknown)[];
|
|
171
|
+
beforeChange?: (null | unknown)[];
|
|
172
|
+
afterRead?: (null | unknown)[];
|
|
173
|
+
}
|
|
174
|
+
export interface PayloadAccessConfig {
|
|
175
|
+
[key: string]: unknown;
|
|
176
|
+
}
|
|
177
|
+
export interface PayloadField {
|
|
178
|
+
name: string;
|
|
179
|
+
type: PayloadFieldType;
|
|
180
|
+
required?: boolean;
|
|
181
|
+
unique?: boolean;
|
|
182
|
+
hidden?: boolean;
|
|
183
|
+
index?: boolean;
|
|
184
|
+
defaultValue?: unknown;
|
|
185
|
+
access?: PayloadAccessConfig;
|
|
186
|
+
admin?: PayloadAdminConfig;
|
|
187
|
+
hooks?: PayloadHooksConfig;
|
|
188
|
+
fields?: PayloadField[];
|
|
189
|
+
options?: Array<string | {
|
|
190
|
+
label: string;
|
|
191
|
+
value: string | number;
|
|
192
|
+
}>;
|
|
193
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.payloadField2N8nOption = payloadField2N8nOption;
|
|
4
|
+
function payloadField2N8nOption(field, parentName = "") {
|
|
5
|
+
const prefix = parentName ? `${parentName}.` : "";
|
|
6
|
+
switch (field.type) {
|
|
7
|
+
case "select":
|
|
8
|
+
case "radio":
|
|
9
|
+
return (field.options?.map((opt) => ({
|
|
10
|
+
name: `${prefix}${field.name}: ${typeof opt === "string" ? opt : opt.label ?? String(opt.value)}`,
|
|
11
|
+
value: typeof opt === "string" ? opt : opt.value,
|
|
12
|
+
})) || []);
|
|
13
|
+
case "checkbox":
|
|
14
|
+
return [
|
|
15
|
+
{ name: `${prefix}${field.name}: True`, value: true },
|
|
16
|
+
{ name: `${prefix}${field.name}: False`, value: false },
|
|
17
|
+
];
|
|
18
|
+
case "point":
|
|
19
|
+
return [
|
|
20
|
+
{ name: `${prefix}${field.name}.lat`, value: "lat" },
|
|
21
|
+
{ name: `${prefix}${field.name}.lng`, value: "lng" },
|
|
22
|
+
];
|
|
23
|
+
case "array":
|
|
24
|
+
case "group":
|
|
25
|
+
case "row":
|
|
26
|
+
case "tabs":
|
|
27
|
+
case "blocks":
|
|
28
|
+
return (field.fields || []).flatMap((subField) => payloadField2N8nOption(subField, `${prefix}${field.name}`));
|
|
29
|
+
default:
|
|
30
|
+
return [
|
|
31
|
+
{
|
|
32
|
+
name: `${prefix}${field.name}`,
|
|
33
|
+
value: field.name,
|
|
34
|
+
},
|
|
35
|
+
];
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.convertPayloadSchemaToN8n = void 0;
|
|
4
|
+
function mapPayloadFieldToN8n(field) {
|
|
5
|
+
const base = {
|
|
6
|
+
displayName: field.name,
|
|
7
|
+
name: field.name,
|
|
8
|
+
required: field.required || false,
|
|
9
|
+
default: field.defaultValue ?? "",
|
|
10
|
+
};
|
|
11
|
+
switch (field.type) {
|
|
12
|
+
case "text":
|
|
13
|
+
case "email":
|
|
14
|
+
return { ...base, type: "string" };
|
|
15
|
+
case "textarea":
|
|
16
|
+
case "code":
|
|
17
|
+
case "json":
|
|
18
|
+
case "richText":
|
|
19
|
+
return { ...base, type: "string", typeOptions: { rows: 5 } };
|
|
20
|
+
case "number":
|
|
21
|
+
return { ...base, type: "number" };
|
|
22
|
+
case "checkbox":
|
|
23
|
+
return { ...base, type: "boolean" };
|
|
24
|
+
case "date":
|
|
25
|
+
return { ...base, type: "dateTime" };
|
|
26
|
+
case "select":
|
|
27
|
+
case "radio":
|
|
28
|
+
return {
|
|
29
|
+
...base,
|
|
30
|
+
type: "options",
|
|
31
|
+
options: field.options?.map((opt) => ({
|
|
32
|
+
name: opt.label ?? opt,
|
|
33
|
+
value: opt.value ?? opt,
|
|
34
|
+
})) || [],
|
|
35
|
+
};
|
|
36
|
+
case "relationship":
|
|
37
|
+
case "upload":
|
|
38
|
+
return { ...base, type: "string" };
|
|
39
|
+
case "point":
|
|
40
|
+
return {
|
|
41
|
+
...base,
|
|
42
|
+
type: "fixedCollection",
|
|
43
|
+
options: [
|
|
44
|
+
{
|
|
45
|
+
name: "point",
|
|
46
|
+
displayName: "Point",
|
|
47
|
+
values: [
|
|
48
|
+
{ displayName: "Latitude", name: "lat", type: "number" },
|
|
49
|
+
{ displayName: "Longitude", name: "lng", type: "number" },
|
|
50
|
+
],
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
};
|
|
54
|
+
case "array":
|
|
55
|
+
case "group":
|
|
56
|
+
case "row":
|
|
57
|
+
case "tabs":
|
|
58
|
+
case "blocks":
|
|
59
|
+
return {
|
|
60
|
+
...base,
|
|
61
|
+
type: "collection",
|
|
62
|
+
options: (field.fields || []).map(mapPayloadFieldToN8n),
|
|
63
|
+
};
|
|
64
|
+
default:
|
|
65
|
+
return { ...base, type: "string" };
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
function convertPayloadSchemaToN8n(schema) {
|
|
69
|
+
return schema.map(mapPayloadFieldToN8n);
|
|
70
|
+
}
|
|
71
|
+
exports.convertPayloadSchemaToN8n = convertPayloadSchemaToN8n;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warleon/n8n-nodes-payload-cms",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"description": "Dynamic n8n node for Payload CMS that auto-discovers collections and operations forked and extended from https://github.com/leadership-institute/n8n-payload-dynamic",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": "warleon",
|