primitive-admin 1.0.53 → 1.0.55
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/README.md +38 -10
- package/dist/bin/primitive.js +8 -0
- package/dist/bin/primitive.js.map +1 -1
- package/dist/src/commands/apps.js +54 -2
- package/dist/src/commands/apps.js.map +1 -1
- package/dist/src/commands/auth.js +16 -6
- package/dist/src/commands/auth.js.map +1 -1
- package/dist/src/commands/blob-buckets.js +84 -7
- package/dist/src/commands/blob-buckets.js.map +1 -1
- package/dist/src/commands/catalog.js +3 -3
- package/dist/src/commands/catalog.js.map +1 -1
- package/dist/src/commands/collections.js +12 -9
- package/dist/src/commands/collections.js.map +1 -1
- package/dist/src/commands/databases.js +220 -82
- package/dist/src/commands/databases.js.map +1 -1
- package/dist/src/commands/documents.js +77 -0
- package/dist/src/commands/documents.js.map +1 -1
- package/dist/src/commands/group-type-configs.js +1 -9
- package/dist/src/commands/group-type-configs.js.map +1 -1
- package/dist/src/commands/groups.js +12 -6
- package/dist/src/commands/groups.js.map +1 -1
- package/dist/src/commands/guides.d.ts +161 -0
- package/dist/src/commands/guides.js +502 -84
- package/dist/src/commands/guides.js.map +1 -1
- package/dist/src/commands/integrations.js +2 -2
- package/dist/src/commands/integrations.js.map +1 -1
- package/dist/src/commands/metadata.d.ts +2 -0
- package/dist/src/commands/metadata.js +344 -0
- package/dist/src/commands/metadata.js.map +1 -0
- package/dist/src/commands/prompts.js +2 -2
- package/dist/src/commands/prompts.js.map +1 -1
- package/dist/src/commands/rule-sets.d.ts +1 -0
- package/dist/src/commands/rule-sets.js +25 -3
- package/dist/src/commands/rule-sets.js.map +1 -1
- package/dist/src/commands/scripts.d.ts +2 -0
- package/dist/src/commands/scripts.js +667 -0
- package/dist/src/commands/scripts.js.map +1 -0
- package/dist/src/commands/settings.d.ts +15 -0
- package/dist/src/commands/settings.js +102 -0
- package/dist/src/commands/settings.js.map +1 -0
- package/dist/src/commands/sync-app-settings.d.ts +105 -0
- package/dist/src/commands/sync-app-settings.js +339 -0
- package/dist/src/commands/sync-app-settings.js.map +1 -0
- package/dist/src/commands/sync.d.ts +204 -9
- package/dist/src/commands/sync.js +1706 -371
- package/dist/src/commands/sync.js.map +1 -1
- package/dist/src/commands/vars.d.ts +8 -0
- package/dist/src/commands/vars.js +110 -0
- package/dist/src/commands/vars.js.map +1 -0
- package/dist/src/commands/webhooks.js +17 -3
- package/dist/src/commands/webhooks.js.map +1 -1
- package/dist/src/commands/workflows.d.ts +30 -0
- package/dist/src/commands/workflows.js +667 -59
- package/dist/src/commands/workflows.js.map +1 -1
- package/dist/src/lib/api-client.d.ts +122 -18
- package/dist/src/lib/api-client.js +131 -2
- package/dist/src/lib/api-client.js.map +1 -1
- package/dist/src/lib/app-settings-descriptor.d.ts +108 -0
- package/dist/src/lib/app-settings-descriptor.js +250 -0
- package/dist/src/lib/app-settings-descriptor.js.map +1 -0
- package/dist/src/lib/batch.d.ts +26 -0
- package/dist/src/lib/batch.js +32 -0
- package/dist/src/lib/batch.js.map +1 -0
- package/dist/src/lib/block-layout.d.ts +160 -0
- package/dist/src/lib/block-layout.js +451 -0
- package/dist/src/lib/block-layout.js.map +1 -0
- package/dist/src/lib/codegen-shared/generatedFiles.d.ts +76 -0
- package/dist/src/lib/codegen-shared/generatedFiles.js +144 -0
- package/dist/src/lib/codegen-shared/generatedFiles.js.map +1 -0
- package/dist/src/lib/codegen-shared/resolveCodegenSourceDir.d.ts +68 -0
- package/dist/src/lib/codegen-shared/resolveCodegenSourceDir.js +168 -0
- package/dist/src/lib/codegen-shared/resolveCodegenSourceDir.js.map +1 -0
- package/dist/src/lib/config-toml.d.ts +10 -0
- package/dist/src/lib/config-toml.js +42 -0
- package/dist/src/lib/config-toml.js.map +1 -0
- package/dist/src/lib/config.d.ts +16 -0
- package/dist/src/lib/config.js +41 -0
- package/dist/src/lib/config.js.map +1 -1
- package/dist/src/lib/constants.d.ts +9 -0
- package/dist/src/lib/constants.js +9 -0
- package/dist/src/lib/constants.js.map +1 -1
- package/dist/src/lib/csv.d.ts +1 -2
- package/dist/src/lib/csv.js +3 -8
- package/dist/src/lib/csv.js.map +1 -1
- package/dist/src/lib/db-codegen/dbGenerator.d.ts +21 -65
- package/dist/src/lib/db-codegen/dbGenerator.js +117 -321
- package/dist/src/lib/db-codegen/dbGenerator.js.map +1 -1
- package/dist/src/lib/db-codegen/dbNaming.d.ts +37 -0
- package/dist/src/lib/db-codegen/dbNaming.js +70 -0
- package/dist/src/lib/db-codegen/dbNaming.js.map +1 -1
- package/dist/src/lib/db-codegen/dbTemplates.d.ts +165 -5
- package/dist/src/lib/db-codegen/dbTemplates.js +292 -16
- package/dist/src/lib/db-codegen/dbTemplates.js.map +1 -1
- package/dist/src/lib/db-codegen/dbTsTypes.d.ts +7 -3
- package/dist/src/lib/db-codegen/dbTsTypes.js +23 -1
- package/dist/src/lib/db-codegen/dbTsTypes.js.map +1 -1
- package/dist/src/lib/db-codegen/dbTypeIR.d.ts +146 -0
- package/dist/src/lib/db-codegen/dbTypeIR.js +517 -0
- package/dist/src/lib/db-codegen/dbTypeIR.js.map +1 -0
- package/dist/src/lib/db-codegen/generated-operation-def-descriptor.d.ts +101 -0
- package/dist/src/lib/db-codegen/generated-operation-def-descriptor.js +200 -0
- package/dist/src/lib/db-codegen/generated-operation-def-descriptor.js.map +1 -0
- package/dist/src/lib/generated-allowlist.js +43 -0
- package/dist/src/lib/generated-allowlist.js.map +1 -1
- package/dist/src/lib/init-config.js +2 -2
- package/dist/src/lib/init-config.js.map +1 -1
- package/dist/src/lib/output.d.ts +25 -5
- package/dist/src/lib/output.js +32 -4
- package/dist/src/lib/output.js.map +1 -1
- package/dist/src/lib/query-operators.d.ts +43 -0
- package/dist/src/lib/query-operators.js +80 -0
- package/dist/src/lib/query-operators.js.map +1 -0
- package/dist/src/lib/swift-codegen/dbGenerator.d.ts +68 -0
- package/dist/src/lib/swift-codegen/dbGenerator.js +380 -0
- package/dist/src/lib/swift-codegen/dbGenerator.js.map +1 -0
- package/dist/src/lib/swift-codegen/dbSwiftTypes.d.ts +42 -0
- package/dist/src/lib/swift-codegen/dbSwiftTypes.js +100 -0
- package/dist/src/lib/swift-codegen/dbSwiftTypes.js.map +1 -0
- package/dist/src/lib/swift-codegen/generator.d.ts +84 -0
- package/dist/src/lib/swift-codegen/generator.js +178 -0
- package/dist/src/lib/swift-codegen/generator.js.map +1 -0
- package/dist/src/lib/swift-codegen/schemaToSwift.d.ts +72 -0
- package/dist/src/lib/swift-codegen/schemaToSwift.js +644 -0
- package/dist/src/lib/swift-codegen/schemaToSwift.js.map +1 -0
- package/dist/src/lib/swift-codegen/swiftNaming.d.ts +85 -0
- package/dist/src/lib/swift-codegen/swiftNaming.js +198 -0
- package/dist/src/lib/swift-codegen/swiftNaming.js.map +1 -0
- package/dist/src/lib/sync-resource-types.d.ts +225 -0
- package/dist/src/lib/sync-resource-types.js +394 -0
- package/dist/src/lib/sync-resource-types.js.map +1 -0
- package/dist/src/lib/toml-database-config.d.ts +10 -19
- package/dist/src/lib/toml-database-config.js +28 -59
- package/dist/src/lib/toml-database-config.js.map +1 -1
- package/dist/src/lib/toml-metadata-config.d.ts +147 -0
- package/dist/src/lib/toml-metadata-config.js +463 -0
- package/dist/src/lib/toml-metadata-config.js.map +1 -0
- package/dist/src/lib/toml-native-form.d.ts +46 -0
- package/dist/src/lib/toml-native-form.js +78 -0
- package/dist/src/lib/toml-native-form.js.map +1 -0
- package/dist/src/lib/toml-params-validator.d.ts +34 -0
- package/dist/src/lib/toml-params-validator.js +118 -3
- package/dist/src/lib/toml-params-validator.js.map +1 -1
- package/dist/src/lib/workflow-apply.d.ts +86 -0
- package/dist/src/lib/workflow-apply.js +127 -0
- package/dist/src/lib/workflow-apply.js.map +1 -0
- package/dist/src/lib/workflow-codegen/generated-schema-descriptor.d.ts +129 -0
- package/dist/src/lib/workflow-codegen/generated-schema-descriptor.js +269 -0
- package/dist/src/lib/workflow-codegen/generated-schema-descriptor.js.map +1 -0
- package/dist/src/lib/workflow-codegen/generator.d.ts +87 -0
- package/dist/src/lib/workflow-codegen/generator.js +290 -0
- package/dist/src/lib/workflow-codegen/generator.js.map +1 -0
- package/dist/src/lib/workflow-codegen/invokerIR.d.ts +85 -0
- package/dist/src/lib/workflow-codegen/invokerIR.js +71 -0
- package/dist/src/lib/workflow-codegen/invokerIR.js.map +1 -0
- package/dist/src/lib/workflow-codegen/naming.d.ts +33 -0
- package/dist/src/lib/workflow-codegen/naming.js +81 -0
- package/dist/src/lib/workflow-codegen/naming.js.map +1 -0
- package/dist/src/lib/workflow-codegen/schemaToTs.d.ts +64 -0
- package/dist/src/lib/workflow-codegen/schemaToTs.js +282 -0
- package/dist/src/lib/workflow-codegen/schemaToTs.js.map +1 -0
- package/dist/src/lib/workflow-fragments.js +3 -3
- package/dist/src/lib/workflow-fragments.js.map +1 -1
- package/dist/src/lib/workflow-payload.d.ts +68 -0
- package/dist/src/lib/workflow-payload.js +150 -0
- package/dist/src/lib/workflow-payload.js.map +1 -0
- package/dist/src/lib/workflow-toml-validator.d.ts +1 -1
- package/dist/src/lib/workflow-toml-validator.js +37 -1
- package/dist/src/lib/workflow-toml-validator.js.map +1 -1
- package/dist/src/types/index.d.ts +11 -0
- package/dist/src/validators.d.ts +4 -3
- package/dist/src/validators.js +6 -5
- package/dist/src/validators.js.map +1 -1
- package/package.json +7 -3
|
@@ -0,0 +1,451 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sync v2 "unified block" layout — issue #1183, Phase 3.
|
|
3
|
+
*
|
|
4
|
+
* The current (legacy) sync layout stores each managed block type in its own
|
|
5
|
+
* flat directory:
|
|
6
|
+
*
|
|
7
|
+
* config/
|
|
8
|
+
* prompts/<key>.toml
|
|
9
|
+
* integrations/<key>.toml
|
|
10
|
+
* workflows/<key>.toml
|
|
11
|
+
* transforms/<name>.rhai # scripts
|
|
12
|
+
*
|
|
13
|
+
* The v2 layout introduced by the unified block model groups every block type
|
|
14
|
+
* under one `blocks/` tree keyed by type and block key, with a single
|
|
15
|
+
* `block.toml` envelope per block (and a sibling `source.rhai` for scripts):
|
|
16
|
+
*
|
|
17
|
+
* config/
|
|
18
|
+
* blocks/
|
|
19
|
+
* prompts/<key>/block.toml
|
|
20
|
+
* integrations/<key>/block.toml
|
|
21
|
+
* workflows/<key>/block.toml
|
|
22
|
+
* scripts/<key>/block.toml
|
|
23
|
+
* scripts/<key>/source.rhai
|
|
24
|
+
*
|
|
25
|
+
* Per the proposal (docs/proposals/unified-block-model.md, "Phase 3: Sync v2"),
|
|
26
|
+
* the CLI must:
|
|
27
|
+
* - Read both legacy and v2 layouts.
|
|
28
|
+
* - Preserve the legacy layout as the default until v2 is proven.
|
|
29
|
+
* - Provide a migration command to convert legacy sync directories.
|
|
30
|
+
*
|
|
31
|
+
* This module is the pure, side-effect-light core of that work: the v2 path
|
|
32
|
+
* builders, the `block.toml` codec, layout detection, and the legacy -> v2
|
|
33
|
+
* migration. It stores the *verbatim* legacy TOML body under
|
|
34
|
+
* `[[versions]].spec`, so the transform is loss-free and a v2 block round-trips
|
|
35
|
+
* back to a byte-for-byte-equivalent legacy object (see `reconstructLegacyBlock`).
|
|
36
|
+
* That is what lets a later pass read a v2 directory through the same push path
|
|
37
|
+
* the legacy layout uses without re-deriving every type's field mapping.
|
|
38
|
+
*/
|
|
39
|
+
import { cpSync, existsSync, mkdirSync, readFileSync, readdirSync, statSync, writeFileSync, } from "fs";
|
|
40
|
+
import { createHash } from "crypto";
|
|
41
|
+
import { basename, join } from "path";
|
|
42
|
+
import { parseConfigToml, stringifyConfigToml } from "./config-toml.js";
|
|
43
|
+
export const BLOCK_TYPES = [
|
|
44
|
+
"prompt",
|
|
45
|
+
"integration",
|
|
46
|
+
"workflow",
|
|
47
|
+
"script",
|
|
48
|
+
];
|
|
49
|
+
/** The `schemaVersion` string written at the top of every v2 `block.toml`. */
|
|
50
|
+
export const BLOCK_SCHEMA_VERSION = "block/v1";
|
|
51
|
+
/** The filename of the script body written next to a v2 script `block.toml`. */
|
|
52
|
+
export const SCRIPT_SOURCE_FILENAME = "source.rhai";
|
|
53
|
+
/**
|
|
54
|
+
* The named top-level TOML table each legacy block file wraps its header in
|
|
55
|
+
* (`[prompt]`, `[integration]`, `[workflow]`). Scripts have no header table —
|
|
56
|
+
* their legacy form is a raw `.rhai` body — so they are handled separately.
|
|
57
|
+
*/
|
|
58
|
+
const LEGACY_HEADER_KEY = {
|
|
59
|
+
prompt: "prompt",
|
|
60
|
+
integration: "integration",
|
|
61
|
+
workflow: "workflow",
|
|
62
|
+
};
|
|
63
|
+
/** Legacy per-type directory names (flat layout). */
|
|
64
|
+
const LEGACY_DIR = {
|
|
65
|
+
prompt: "prompts",
|
|
66
|
+
integration: "integrations",
|
|
67
|
+
workflow: "workflows",
|
|
68
|
+
script: "transforms",
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* v2 per-type directory names under `blocks/`. Note scripts move from the
|
|
72
|
+
* legacy `transforms/` name to `scripts/` to match the block vocabulary.
|
|
73
|
+
*/
|
|
74
|
+
const V2_TYPE_DIR = {
|
|
75
|
+
prompt: "prompts",
|
|
76
|
+
integration: "integrations",
|
|
77
|
+
workflow: "workflows",
|
|
78
|
+
script: "scripts",
|
|
79
|
+
};
|
|
80
|
+
const V2_TYPE_DIR_TO_TYPE = {
|
|
81
|
+
prompts: "prompt",
|
|
82
|
+
integrations: "integration",
|
|
83
|
+
workflows: "workflow",
|
|
84
|
+
scripts: "script",
|
|
85
|
+
};
|
|
86
|
+
export function isBlockType(value) {
|
|
87
|
+
return (typeof value === "string" && BLOCK_TYPES.includes(value));
|
|
88
|
+
}
|
|
89
|
+
// ---------------------------------------------------------------------------
|
|
90
|
+
// Path builders
|
|
91
|
+
// ---------------------------------------------------------------------------
|
|
92
|
+
/** `<configDir>/blocks` — the root of the v2 tree. */
|
|
93
|
+
export function v2BlocksRoot(configDir) {
|
|
94
|
+
return join(configDir, "blocks");
|
|
95
|
+
}
|
|
96
|
+
/** `<configDir>/blocks/<typeDir>/<key>` — a single v2 block's directory. */
|
|
97
|
+
export function v2BlockDir(configDir, type, key) {
|
|
98
|
+
return join(configDir, "blocks", V2_TYPE_DIR[type], key);
|
|
99
|
+
}
|
|
100
|
+
/** `<configDir>/blocks/<typeDir>/<key>/block.toml`. */
|
|
101
|
+
export function v2BlockTomlPath(configDir, type, key) {
|
|
102
|
+
return join(v2BlockDir(configDir, type, key), "block.toml");
|
|
103
|
+
}
|
|
104
|
+
/** `<configDir>/blocks/scripts/<key>/source.rhai`. */
|
|
105
|
+
export function v2ScriptSourcePath(configDir, key) {
|
|
106
|
+
return join(v2BlockDir(configDir, "script", key), SCRIPT_SOURCE_FILENAME);
|
|
107
|
+
}
|
|
108
|
+
/** `<configDir>/<legacyDir>` for a block type (flat layout). */
|
|
109
|
+
export function legacyBlockDir(configDir, type) {
|
|
110
|
+
return join(configDir, LEGACY_DIR[type]);
|
|
111
|
+
}
|
|
112
|
+
function pruneUndefined(obj) {
|
|
113
|
+
for (const k of Object.keys(obj)) {
|
|
114
|
+
if (obj[k] === undefined)
|
|
115
|
+
delete obj[k];
|
|
116
|
+
}
|
|
117
|
+
return obj;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Serialize a v2 block into `block.toml` text. Key order is fixed
|
|
121
|
+
* (`schemaVersion`, `[block]`, `[[versions]]`) so a pull/migrate followed by a
|
|
122
|
+
* re-serialize is stable and produces no spurious diffs.
|
|
123
|
+
*/
|
|
124
|
+
export function serializeBlockToml(block) {
|
|
125
|
+
const data = {
|
|
126
|
+
schemaVersion: block.schemaVersion || BLOCK_SCHEMA_VERSION,
|
|
127
|
+
block: pruneUndefined({
|
|
128
|
+
type: block.block.type,
|
|
129
|
+
key: block.block.key,
|
|
130
|
+
displayName: block.block.displayName,
|
|
131
|
+
description: block.block.description,
|
|
132
|
+
status: block.block.status,
|
|
133
|
+
activeVersion: block.block.activeVersion,
|
|
134
|
+
}),
|
|
135
|
+
versions: block.versions.map((v) => pruneUndefined({
|
|
136
|
+
key: v.key,
|
|
137
|
+
status: v.status,
|
|
138
|
+
contentHash: v.contentHash,
|
|
139
|
+
spec: v.spec,
|
|
140
|
+
})),
|
|
141
|
+
};
|
|
142
|
+
return stringifyConfigToml(data);
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Parse `block.toml` text into a `BlockToml`. Throws with a clear message when
|
|
146
|
+
* the envelope is malformed (missing/invalid `[block].type`, no versions).
|
|
147
|
+
*/
|
|
148
|
+
export function parseBlockToml(text) {
|
|
149
|
+
const parsed = parseConfigToml(text);
|
|
150
|
+
const header = parsed?.block;
|
|
151
|
+
if (!header || typeof header !== "object") {
|
|
152
|
+
throw new Error("block.toml is missing the [block] table");
|
|
153
|
+
}
|
|
154
|
+
if (!isBlockType(header.type)) {
|
|
155
|
+
throw new Error(`block.toml has an invalid [block].type: ${JSON.stringify(header.type)}`);
|
|
156
|
+
}
|
|
157
|
+
if (!header.key || typeof header.key !== "string") {
|
|
158
|
+
throw new Error("block.toml is missing a [block].key");
|
|
159
|
+
}
|
|
160
|
+
const rawVersions = Array.isArray(parsed.versions) ? parsed.versions : [];
|
|
161
|
+
const versions = rawVersions.map((v, i) => {
|
|
162
|
+
if (!v || typeof v !== "object") {
|
|
163
|
+
throw new Error(`block.toml version #${i} is not a table`);
|
|
164
|
+
}
|
|
165
|
+
return {
|
|
166
|
+
key: typeof v.key === "string" ? v.key : String(i),
|
|
167
|
+
status: typeof v.status === "string" ? v.status : undefined,
|
|
168
|
+
contentHash: typeof v.contentHash === "string" ? v.contentHash : undefined,
|
|
169
|
+
spec: v.spec && typeof v.spec === "object"
|
|
170
|
+
? v.spec
|
|
171
|
+
: {},
|
|
172
|
+
};
|
|
173
|
+
});
|
|
174
|
+
if (versions.length === 0) {
|
|
175
|
+
throw new Error("block.toml has no [[versions]]");
|
|
176
|
+
}
|
|
177
|
+
return {
|
|
178
|
+
schemaVersion: typeof parsed.schemaVersion === "string"
|
|
179
|
+
? parsed.schemaVersion
|
|
180
|
+
: BLOCK_SCHEMA_VERSION,
|
|
181
|
+
block: {
|
|
182
|
+
type: header.type,
|
|
183
|
+
key: header.key,
|
|
184
|
+
displayName: typeof header.displayName === "string"
|
|
185
|
+
? header.displayName
|
|
186
|
+
: undefined,
|
|
187
|
+
description: typeof header.description === "string"
|
|
188
|
+
? header.description
|
|
189
|
+
: undefined,
|
|
190
|
+
status: typeof header.status === "string" ? header.status : undefined,
|
|
191
|
+
activeVersion: typeof header.activeVersion === "string"
|
|
192
|
+
? header.activeVersion
|
|
193
|
+
: undefined,
|
|
194
|
+
},
|
|
195
|
+
versions,
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
/** `sha256:<hex>` content identity over the canonical JSON of a spec object. */
|
|
199
|
+
export function specContentHash(spec) {
|
|
200
|
+
return "sha256:" + createHash("sha256").update(canonicalJson(spec)).digest("hex");
|
|
201
|
+
}
|
|
202
|
+
function canonicalJson(value) {
|
|
203
|
+
if (value === null || typeof value !== "object") {
|
|
204
|
+
return JSON.stringify(value);
|
|
205
|
+
}
|
|
206
|
+
if (Array.isArray(value)) {
|
|
207
|
+
return "[" + value.map(canonicalJson).join(",") + "]";
|
|
208
|
+
}
|
|
209
|
+
const obj = value;
|
|
210
|
+
return ("{" +
|
|
211
|
+
Object.keys(obj)
|
|
212
|
+
.sort()
|
|
213
|
+
.map((k) => JSON.stringify(k) + ":" + canonicalJson(obj[k]))
|
|
214
|
+
.join(",") +
|
|
215
|
+
"}");
|
|
216
|
+
}
|
|
217
|
+
// ---------------------------------------------------------------------------
|
|
218
|
+
// Legacy <-> v2 conversion (loss-free)
|
|
219
|
+
// ---------------------------------------------------------------------------
|
|
220
|
+
/**
|
|
221
|
+
* Wrap a parsed legacy block object into a v2 `BlockToml`. The full legacy
|
|
222
|
+
* object is stored verbatim as the single version's `spec`, so the transform
|
|
223
|
+
* loses nothing. The `[block]` header is a projection derived from the legacy
|
|
224
|
+
* header table for the unified vocabulary; the spec remains the source of truth
|
|
225
|
+
* for reconstructing the legacy file.
|
|
226
|
+
*/
|
|
227
|
+
export function legacyObjectToBlock(type, legacy, fallbackKey) {
|
|
228
|
+
const headerTable = legacy[LEGACY_HEADER_KEY[type]] ||
|
|
229
|
+
{};
|
|
230
|
+
const key = typeof headerTable.key === "string" && headerTable.key
|
|
231
|
+
? headerTable.key
|
|
232
|
+
: fallbackKey;
|
|
233
|
+
const status = typeof headerTable.status === "string" ? headerTable.status : undefined;
|
|
234
|
+
const displayName = typeof headerTable.displayName === "string"
|
|
235
|
+
? headerTable.displayName
|
|
236
|
+
: typeof headerTable.name === "string"
|
|
237
|
+
? headerTable.name
|
|
238
|
+
: undefined;
|
|
239
|
+
const description = typeof headerTable.description === "string"
|
|
240
|
+
? headerTable.description
|
|
241
|
+
: undefined;
|
|
242
|
+
const versionKey = "default";
|
|
243
|
+
return {
|
|
244
|
+
schemaVersion: BLOCK_SCHEMA_VERSION,
|
|
245
|
+
block: {
|
|
246
|
+
type,
|
|
247
|
+
key,
|
|
248
|
+
displayName,
|
|
249
|
+
description,
|
|
250
|
+
status,
|
|
251
|
+
activeVersion: versionKey,
|
|
252
|
+
},
|
|
253
|
+
versions: [
|
|
254
|
+
{
|
|
255
|
+
key: versionKey,
|
|
256
|
+
status: status || "draft",
|
|
257
|
+
contentHash: specContentHash(legacy),
|
|
258
|
+
spec: legacy,
|
|
259
|
+
},
|
|
260
|
+
],
|
|
261
|
+
};
|
|
262
|
+
}
|
|
263
|
+
/** Wrap a raw Rhai script body into a v2 script `BlockToml`. */
|
|
264
|
+
export function scriptSourceToBlock(key, source) {
|
|
265
|
+
const spec = { sourceFile: SCRIPT_SOURCE_FILENAME };
|
|
266
|
+
return {
|
|
267
|
+
schemaVersion: BLOCK_SCHEMA_VERSION,
|
|
268
|
+
block: {
|
|
269
|
+
type: "script",
|
|
270
|
+
key,
|
|
271
|
+
status: "active",
|
|
272
|
+
activeVersion: "default",
|
|
273
|
+
},
|
|
274
|
+
versions: [
|
|
275
|
+
{
|
|
276
|
+
key: "default",
|
|
277
|
+
status: "active",
|
|
278
|
+
contentHash: specContentHash(source),
|
|
279
|
+
spec,
|
|
280
|
+
},
|
|
281
|
+
],
|
|
282
|
+
};
|
|
283
|
+
}
|
|
284
|
+
/**
|
|
285
|
+
* Reverse `legacyObjectToBlock` / `scriptSourceToBlock`: rebuild the legacy
|
|
286
|
+
* on-disk content from a v2 block. This is the read half of dual-layout
|
|
287
|
+
* support — a v2 directory can be projected back to the exact legacy object a
|
|
288
|
+
* legacy consumer (e.g. the push path) expects. `sourceText` is required for
|
|
289
|
+
* scripts (the body lives in `source.rhai`, not the `block.toml`).
|
|
290
|
+
*/
|
|
291
|
+
export function reconstructLegacyBlock(block, sourceText) {
|
|
292
|
+
const version = block.versions.find((v) => v.key === block.block.activeVersion) ||
|
|
293
|
+
block.versions[0];
|
|
294
|
+
if (block.block.type === "script") {
|
|
295
|
+
return { rhai: sourceText ?? "" };
|
|
296
|
+
}
|
|
297
|
+
const spec = (version?.spec ?? {});
|
|
298
|
+
return { toml: stringifyConfigToml(spec) };
|
|
299
|
+
}
|
|
300
|
+
// ---------------------------------------------------------------------------
|
|
301
|
+
// Layout detection + enumeration
|
|
302
|
+
// ---------------------------------------------------------------------------
|
|
303
|
+
function dirHasBlockFiles(dir, ext) {
|
|
304
|
+
if (!existsSync(dir))
|
|
305
|
+
return false;
|
|
306
|
+
try {
|
|
307
|
+
return readdirSync(dir).some((name) => {
|
|
308
|
+
if (!name.endsWith(ext))
|
|
309
|
+
return false;
|
|
310
|
+
return statSync(join(dir, name)).isFile();
|
|
311
|
+
});
|
|
312
|
+
}
|
|
313
|
+
catch {
|
|
314
|
+
return false;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* Report which layouts a config directory currently holds. A directory can
|
|
319
|
+
* hold both during/after a migration (legacy preserved, v2 written).
|
|
320
|
+
*/
|
|
321
|
+
export function detectLayout(configDir) {
|
|
322
|
+
const legacy = BLOCK_TYPES.some((type) => {
|
|
323
|
+
const dir = legacyBlockDir(configDir, type);
|
|
324
|
+
const ext = type === "script" ? ".rhai" : ".toml";
|
|
325
|
+
return dirHasBlockFiles(dir, ext);
|
|
326
|
+
});
|
|
327
|
+
const v2 = listV2Blocks(configDir).length > 0;
|
|
328
|
+
return { legacy, v2 };
|
|
329
|
+
}
|
|
330
|
+
/** Enumerate every v2 block present under `<configDir>/blocks/`. */
|
|
331
|
+
export function listV2Blocks(configDir) {
|
|
332
|
+
const root = v2BlocksRoot(configDir);
|
|
333
|
+
if (!existsSync(root))
|
|
334
|
+
return [];
|
|
335
|
+
const refs = [];
|
|
336
|
+
for (const typeDir of readdirSync(root)) {
|
|
337
|
+
const type = V2_TYPE_DIR_TO_TYPE[typeDir];
|
|
338
|
+
if (!type)
|
|
339
|
+
continue;
|
|
340
|
+
const typePath = join(root, typeDir);
|
|
341
|
+
if (!statSync(typePath).isDirectory())
|
|
342
|
+
continue;
|
|
343
|
+
for (const key of readdirSync(typePath)) {
|
|
344
|
+
const blockDir = join(typePath, key);
|
|
345
|
+
const tomlPath = join(blockDir, "block.toml");
|
|
346
|
+
if (!existsSync(tomlPath) || !statSync(blockDir).isDirectory())
|
|
347
|
+
continue;
|
|
348
|
+
const sourcePath = join(blockDir, SCRIPT_SOURCE_FILENAME);
|
|
349
|
+
refs.push({
|
|
350
|
+
type,
|
|
351
|
+
key,
|
|
352
|
+
tomlPath,
|
|
353
|
+
sourcePath: existsSync(sourcePath) ? sourcePath : undefined,
|
|
354
|
+
});
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
return refs;
|
|
358
|
+
}
|
|
359
|
+
function listLegacyBlockFiles(configDir) {
|
|
360
|
+
const files = [];
|
|
361
|
+
for (const type of BLOCK_TYPES) {
|
|
362
|
+
const dir = legacyBlockDir(configDir, type);
|
|
363
|
+
if (!existsSync(dir))
|
|
364
|
+
continue;
|
|
365
|
+
const ext = type === "script" ? ".rhai" : ".toml";
|
|
366
|
+
for (const name of readdirSync(dir)) {
|
|
367
|
+
if (!name.endsWith(ext))
|
|
368
|
+
continue;
|
|
369
|
+
const path = join(dir, name);
|
|
370
|
+
if (!statSync(path).isFile())
|
|
371
|
+
continue;
|
|
372
|
+
files.push({ type, key: basename(name, ext), path });
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
return files;
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* Convert a legacy sync directory into the v2 `blocks/<type>/<key>/block.toml`
|
|
379
|
+
* layout. Non-destructive: the legacy files are left in place (the legacy
|
|
380
|
+
* layout stays the default until v2 is proven). Test-case directories
|
|
381
|
+
* (`<key>.tests/`) are copied verbatim into `blocks/<type>/<key>/tests/` so a
|
|
382
|
+
* tested block migrates without losing its cases.
|
|
383
|
+
*/
|
|
384
|
+
export function migrateLegacyToV2(configDir, options = {}) {
|
|
385
|
+
const dryRun = !!options.dryRun;
|
|
386
|
+
const blocks = [];
|
|
387
|
+
const skipped = [];
|
|
388
|
+
for (const file of listLegacyBlockFiles(configDir)) {
|
|
389
|
+
const tomlPath = v2BlockTomlPath(configDir, file.type, file.key);
|
|
390
|
+
if (existsSync(tomlPath) && !options.force) {
|
|
391
|
+
skipped.push({
|
|
392
|
+
type: file.type,
|
|
393
|
+
key: file.key,
|
|
394
|
+
reason: "v2 block.toml already exists (use --force to overwrite)",
|
|
395
|
+
});
|
|
396
|
+
continue;
|
|
397
|
+
}
|
|
398
|
+
let block;
|
|
399
|
+
let sourceText;
|
|
400
|
+
if (file.type === "script") {
|
|
401
|
+
sourceText = readFileSync(file.path, "utf-8");
|
|
402
|
+
block = scriptSourceToBlock(file.key, sourceText);
|
|
403
|
+
}
|
|
404
|
+
else {
|
|
405
|
+
let legacy;
|
|
406
|
+
try {
|
|
407
|
+
legacy = parseConfigToml(readFileSync(file.path, "utf-8"));
|
|
408
|
+
}
|
|
409
|
+
catch (err) {
|
|
410
|
+
skipped.push({
|
|
411
|
+
type: file.type,
|
|
412
|
+
key: file.key,
|
|
413
|
+
reason: `could not parse legacy TOML: ${err.message}`,
|
|
414
|
+
});
|
|
415
|
+
continue;
|
|
416
|
+
}
|
|
417
|
+
block = legacyObjectToBlock(file.type, legacy, file.key);
|
|
418
|
+
}
|
|
419
|
+
const blockDir = v2BlockDir(configDir, file.type, file.key);
|
|
420
|
+
const sourcePath = file.type === "script"
|
|
421
|
+
? v2ScriptSourcePath(configDir, file.key)
|
|
422
|
+
: undefined;
|
|
423
|
+
// Copy sibling test cases: legacy `<legacyDir>/<key>.tests/` ->
|
|
424
|
+
// `blocks/<type>/<key>/tests/`.
|
|
425
|
+
const legacyTestsDir = join(legacyBlockDir(configDir, file.type), `${file.key}.tests`);
|
|
426
|
+
let testsCopied = 0;
|
|
427
|
+
const v2TestsDir = join(blockDir, "tests");
|
|
428
|
+
if (existsSync(legacyTestsDir) && statSync(legacyTestsDir).isDirectory()) {
|
|
429
|
+
testsCopied = readdirSync(legacyTestsDir).filter((n) => n.endsWith(".toml")).length;
|
|
430
|
+
}
|
|
431
|
+
if (!dryRun) {
|
|
432
|
+
mkdirSync(blockDir, { recursive: true });
|
|
433
|
+
writeFileSync(tomlPath, serializeBlockToml(block));
|
|
434
|
+
if (sourcePath && sourceText !== undefined) {
|
|
435
|
+
writeFileSync(sourcePath, sourceText);
|
|
436
|
+
}
|
|
437
|
+
if (testsCopied > 0) {
|
|
438
|
+
cpSync(legacyTestsDir, v2TestsDir, { recursive: true });
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
blocks.push({
|
|
442
|
+
type: file.type,
|
|
443
|
+
key: file.key,
|
|
444
|
+
tomlPath,
|
|
445
|
+
sourcePath,
|
|
446
|
+
testsCopied,
|
|
447
|
+
});
|
|
448
|
+
}
|
|
449
|
+
return { blocks, skipped, dryRun };
|
|
450
|
+
}
|
|
451
|
+
//# sourceMappingURL=block-layout.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"block-layout.js","sourceRoot":"","sources":["../../../src/lib/block-layout.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared write / `--check` / stale-cleanup machinery for the CLI codegen
|
|
3
|
+
* commands (issue #1442, sponsor decision #6).
|
|
4
|
+
*
|
|
5
|
+
* Both `databases codegen` (#814) and `workflows codegen` (#1442) render a set
|
|
6
|
+
* of `*.generated.ts` files and then either write them to disk or, under
|
|
7
|
+
* `--check`, compare the would-be output byte-for-byte against what's on disk.
|
|
8
|
+
* The write/compare/cleanup half is identical between them, so it lives here
|
|
9
|
+
* rather than being cloned into each generator.
|
|
10
|
+
*
|
|
11
|
+
* The RENDERING (schema → TS) stays in each generator — only the on-disk
|
|
12
|
+
* lifecycle is shared: `mkdir`, write, orphan cleanup, and the `--check`
|
|
13
|
+
* missing/differs/stale comparison.
|
|
14
|
+
*/
|
|
15
|
+
export type GeneratedFileMismatchReason = "missing" | "differs" | "stale";
|
|
16
|
+
export interface GeneratedFileMismatch {
|
|
17
|
+
filePath: string;
|
|
18
|
+
reason: GeneratedFileMismatchReason;
|
|
19
|
+
}
|
|
20
|
+
export interface WriteOrCheckResult {
|
|
21
|
+
/** Files written (or that would be written under `--check`). */
|
|
22
|
+
writtenFiles: string[];
|
|
23
|
+
/** Stale `*.generated.ts` files deleted (empty under `--check`). */
|
|
24
|
+
deletedFiles: string[];
|
|
25
|
+
/** Only populated under `--check`: files whose on-disk content is out of date. */
|
|
26
|
+
mismatches: GeneratedFileMismatch[];
|
|
27
|
+
}
|
|
28
|
+
export interface WriteOrCheckOptions {
|
|
29
|
+
/** Directory the generated files live in. */
|
|
30
|
+
outputDir: string;
|
|
31
|
+
/** Absolute file path → rendered content. */
|
|
32
|
+
filesToWrite: Map<string, string>;
|
|
33
|
+
/**
|
|
34
|
+
* If true, do not write. Compare each would-be file to disk and return a
|
|
35
|
+
* non-empty `mismatches` list if anything would change.
|
|
36
|
+
*/
|
|
37
|
+
check?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* When true, `filesToWrite` is the COMPLETE set of generated files this
|
|
40
|
+
* output dir owns, so orphaned `*.generated.ts` files are cleaned up (write
|
|
41
|
+
* mode) or flagged `stale` (check mode). When false — a run filtered to a
|
|
42
|
+
* subset — sibling generated files are left intact and not flagged, because
|
|
43
|
+
* `filesToWrite` is only a partial view.
|
|
44
|
+
*/
|
|
45
|
+
fullOwnership: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* Suffix identifying generator-owned files (for orphan cleanup / stale
|
|
48
|
+
* detection). Defaults to `.generated.ts`. Both `databases codegen` and
|
|
49
|
+
* `workflows codegen` write one `<name>.generated.ts` file per entity into
|
|
50
|
+
* their OWN default output dir (`database-types/generated/` and
|
|
51
|
+
* `workflows/generated/` respectively), so suffix-based ownership never
|
|
52
|
+
* reaches the other generator's files.
|
|
53
|
+
*/
|
|
54
|
+
generatedSuffix?: string;
|
|
55
|
+
/**
|
|
56
|
+
* Optional banner prefix that further narrows ownership by file CONTENT.
|
|
57
|
+
* When set, a `<suffix>` file is only considered owned (for orphan cleanup /
|
|
58
|
+
* stale detection) if its contents also start with this prefix.
|
|
59
|
+
*
|
|
60
|
+
* The Swift path needs this: both `workflows codegen --lang swift` and the
|
|
61
|
+
* Swift model codegen (`swift-bao-codegen`) emit `.generated.swift` files and
|
|
62
|
+
* may share one output dir (a Sources dir in the consuming app). Suffix alone
|
|
63
|
+
* cannot tell them apart, so a suffix-only sweep would delete the other
|
|
64
|
+
* generator's files. Scoping by the emitted header banner keeps each
|
|
65
|
+
* generator's cleanup to its own files. The TS callers leave this unset —
|
|
66
|
+
* their default `generated/` dirs are single-generator, so suffix ownership
|
|
67
|
+
* is already unambiguous.
|
|
68
|
+
*/
|
|
69
|
+
ownershipBanner?: string;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Write (or `--check`) a set of rendered generated files, handling orphan
|
|
73
|
+
* cleanup / stale detection. Pure lifecycle: the caller renders content, this
|
|
74
|
+
* owns the disk side.
|
|
75
|
+
*/
|
|
76
|
+
export declare function writeOrCheckGeneratedFiles(options: WriteOrCheckOptions): Promise<WriteOrCheckResult>;
|