@logictan/dsh-config-manager 0.1.60
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/LICENSE +21 -0
- package/README.md +105 -0
- package/cordis.patch.yml +21 -0
- package/lib/adapters/agent-instructions.d.ts +13 -0
- package/lib/adapters/agent-instructions.js +46 -0
- package/lib/adapters/agent-presets.d.ts +13 -0
- package/lib/adapters/agent-presets.js +14 -0
- package/lib/adapters/credentials.d.ts +37 -0
- package/lib/adapters/credentials.js +122 -0
- package/lib/adapters/file-collection.d.ts +15 -0
- package/lib/adapters/file-collection.js +127 -0
- package/lib/adapters/index.d.ts +57 -0
- package/lib/adapters/index.js +55 -0
- package/lib/adapters/link-report.d.ts +16 -0
- package/lib/adapters/link-report.js +47 -0
- package/lib/adapters/mcp.d.ts +28 -0
- package/lib/adapters/mcp.js +178 -0
- package/lib/adapters/plugin-files.d.ts +18 -0
- package/lib/adapters/plugin-files.js +142 -0
- package/lib/adapters/plugins.d.ts +41 -0
- package/lib/adapters/plugins.js +603 -0
- package/lib/adapters/pnpm-workspace.d.ts +26 -0
- package/lib/adapters/pnpm-workspace.js +147 -0
- package/lib/adapters/prompts.d.ts +30 -0
- package/lib/adapters/prompts.js +231 -0
- package/lib/adapters/providers.d.ts +34 -0
- package/lib/adapters/providers.js +155 -0
- package/lib/adapters/self.d.ts +17 -0
- package/lib/adapters/self.js +71 -0
- package/lib/adapters/sessions.d.ts +14 -0
- package/lib/adapters/sessions.js +15 -0
- package/lib/adapters/settings.d.ts +28 -0
- package/lib/adapters/settings.js +165 -0
- package/lib/adapters/skills.d.ts +13 -0
- package/lib/adapters/skills.js +14 -0
- package/lib/adapters/test-helpers.d.ts +125 -0
- package/lib/adapters/test-helpers.js +236 -0
- package/lib/adapters/ui.d.ts +27 -0
- package/lib/adapters/ui.js +89 -0
- package/lib/adapters/workspaces.d.ts +13 -0
- package/lib/adapters/workspaces.js +106 -0
- package/lib/client.d.ts +1026 -0
- package/lib/client.js +10047 -0
- package/lib/core/analyzer.d.ts +99 -0
- package/lib/core/analyzer.js +934 -0
- package/lib/core/backup.d.ts +138 -0
- package/lib/core/backup.js +513 -0
- package/lib/core/boot-rescue.d.ts +146 -0
- package/lib/core/boot-rescue.js +618 -0
- package/lib/core/cache-cleaner.d.ts +31 -0
- package/lib/core/cache-cleaner.js +95 -0
- package/lib/core/config-lifecycle.d.ts +180 -0
- package/lib/core/config-lifecycle.js +481 -0
- package/lib/core/config-snapshot.d.ts +135 -0
- package/lib/core/config-snapshot.js +424 -0
- package/lib/core/config-state.d.ts +70 -0
- package/lib/core/config-state.js +177 -0
- package/lib/core/consult-source.d.ts +58 -0
- package/lib/core/consult-source.js +260 -0
- package/lib/core/crash-report.d.ts +84 -0
- package/lib/core/crash-report.js +317 -0
- package/lib/core/exporter.d.ts +68 -0
- package/lib/core/exporter.js +375 -0
- package/lib/core/ghost-sweep.d.ts +19 -0
- package/lib/core/ghost-sweep.js +52 -0
- package/lib/core/importer.d.ts +60 -0
- package/lib/core/importer.js +29 -0
- package/lib/core/index.d.ts +14 -0
- package/lib/core/index.js +14 -0
- package/lib/core/journal.d.ts +197 -0
- package/lib/core/journal.js +418 -0
- package/lib/core/local-plugin-host.d.ts +35 -0
- package/lib/core/local-plugin-host.js +120 -0
- package/lib/core/local-plugin-pack.d.ts +135 -0
- package/lib/core/local-plugin-pack.js +278 -0
- package/lib/core/messages.d.ts +310 -0
- package/lib/core/messages.js +621 -0
- package/lib/core/migration-consult.d.ts +117 -0
- package/lib/core/migration-consult.js +363 -0
- package/lib/core/migration-history.d.ts +153 -0
- package/lib/core/migration-history.js +411 -0
- package/lib/core/model-tools.d.ts +50 -0
- package/lib/core/model-tools.js +148 -0
- package/lib/core/msg-types.d.ts +8 -0
- package/lib/core/msg-types.js +6 -0
- package/lib/core/phase3-child-crash.d.ts +1 -0
- package/lib/core/phase3-child-crash.js +87 -0
- package/lib/core/phase3-host.d.ts +138 -0
- package/lib/core/phase3-host.js +359 -0
- package/lib/core/phase3-prod-child.d.ts +1 -0
- package/lib/core/phase3-prod-child.js +35 -0
- package/lib/core/phase4-crash-child.d.ts +1 -0
- package/lib/core/phase4-crash-child.js +103 -0
- package/lib/core/plugin-cli.d.ts +150 -0
- package/lib/core/plugin-cli.js +497 -0
- package/lib/core/reconcile.d.ts +120 -0
- package/lib/core/reconcile.js +389 -0
- package/lib/core/recovery-orchestrator.d.ts +94 -0
- package/lib/core/recovery-orchestrator.js +327 -0
- package/lib/core/restore.d.ts +162 -0
- package/lib/core/restore.js +703 -0
- package/lib/core/rollback.d.ts +12 -0
- package/lib/core/rollback.js +145 -0
- package/lib/core/run-registry.d.ts +85 -0
- package/lib/core/run-registry.js +157 -0
- package/lib/core/startup-barrier.d.ts +53 -0
- package/lib/core/startup-barrier.js +77 -0
- package/lib/core/types.d.ts +515 -0
- package/lib/core/types.js +27 -0
- package/lib/core/undo.d.ts +73 -0
- package/lib/core/undo.js +87 -0
- package/lib/core/validator.d.ts +18 -0
- package/lib/core/validator.js +77 -0
- package/lib/core/verify-recovery.d.ts +21 -0
- package/lib/core/verify-recovery.js +256 -0
- package/lib/core/watcher.d.ts +101 -0
- package/lib/core/watcher.js +219 -0
- package/lib/index.d.ts +238 -0
- package/lib/index.js +2764 -0
- package/lib/migrations/index.d.ts +29 -0
- package/lib/migrations/index.js +56 -0
- package/lib/migrations/v1-to-v2.d.ts +9 -0
- package/lib/migrations/v1-to-v2.js +10 -0
- package/lib/profiles/index.d.ts +4 -0
- package/lib/profiles/index.js +5 -0
- package/lib/profiles/profile-manager.d.ts +106 -0
- package/lib/profiles/profile-manager.js +543 -0
- package/lib/schema/config.d.ts +28 -0
- package/lib/schema/config.js +165 -0
- package/lib/schema/index.d.ts +24 -0
- package/lib/schema/index.js +26 -0
- package/lib/schema/manifest.d.ts +28 -0
- package/lib/schema/manifest.js +109 -0
- package/lib/schema/tombstones.d.ts +46 -0
- package/lib/schema/tombstones.js +64 -0
- package/lib/schema/types.d.ts +232 -0
- package/lib/schema/types.js +8 -0
- package/lib/schema/versions.d.ts +27 -0
- package/lib/schema/versions.js +50 -0
- package/lib/security/encryption.d.ts +85 -0
- package/lib/security/encryption.js +279 -0
- package/lib/security/index.d.ts +16 -0
- package/lib/security/index.js +17 -0
- package/lib/security/integrity.d.ts +30 -0
- package/lib/security/integrity.js +78 -0
- package/lib/security/redaction.d.ts +26 -0
- package/lib/security/redaction.js +95 -0
- package/lib/security/secret-scanner.d.ts +86 -0
- package/lib/security/secret-scanner.js +404 -0
- package/lib/security/vault.d.ts +59 -0
- package/lib/security/vault.js +151 -0
- package/lib/security/zip-security.d.ts +27 -0
- package/lib/security/zip-security.js +154 -0
- package/lib/sync/autosync-config.d.ts +39 -0
- package/lib/sync/autosync-config.js +151 -0
- package/lib/sync/autosync-scheduler.d.ts +139 -0
- package/lib/sync/autosync-scheduler.js +564 -0
- package/lib/sync/fs.d.ts +18 -0
- package/lib/sync/fs.js +49 -0
- package/lib/sync/git/git-transport.d.ts +100 -0
- package/lib/sync/git/git-transport.js +437 -0
- package/lib/sync/github-auth.d.ts +131 -0
- package/lib/sync/github-auth.js +264 -0
- package/lib/sync/layout.d.ts +43 -0
- package/lib/sync/layout.js +203 -0
- package/lib/sync/snapshot-json.d.ts +9 -0
- package/lib/sync/snapshot-json.js +107 -0
- package/lib/sync/sync-config.d.ts +81 -0
- package/lib/sync/sync-config.js +281 -0
- package/lib/sync/sync-engine.d.ts +269 -0
- package/lib/sync/sync-engine.js +591 -0
- package/lib/sync/sync-history.d.ts +42 -0
- package/lib/sync/sync-history.js +78 -0
- package/lib/sync/sync-selection.d.ts +29 -0
- package/lib/sync/sync-selection.js +127 -0
- package/lib/sync/sync-session.d.ts +40 -0
- package/lib/sync/sync-session.js +54 -0
- package/lib/sync/sync-state.d.ts +37 -0
- package/lib/sync/sync-state.js +108 -0
- package/lib/sync/transport.d.ts +75 -0
- package/lib/sync/transport.js +55 -0
- package/lib/sync/ui-prefs.d.ts +34 -0
- package/lib/sync/ui-prefs.js +109 -0
- package/lib/sync/webdav/webdav-transport.d.ts +77 -0
- package/lib/sync/webdav/webdav-transport.js +451 -0
- package/lib/ui/errors.d.ts +19 -0
- package/lib/ui/errors.js +81 -0
- package/lib/ui/export-flow.d.ts +82 -0
- package/lib/ui/export-flow.js +98 -0
- package/lib/ui/i18n.d.ts +289 -0
- package/lib/ui/i18n.js +581 -0
- package/lib/ui/migration-consult-view.d.ts +91 -0
- package/lib/ui/migration-consult-view.js +115 -0
- package/lib/ui/progress.d.ts +38 -0
- package/lib/ui/progress.js +87 -0
- package/lib/ui/report.d.ts +23 -0
- package/lib/ui/report.js +153 -0
- package/lib/ui/test-helpers.d.ts +69 -0
- package/lib/ui/test-helpers.js +154 -0
- package/lib/ui/types.d.ts +257 -0
- package/lib/ui/types.js +21 -0
- package/lib/utils/atomic-write.d.ts +88 -0
- package/lib/utils/atomic-write.js +399 -0
- package/lib/utils/env-lock.d.ts +393 -0
- package/lib/utils/env-lock.js +930 -0
- package/lib/utils/hashing.d.ts +17 -0
- package/lib/utils/hashing.js +41 -0
- package/lib/utils/json.d.ts +24 -0
- package/lib/utils/json.js +76 -0
- package/lib/utils/logger.d.ts +39 -0
- package/lib/utils/logger.js +82 -0
- package/lib/utils/paths.d.ts +42 -0
- package/lib/utils/paths.js +189 -0
- package/lib/utils/proxy.d.ts +69 -0
- package/lib/utils/proxy.js +455 -0
- package/lib/utils/recursive-walk.d.ts +24 -0
- package/lib/utils/recursive-walk.js +134 -0
- package/lib/utils/zip.d.ts +54 -0
- package/lib/utils/zip.js +285 -0
- package/package.json +188 -0
- package/src/adapters/agent-instructions.ts +48 -0
- package/src/adapters/agent-presets.ts +14 -0
- package/src/adapters/credentials.test.ts +90 -0
- package/src/adapters/credentials.ts +143 -0
- package/src/adapters/file-collection.ts +137 -0
- package/src/adapters/files.test.ts +353 -0
- package/src/adapters/index.ts +94 -0
- package/src/adapters/link-report.test.ts +65 -0
- package/src/adapters/link-report.ts +61 -0
- package/src/adapters/mcp.test.ts +96 -0
- package/src/adapters/mcp.ts +185 -0
- package/src/adapters/plugin-files.ts +146 -0
- package/src/adapters/plugins.test.ts +326 -0
- package/src/adapters/plugins.ts +615 -0
- package/src/adapters/pnpm-workspace.test.ts +87 -0
- package/src/adapters/pnpm-workspace.ts +150 -0
- package/src/adapters/prompts.test.ts +110 -0
- package/src/adapters/prompts.ts +230 -0
- package/src/adapters/providers.test.ts +126 -0
- package/src/adapters/providers.ts +173 -0
- package/src/adapters/roundtrip.test.ts +190 -0
- package/src/adapters/self.test.ts +92 -0
- package/src/adapters/self.ts +75 -0
- package/src/adapters/sessions.ts +15 -0
- package/src/adapters/settings.test.ts +100 -0
- package/src/adapters/settings.ts +187 -0
- package/src/adapters/skills.ts +14 -0
- package/src/adapters/test-helpers.ts +248 -0
- package/src/adapters/ui.test.ts +57 -0
- package/src/adapters/ui.ts +108 -0
- package/src/adapters/workspaces.test.ts +106 -0
- package/src/adapters/workspaces.ts +109 -0
- package/src/client/ConfigManagerSection.tsx +90 -0
- package/src/client/api.ts +66 -0
- package/src/client/client-types.ts +18 -0
- package/src/client/common/ErrorBanner.tsx +73 -0
- package/src/client/common/Icon.tsx +129 -0
- package/src/client/common/Modal.tsx +173 -0
- package/src/client/common/ToastViewport.tsx +73 -0
- package/src/client/common/toast-store.test.ts +192 -0
- package/src/client/common/toast-store.ts +181 -0
- package/src/client/common/toast-types.ts +7 -0
- package/src/client/common/ui.tsx +342 -0
- package/src/client/config-manager.module.css +2971 -0
- package/src/client/css-modules.d.ts +8 -0
- package/src/client/index.ts +65 -0
- package/src/client/locales.ts +56 -0
- package/src/client/lucide-icons.d.ts +38 -0
- package/src/client/run-store.test.ts +223 -0
- package/src/client/run-store.ts +372 -0
- package/src/client/sync/SyncConfirmView.tsx +379 -0
- package/src/client/sync/SyncHistoryView.test.ts +40 -0
- package/src/client/sync/SyncHistoryView.tsx +220 -0
- package/src/client/sync/SyncSettingsView.tsx +1535 -0
- package/src/client/sync/history-model.test.ts +194 -0
- package/src/client/sync/history-model.ts +195 -0
- package/src/client/sync/sync-api.test.ts +585 -0
- package/src/client/sync/sync-api.ts +543 -0
- package/src/client/sync/sync-locales.ts +416 -0
- package/src/client/sync/sync-push-preview.test.ts +52 -0
- package/src/client/sync/sync-view-v2.test.ts +213 -0
- package/src/client/sync/sync-view.test.ts +487 -0
- package/src/client/sync/sync-view.ts +759 -0
- package/src/core/analyzer.ts +1068 -0
- package/src/core/backup.ts +605 -0
- package/src/core/boot-rescue.test.ts +847 -0
- package/src/core/boot-rescue.ts +737 -0
- package/src/core/cache-cleaner.test.ts +169 -0
- package/src/core/cache-cleaner.ts +121 -0
- package/src/core/config-lifecycle.test.ts +727 -0
- package/src/core/config-lifecycle.ts +573 -0
- package/src/core/config-snapshot.test.ts +369 -0
- package/src/core/config-snapshot.ts +522 -0
- package/src/core/config-state.test.ts +381 -0
- package/src/core/config-state.ts +207 -0
- package/src/core/consult-source.test.ts +199 -0
- package/src/core/consult-source.ts +293 -0
- package/src/core/crash-report.test.ts +380 -0
- package/src/core/crash-report.ts +369 -0
- package/src/core/exporter.ts +417 -0
- package/src/core/ghost-sweep.test.ts +94 -0
- package/src/core/ghost-sweep.ts +67 -0
- package/src/core/importer.ts +83 -0
- package/src/core/index.ts +56 -0
- package/src/core/journal.test.ts +257 -0
- package/src/core/journal.ts +518 -0
- package/src/core/local-plugin-host.ts +152 -0
- package/src/core/local-plugin-pack.test.ts +359 -0
- package/src/core/local-plugin-pack.ts +363 -0
- package/src/core/messages.test.ts +54 -0
- package/src/core/messages.ts +664 -0
- package/src/core/migration-consult.test.ts +315 -0
- package/src/core/migration-consult.ts +494 -0
- package/src/core/migration-history.test.ts +319 -0
- package/src/core/migration-history.ts +484 -0
- package/src/core/model-tools.test.ts +190 -0
- package/src/core/model-tools.ts +208 -0
- package/src/core/msg-types.ts +10 -0
- package/src/core/phase3-child-crash.ts +95 -0
- package/src/core/phase3-host.ts +411 -0
- package/src/core/phase3-p1.test.ts +212 -0
- package/src/core/phase3-p2b-fingerprint.test.ts +189 -0
- package/src/core/phase3-prod-child.ts +36 -0
- package/src/core/phase3-production-integration.test.ts +286 -0
- package/src/core/phase4-crash-child.ts +101 -0
- package/src/core/phase4-crash-injection.test.ts +166 -0
- package/src/core/plugin-cli.fs.test.ts +184 -0
- package/src/core/plugin-cli.test.ts +137 -0
- package/src/core/plugin-cli.ts +563 -0
- package/src/core/reconcile.test.ts +392 -0
- package/src/core/reconcile.ts +498 -0
- package/src/core/recovery-orchestrator.test.ts +145 -0
- package/src/core/recovery-orchestrator.ts +366 -0
- package/src/core/restore-manage.test.ts +94 -0
- package/src/core/restore.ts +849 -0
- package/src/core/rollback.ts +151 -0
- package/src/core/run-progress.test.ts +237 -0
- package/src/core/run-registry.test.ts +232 -0
- package/src/core/run-registry.ts +209 -0
- package/src/core/smoke.test.ts +842 -0
- package/src/core/startup-barrier.ts +99 -0
- package/src/core/types.ts +542 -0
- package/src/core/undo.ts +116 -0
- package/src/core/validator.ts +84 -0
- package/src/core/verify-recovery.ts +265 -0
- package/src/core/watcher.test.ts +326 -0
- package/src/core/watcher.ts +263 -0
- package/src/index.facade.test.ts +265 -0
- package/src/index.sync.test.ts +217 -0
- package/src/index.ts +2975 -0
- package/src/migrations/index.ts +71 -0
- package/src/migrations/v1-to-v2.ts +17 -0
- package/src/profiles/index.ts +8 -0
- package/src/profiles/profile-manager.test.ts +282 -0
- package/src/profiles/profile-manager.ts +630 -0
- package/src/schema/config.ts +165 -0
- package/src/schema/index.ts +71 -0
- package/src/schema/manifest-schema.test.ts +519 -0
- package/src/schema/manifest.ts +124 -0
- package/src/schema/tombstones.test.ts +131 -0
- package/src/schema/tombstones.ts +89 -0
- package/src/schema/types.ts +245 -0
- package/src/schema/versions.ts +55 -0
- package/src/security/encryption.ts +335 -0
- package/src/security/index.ts +16 -0
- package/src/security/integrity.ts +102 -0
- package/src/security/redaction.ts +101 -0
- package/src/security/secret-scanner.ts +445 -0
- package/src/security/security.test.ts +1215 -0
- package/src/security/vault.test.ts +164 -0
- package/src/security/vault.ts +198 -0
- package/src/security/zip-security.ts +180 -0
- package/src/sync/autosync-config.test.ts +147 -0
- package/src/sync/autosync-config.ts +179 -0
- package/src/sync/autosync-scheduler.test.ts +490 -0
- package/src/sync/autosync-scheduler.ts +646 -0
- package/src/sync/fs.ts +48 -0
- package/src/sync/git/git-transport.test.ts +673 -0
- package/src/sync/git/git-transport.ts +491 -0
- package/src/sync/github-auth.test.ts +280 -0
- package/src/sync/github-auth.ts +356 -0
- package/src/sync/layout.test.ts +270 -0
- package/src/sync/layout.ts +222 -0
- package/src/sync/snapshot-json.test.ts +119 -0
- package/src/sync/snapshot-json.ts +128 -0
- package/src/sync/sync-config.test.ts +310 -0
- package/src/sync/sync-config.ts +299 -0
- package/src/sync/sync-engine.test.ts +1074 -0
- package/src/sync/sync-engine.ts +754 -0
- package/src/sync/sync-history.test.ts +116 -0
- package/src/sync/sync-history.ts +120 -0
- package/src/sync/sync-selection.test.ts +186 -0
- package/src/sync/sync-selection.ts +143 -0
- package/src/sync/sync-session.test.ts +143 -0
- package/src/sync/sync-session.ts +77 -0
- package/src/sync/sync-state.test.ts +164 -0
- package/src/sync/sync-state.ts +131 -0
- package/src/sync/transport.test.ts +111 -0
- package/src/sync/transport.ts +118 -0
- package/src/sync/ui-prefs.test.ts +152 -0
- package/src/sync/ui-prefs.ts +135 -0
- package/src/sync/webdav/webdav-transport.test.ts +871 -0
- package/src/sync/webdav/webdav-transport.ts +535 -0
- package/src/ui/errors.test.ts +47 -0
- package/src/ui/errors.ts +100 -0
- package/src/ui/export-flow.test.ts +87 -0
- package/src/ui/export-flow.ts +156 -0
- package/src/ui/i18n.ts +590 -0
- package/src/ui/migration-consult-view.test.ts +151 -0
- package/src/ui/migration-consult-view.ts +178 -0
- package/src/ui/progress.test.ts +47 -0
- package/src/ui/progress.ts +102 -0
- package/src/ui/report.test.ts +101 -0
- package/src/ui/report.ts +146 -0
- package/src/ui/test-helpers.ts +184 -0
- package/src/ui/types.ts +325 -0
- package/src/utils/atomic-write.test.ts +312 -0
- package/src/utils/atomic-write.ts +422 -0
- package/src/utils/env-lock.test.ts +999 -0
- package/src/utils/env-lock.ts +1086 -0
- package/src/utils/hashing.ts +53 -0
- package/src/utils/json.ts +77 -0
- package/src/utils/logger.ts +114 -0
- package/src/utils/paths.ts +176 -0
- package/src/utils/proxy.test.ts +465 -0
- package/src/utils/proxy.ts +493 -0
- package/src/utils/recursive-walk.test.ts +148 -0
- package/src/utils/recursive-walk.ts +145 -0
- package/src/utils/zip.ts +332 -0
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 迁移前咨询源读取(Phase 7)单测。
|
|
3
|
+
* 覆盖:export-zip 读取(manifest/checksums/sections/敏感暴露/可迁移性)、
|
|
4
|
+
* local-snapshot 与 profile 合成源构建。
|
|
5
|
+
*/
|
|
6
|
+
import { test } from 'node:test';
|
|
7
|
+
import assert from 'node:assert/strict';
|
|
8
|
+
import fs from 'node:fs/promises';
|
|
9
|
+
import os from 'node:os';
|
|
10
|
+
import path from 'node:path';
|
|
11
|
+
|
|
12
|
+
import { Exporter } from './exporter.ts';
|
|
13
|
+
import { createAdapters } from '../adapters/index.ts';
|
|
14
|
+
import { makeContext } from '../adapters/test-helpers.ts';
|
|
15
|
+
import { readExportZipSource, buildLocalSnapshotSource, buildProfileSource } from './consult-source.ts';
|
|
16
|
+
import { writeZip } from '../utils/zip.ts';
|
|
17
|
+
import { buildManifest } from '../schema/manifest.ts';
|
|
18
|
+
import { buildChecksums } from '../utils/hashing.ts';
|
|
19
|
+
import type { SectionId } from '../schema/types.ts';
|
|
20
|
+
import type { ConsultSourceRef } from './migration-consult.ts';
|
|
21
|
+
|
|
22
|
+
const NS = ['general', 'theme', 'llm-deepseek', 'llm-pi-ai'];
|
|
23
|
+
|
|
24
|
+
async function seedSource(ctx: ReturnType<typeof makeContext>): Promise<void> {
|
|
25
|
+
ctx.settings.ns.set('general', { value: { theme: 'dark', language: 'zh-CN' }, revision: 3, secrets: [] });
|
|
26
|
+
ctx.settings.ns.set('llm-deepseek', {
|
|
27
|
+
value: { apiKeyEnv: 'DEEPSEEK_API_KEY', baseURL: 'https://api.deepseek.com', model: 'deepseek-chat', apiKey: 'sk-super-secret-value-123' },
|
|
28
|
+
revision: 5,
|
|
29
|
+
secrets: [{ path: ['apiKey'], set: true }],
|
|
30
|
+
});
|
|
31
|
+
ctx.credentials.values.set('DEEPSEEK_API_KEY', 'sk-super-secret-value-123');
|
|
32
|
+
await ctx.fs.writeFile('skills/coding.md', Buffer.from('# Coding skill\nUse deepseek.\n', 'utf8'));
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
async function buildZip(): Promise<{ zipPath: string; tmp: string }> {
|
|
36
|
+
const tmp = await fs.mkdtemp(path.join(os.tmpdir(), 'dsh-cm-consult-'));
|
|
37
|
+
const src = makeContext('win32', 'C:\\Users\\alice');
|
|
38
|
+
await seedSource(src);
|
|
39
|
+
const adapters = createAdapters({ namespaces: NS });
|
|
40
|
+
const zipPath = path.join(tmp, 'dsh-config-consult.zip');
|
|
41
|
+
await new Exporter({
|
|
42
|
+
ctx: src, adapters, exporterVersion: '0.1.0',
|
|
43
|
+
now: () => new Date('2026-08-14T12:00:00.000Z'),
|
|
44
|
+
}).export({ includeSecrets: false, outPath: zipPath });
|
|
45
|
+
return { zipPath, tmp };
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
test('consult-source: 读取合法导出 ZIP → 归一化数据完整', async () => {
|
|
49
|
+
const { zipPath, tmp } = await buildZip();
|
|
50
|
+
try {
|
|
51
|
+
const ref: ConsultSourceRef = { type: 'export-zip', id: zipPath };
|
|
52
|
+
const data = await readExportZipSource(ref, zipPath, {
|
|
53
|
+
computeMigratability: async () => ({ ok: true, itemCount: 3, fatalConflicts: 0, warnings: 0, sections: ['settings', 'providers'], errors: [] }),
|
|
54
|
+
});
|
|
55
|
+
assert.ok(data.manifest !== null);
|
|
56
|
+
assert.equal(data.manifest.schemaVersion, 1);
|
|
57
|
+
assert.equal(data.manifestIssues.length, 0);
|
|
58
|
+
assert.equal(data.checksumIssues.length, 0);
|
|
59
|
+
assert.equal(data.zipSlipIssues.length, 0);
|
|
60
|
+
assert.ok(data.sections.has('settings'));
|
|
61
|
+
assert.ok(data.sections.has('providers'));
|
|
62
|
+
assert.equal(data.migratability?.ok, true);
|
|
63
|
+
assert.equal(data.migratability?.itemCount, 3);
|
|
64
|
+
} finally {
|
|
65
|
+
await fs.rm(tmp, { recursive: true, force: true });
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
test('consult-source: 敏感暴露面(含明文 secret 的源被检测)', async () => {
|
|
70
|
+
const tmp = await fs.mkdtemp(path.join(os.tmpdir(), 'dsh-cm-consult-sec-'));
|
|
71
|
+
try {
|
|
72
|
+
// 构造含明文 apiKey 的 ZIP(模拟未脱敏源)
|
|
73
|
+
const sectionFlags = {} as Record<string, boolean>;
|
|
74
|
+
for (const sid of ['settings', 'ui', 'providers', 'plugins', 'mcp', 'prompts', 'skills', 'agentPresets', 'agentInstructions', 'workspaces', 'pluginFiles', 'credentialsStatus', 'secrets', 'sessions', 'self']) {
|
|
75
|
+
sectionFlags[sid] = false;
|
|
76
|
+
}
|
|
77
|
+
sectionFlags.settings = true;
|
|
78
|
+
const manifest = buildManifest({
|
|
79
|
+
exporterVersion: '0.1.0',
|
|
80
|
+
dshVersion: '0.1.54',
|
|
81
|
+
platform: 'win32',
|
|
82
|
+
arch: 'x64',
|
|
83
|
+
sections: sectionFlags as Record<SectionId, boolean>,
|
|
84
|
+
containsSecrets: true,
|
|
85
|
+
encrypted: false,
|
|
86
|
+
encryption: null,
|
|
87
|
+
});
|
|
88
|
+
const settingsJson = JSON.stringify({ version: 1, namespaces: { llm: { value: { apiKey: 'sk-plaintext-secret-1234567890' } } } });
|
|
89
|
+
const entries = [
|
|
90
|
+
{ name: 'config/settings.json', data: Buffer.from(settingsJson, 'utf8') },
|
|
91
|
+
{ name: 'manifest.json', data: Buffer.from(JSON.stringify(manifest), 'utf8') },
|
|
92
|
+
];
|
|
93
|
+
const checksums = buildChecksums(entries);
|
|
94
|
+
entries.push({ name: 'integrity/checksums.json', data: Buffer.from(JSON.stringify(checksums), 'utf8') });
|
|
95
|
+
const zipPath = path.join(tmp, 'leaky.zip');
|
|
96
|
+
await writeZip(zipPath, entries);
|
|
97
|
+
|
|
98
|
+
const ref: ConsultSourceRef = { type: 'export-zip', id: zipPath };
|
|
99
|
+
const data = await readExportZipSource(ref, zipPath);
|
|
100
|
+
assert.ok(data.sensitiveHits.some((h) => h.path.includes('settings')), '应检测到 settings 分区敏感字段');
|
|
101
|
+
} finally {
|
|
102
|
+
await fs.rm(tmp, { recursive: true, force: true });
|
|
103
|
+
}
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
test('consult-source: 损坏 ZIP → zipSlipIssues 捕获,不抛错', async () => {
|
|
107
|
+
const tmp = await fs.mkdtemp(path.join(os.tmpdir(), 'dsh-cm-consult-bad-'));
|
|
108
|
+
try {
|
|
109
|
+
const badPath = path.join(tmp, 'bad.zip');
|
|
110
|
+
await fs.writeFile(badPath, Buffer.from('not a zip'));
|
|
111
|
+
const ref: ConsultSourceRef = { type: 'export-zip', id: badPath };
|
|
112
|
+
const data = await readExportZipSource(ref, badPath);
|
|
113
|
+
assert.ok(data.zipSlipIssues.length > 0);
|
|
114
|
+
assert.equal(data.manifest, null);
|
|
115
|
+
} finally {
|
|
116
|
+
await fs.rm(tmp, { recursive: true, force: true });
|
|
117
|
+
}
|
|
118
|
+
});
|
|
119
|
+
|
|
120
|
+
test('consult-source: local-snapshot 合成源(verify ok → 无完整性问题)', () => {
|
|
121
|
+
const ref: ConsultSourceRef = { type: 'local-snapshot', id: 'snap-1', snapshotId: 'snap-1' };
|
|
122
|
+
const data = buildLocalSnapshotSource(ref, {
|
|
123
|
+
sections: new Map([['settings', {}]]),
|
|
124
|
+
verify: { ok: true },
|
|
125
|
+
restorePlan: { itemCount: 4, conflicts: 0, warnings: 1, sections: ['settings'], errors: [] },
|
|
126
|
+
sourceDsh: '0.1.54',
|
|
127
|
+
sourcePlatform: 'win32',
|
|
128
|
+
});
|
|
129
|
+
assert.ok(data.manifest !== null);
|
|
130
|
+
assert.equal(data.manifestIssues.length, 0);
|
|
131
|
+
assert.equal(data.checksumIssues.length, 0);
|
|
132
|
+
assert.equal(data.migratability?.itemCount, 4);
|
|
133
|
+
assert.equal(data.migratability?.warnings, 1);
|
|
134
|
+
});
|
|
135
|
+
|
|
136
|
+
test('consult-source: local-snapshot 合成源(verify fail → 完整性问题)', () => {
|
|
137
|
+
const ref: ConsultSourceRef = { type: 'local-snapshot', id: 'snap-1', snapshotId: 'snap-1' };
|
|
138
|
+
const data = buildLocalSnapshotSource(ref, {
|
|
139
|
+
sections: new Map(),
|
|
140
|
+
verify: { ok: false, reason: 'blob hash 不匹配' },
|
|
141
|
+
restorePlan: { itemCount: 0, conflicts: 0, warnings: 0, sections: [], errors: [] },
|
|
142
|
+
sourceDsh: '0.1.54',
|
|
143
|
+
sourcePlatform: 'win32',
|
|
144
|
+
});
|
|
145
|
+
assert.ok(data.manifestIssues.some((i) => i.severity === 'error'));
|
|
146
|
+
assert.ok(data.checksumIssues.length > 0);
|
|
147
|
+
});
|
|
148
|
+
|
|
149
|
+
test('consult-source: profile 合成源', () => {
|
|
150
|
+
const ref: ConsultSourceRef = { type: 'profile', id: 'work' };
|
|
151
|
+
const data = buildProfileSource(ref, {
|
|
152
|
+
sections: new Map([['settings', {}], ['providers', {}]]),
|
|
153
|
+
switchPreview: { itemCount: 5, conflicts: 1, warnings: 0, sections: ['settings', 'providers'], errors: [] },
|
|
154
|
+
sourceDsh: '0.1.54',
|
|
155
|
+
sourcePlatform: 'win32',
|
|
156
|
+
});
|
|
157
|
+
assert.ok(data.manifest !== null);
|
|
158
|
+
assert.equal(data.migratability?.itemCount, 5);
|
|
159
|
+
assert.equal(data.migratability?.fatalConflicts, 1);
|
|
160
|
+
assert.equal(data.sections.size, 2);
|
|
161
|
+
});
|
|
162
|
+
|
|
163
|
+
test('consult-source: READ-ONLY(咨询不写任何文件)', async () => {
|
|
164
|
+
const { zipPath, tmp } = await buildZip();
|
|
165
|
+
try {
|
|
166
|
+
// 记录咨询前目录指纹(相对路径 + 大小 + mtime)
|
|
167
|
+
const fingerprint = async (): Promise<string> => {
|
|
168
|
+
const out: string[] = [];
|
|
169
|
+
const walk = async (dir: string): Promise<void> => {
|
|
170
|
+
const entries = await fs.readdir(dir, { withFileTypes: true });
|
|
171
|
+
for (const e of entries) {
|
|
172
|
+
const p = path.join(dir, e.name);
|
|
173
|
+
if (e.isDirectory()) {
|
|
174
|
+
await walk(p);
|
|
175
|
+
} else {
|
|
176
|
+
const st = await fs.stat(p);
|
|
177
|
+
out.push(`${path.relative(tmp, p)}:${st.size}:${st.mtimeMs}`);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
};
|
|
181
|
+
await walk(tmp);
|
|
182
|
+
return out.sort().join('\n');
|
|
183
|
+
};
|
|
184
|
+
const before = await fingerprint();
|
|
185
|
+
|
|
186
|
+
// 执行完整咨询(读取 + 评分)
|
|
187
|
+
const ref: ConsultSourceRef = { type: 'export-zip', id: zipPath };
|
|
188
|
+
const data = await readExportZipSource(ref, zipPath, {
|
|
189
|
+
computeMigratability: async () => ({ ok: true, itemCount: 1, fatalConflicts: 0, warnings: 0, sections: ['settings'], errors: [] }),
|
|
190
|
+
});
|
|
191
|
+
const { computeConsultReport } = await import('./migration-consult.ts');
|
|
192
|
+
computeConsultReport(data, { targetDsh: '0.1.54', targetPlatform: 'win32' });
|
|
193
|
+
|
|
194
|
+
const after = await fingerprint();
|
|
195
|
+
assert.equal(after, before, '咨询不得写任何文件(目录指纹应一致)');
|
|
196
|
+
} finally {
|
|
197
|
+
await fs.rm(tmp, { recursive: true, force: true });
|
|
198
|
+
}
|
|
199
|
+
});
|
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 迁移前咨询的源读取(Phase 7,只读分析层)。
|
|
3
|
+
*
|
|
4
|
+
* 把 4 种可迁移源(export-zip / local-snapshot / remote-snapshot / profile)归一化为
|
|
5
|
+
* `ConsultSourceData`,供 `computeConsultReport` 评分。本模块**只读**:
|
|
6
|
+
* - 读 ZIP / 快照 / profile 文件;
|
|
7
|
+
* - 复用安全/schema 工具(parseZipHardened / parseManifest / verifyChecksumsJson /
|
|
8
|
+
* validateSectionData / scanAndRedact / scanText);
|
|
9
|
+
* - 可迁移性经宿主注入的 `computeMigratability`(analyzeImport / createImportPlan,零写入)。
|
|
10
|
+
*
|
|
11
|
+
* READ-ONLY 磁盘边界:临时 ZIP 可写但必须净空(调用方负责 try/finally 清理);
|
|
12
|
+
* 配置 / 快照存储 / journal 零写。
|
|
13
|
+
*/
|
|
14
|
+
import fs from 'node:fs/promises';
|
|
15
|
+
import { parseZipHardened } from '../security/zip-security.ts';
|
|
16
|
+
import { MANIFEST_FILE, CHECKSUMS_FILE, parseManifest, validateManifest, type ManifestIssue } from '../schema/manifest.ts';
|
|
17
|
+
import { verifyChecksumsJson } from '../security/integrity.ts';
|
|
18
|
+
import { SECTION_JSON_PATHS, SECTION_FILE_PREFIXES, isFileSection } from '../schema/config.ts';
|
|
19
|
+
import { scanAndRedact, scanText } from '../security/secret-scanner.ts';
|
|
20
|
+
import type { Manifest, SectionId } from '../schema/types.ts';
|
|
21
|
+
import type { ConsultSourceData, ConsultSourceRef, MigratabilityResult } from './migration-consult.ts';
|
|
22
|
+
|
|
23
|
+
export interface ConsultSourceReaderOptions {
|
|
24
|
+
/** 计算可迁移性(宿主注入;缺省 null = 不评估) */
|
|
25
|
+
computeMigratability?: (zipPath: string) => Promise<MigratabilityResult>;
|
|
26
|
+
/** 高熵扫描开关(固定 true 保证确定性;缺省 true) */
|
|
27
|
+
highEntropy?: boolean;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/** 从导出 ZIP 读取并归一化源数据(只读) */
|
|
31
|
+
export async function readExportZipSource(
|
|
32
|
+
ref: ConsultSourceRef,
|
|
33
|
+
zipPath: string,
|
|
34
|
+
opts: ConsultSourceReaderOptions = {},
|
|
35
|
+
): Promise<ConsultSourceData> {
|
|
36
|
+
const highEntropy = opts.highEntropy ?? true;
|
|
37
|
+
const raw = await fs.readFile(zipPath);
|
|
38
|
+
|
|
39
|
+
// 1. 安全解析 ZIP(捕获 Zip Slip / 结构问题)
|
|
40
|
+
const zipSlipIssues: string[] = [];
|
|
41
|
+
let archive;
|
|
42
|
+
try {
|
|
43
|
+
archive = parseZipHardened(raw);
|
|
44
|
+
} catch (err) {
|
|
45
|
+
zipSlipIssues.push(err instanceof Error ? err.message : String(err));
|
|
46
|
+
return {
|
|
47
|
+
source: ref,
|
|
48
|
+
manifest: null,
|
|
49
|
+
manifestIssues: [],
|
|
50
|
+
sections: new Map(),
|
|
51
|
+
sectionFiles: new Map(),
|
|
52
|
+
checksums: null,
|
|
53
|
+
checksumIssues: [],
|
|
54
|
+
zipSlipIssues,
|
|
55
|
+
encrypted: false,
|
|
56
|
+
containsSecrets: false,
|
|
57
|
+
sourceDsh: '',
|
|
58
|
+
sourcePlatform: '',
|
|
59
|
+
schemaVersion: 0,
|
|
60
|
+
missingSections: [],
|
|
61
|
+
sensitiveHits: [],
|
|
62
|
+
migratability: null,
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// 2. manifest(捕获结构问题,不抛错)
|
|
67
|
+
let manifest: Manifest | null = null;
|
|
68
|
+
let manifestIssues: ManifestIssue[] = [];
|
|
69
|
+
if (archive.has(MANIFEST_FILE)) {
|
|
70
|
+
try {
|
|
71
|
+
manifest = parseManifest(archive.readEntryText(MANIFEST_FILE));
|
|
72
|
+
} catch {
|
|
73
|
+
// parseManifest 抛错 → 用 validateManifest 捕获具体问题
|
|
74
|
+
try {
|
|
75
|
+
const parsed = JSON.parse(archive.readEntryText(MANIFEST_FILE));
|
|
76
|
+
manifestIssues = validateManifest(parsed);
|
|
77
|
+
} catch {
|
|
78
|
+
manifestIssues = [{ path: '$', message: 'manifest 无法解析', severity: 'error' }];
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
} else {
|
|
82
|
+
manifestIssues = [{ path: '$', message: 'manifest 缺失', severity: 'error' }];
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// 3. checksums(捕获不匹配,不抛错)
|
|
86
|
+
const checksumIssues: string[] = [];
|
|
87
|
+
let checksums: Record<string, string> | null = null;
|
|
88
|
+
if (archive.has(CHECKSUMS_FILE)) {
|
|
89
|
+
try {
|
|
90
|
+
const entries = new Map<string, Uint8Array>();
|
|
91
|
+
for (const name of archive.names()) {
|
|
92
|
+
if (name === MANIFEST_FILE || name === CHECKSUMS_FILE) continue;
|
|
93
|
+
try { entries.set(name, archive.readEntry(name)); } catch { /* 损坏条目计入 checksumIssues */ }
|
|
94
|
+
}
|
|
95
|
+
const result = verifyChecksumsJson(entries, archive.readEntryText(CHECKSUMS_FILE));
|
|
96
|
+
checksums = result.ok ? {} : null;
|
|
97
|
+
for (const m of result.mismatches) checksumIssues.push(`"${m}" (hash 不符)`);
|
|
98
|
+
for (const m of result.missing) checksumIssues.push(`"${m}" (缺失)`);
|
|
99
|
+
} catch (err) {
|
|
100
|
+
checksumIssues.push(err instanceof Error ? err.message : String(err));
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// 4. 提取分区(捕获缺失/不可解析)
|
|
105
|
+
const sections = new Map<SectionId, unknown>();
|
|
106
|
+
const sectionFiles = new Map<string, Uint8Array>();
|
|
107
|
+
const missingSections: SectionId[] = [];
|
|
108
|
+
if (manifest !== null) {
|
|
109
|
+
for (const [sid, enabled] of Object.entries(manifest.sections) as [SectionId, boolean][]) {
|
|
110
|
+
if (!enabled) continue;
|
|
111
|
+
if (isFileSection(sid)) {
|
|
112
|
+
const prefix = SECTION_FILE_PREFIXES[sid]!;
|
|
113
|
+
for (const name of archive.names()) {
|
|
114
|
+
if (!name.startsWith(prefix) || name === prefix) continue;
|
|
115
|
+
const rel = name.slice(prefix.length);
|
|
116
|
+
if (rel === '' || rel.endsWith('/')) continue;
|
|
117
|
+
sectionFiles.set(`${sid}/${rel}`, archive.readEntry(name));
|
|
118
|
+
}
|
|
119
|
+
sections.set(sid, { version: 1, files: [] });
|
|
120
|
+
continue;
|
|
121
|
+
}
|
|
122
|
+
const jsonPath = SECTION_JSON_PATHS[sid];
|
|
123
|
+
if (jsonPath === undefined) continue;
|
|
124
|
+
if (!archive.has(jsonPath)) {
|
|
125
|
+
missingSections.push(sid);
|
|
126
|
+
continue;
|
|
127
|
+
}
|
|
128
|
+
try {
|
|
129
|
+
sections.set(sid, archive.readEntryJson(jsonPath));
|
|
130
|
+
} catch {
|
|
131
|
+
missingSections.push(sid);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// 5. 敏感暴露面(scanAndRedact 结构化 + scanText 文件类)
|
|
137
|
+
const sensitiveHits = [];
|
|
138
|
+
for (const [sid, data] of sections) {
|
|
139
|
+
const { hits } = scanAndRedact(data, { highEntropy });
|
|
140
|
+
for (const h of hits) sensitiveHits.push({ path: `${sid}:${h.path}`, field: h.field });
|
|
141
|
+
}
|
|
142
|
+
for (const [key, bytes] of sectionFiles) {
|
|
143
|
+
const text = Buffer.from(bytes).toString('utf8');
|
|
144
|
+
for (const h of scanText(text, { highEntropy })) {
|
|
145
|
+
sensitiveHits.push({ path: `${key}:${h.path}`, field: h.field });
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// 6. 可迁移性(宿主注入;零写入)
|
|
150
|
+
const migratability = opts.computeMigratability !== undefined
|
|
151
|
+
? await opts.computeMigratability(zipPath)
|
|
152
|
+
: null;
|
|
153
|
+
|
|
154
|
+
return {
|
|
155
|
+
source: ref,
|
|
156
|
+
manifest,
|
|
157
|
+
manifestIssues,
|
|
158
|
+
sections,
|
|
159
|
+
sectionFiles,
|
|
160
|
+
checksums,
|
|
161
|
+
checksumIssues,
|
|
162
|
+
zipSlipIssues,
|
|
163
|
+
encrypted: manifest?.security.encrypted ?? false,
|
|
164
|
+
containsSecrets: manifest?.security.containsSecrets ?? false,
|
|
165
|
+
sourceDsh: manifest?.source.dshVersion ?? '',
|
|
166
|
+
sourcePlatform: manifest?.source.platform ?? '',
|
|
167
|
+
schemaVersion: manifest?.schemaVersion ?? 0,
|
|
168
|
+
missingSections,
|
|
169
|
+
sensitiveHits,
|
|
170
|
+
migratability,
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/* ---------------- 非 ZIP 源(local-snapshot / profile) ---------------- */
|
|
175
|
+
|
|
176
|
+
export interface LocalSnapshotSourceInput {
|
|
177
|
+
/** 快照捕获的分区数据(按 adapter 分组;best-effort) */
|
|
178
|
+
sections: Map<SectionId, unknown>;
|
|
179
|
+
/** 快照完整性校验结果(verifySnapshot) */
|
|
180
|
+
verify: { ok: boolean; reason?: string };
|
|
181
|
+
/** 恢复计划(planRestore)→ 可迁移性 */
|
|
182
|
+
restorePlan: { itemCount: number; conflicts: number; warnings: number; sections: SectionId[]; errors: string[] };
|
|
183
|
+
/** 合成 manifest 的源信息(宿主 dshVersion/platform) */
|
|
184
|
+
sourceDsh: string;
|
|
185
|
+
sourcePlatform: string;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* 从本地快照(rollback 点)构建 ConsultSourceData。
|
|
190
|
+
* 快照无导出 manifest → 用合成 manifest(schemaVersion=1,sections 来自捕获分区),
|
|
191
|
+
* 避免「无导出 manifest」被误判为 compatibility/integrity critical。
|
|
192
|
+
* 完整性 = verifySnapshot(blob hashes / metadataHash);可迁移性 = planRestore。
|
|
193
|
+
*/
|
|
194
|
+
export function buildLocalSnapshotSource(
|
|
195
|
+
ref: ConsultSourceRef,
|
|
196
|
+
input: LocalSnapshotSourceInput,
|
|
197
|
+
): ConsultSourceData {
|
|
198
|
+
const sectionFlags = {} as Record<SectionId, boolean>;
|
|
199
|
+
for (const sid of input.sections.keys()) sectionFlags[sid] = true;
|
|
200
|
+
const manifest: Manifest = {
|
|
201
|
+
schemaVersion: 1,
|
|
202
|
+
exporter: { name: 'DSH Config Manager', version: 'snapshot' },
|
|
203
|
+
source: { dshVersion: input.sourceDsh, platform: input.sourcePlatform as Manifest['source']['platform'], arch: 'unknown' },
|
|
204
|
+
exportedAt: new Date().toISOString(),
|
|
205
|
+
sections: sectionFlags,
|
|
206
|
+
security: { containsSecrets: false, encrypted: false, encryption: null },
|
|
207
|
+
};
|
|
208
|
+
const manifestIssues = input.verify.ok ? [] : [{ path: '$', message: input.verify.reason ?? '快照完整性校验失败', severity: 'error' as const }];
|
|
209
|
+
const checksumIssues = input.verify.ok ? [] : [input.verify.reason ?? '快照完整性校验失败'];
|
|
210
|
+
const migratability: MigratabilityResult = {
|
|
211
|
+
ok: input.restorePlan.errors.length === 0,
|
|
212
|
+
itemCount: input.restorePlan.itemCount,
|
|
213
|
+
fatalConflicts: input.restorePlan.conflicts,
|
|
214
|
+
warnings: input.restorePlan.warnings,
|
|
215
|
+
sections: input.restorePlan.sections,
|
|
216
|
+
errors: input.restorePlan.errors,
|
|
217
|
+
};
|
|
218
|
+
return {
|
|
219
|
+
source: ref,
|
|
220
|
+
manifest,
|
|
221
|
+
manifestIssues,
|
|
222
|
+
sections: input.sections,
|
|
223
|
+
sectionFiles: new Map(),
|
|
224
|
+
checksums: input.verify.ok ? {} : null,
|
|
225
|
+
checksumIssues,
|
|
226
|
+
zipSlipIssues: [],
|
|
227
|
+
encrypted: false,
|
|
228
|
+
containsSecrets: false,
|
|
229
|
+
sourceDsh: input.sourceDsh,
|
|
230
|
+
sourcePlatform: input.sourcePlatform,
|
|
231
|
+
schemaVersion: 1,
|
|
232
|
+
missingSections: [],
|
|
233
|
+
sensitiveHits: [],
|
|
234
|
+
migratability,
|
|
235
|
+
};
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
export interface ProfileSourceInput {
|
|
239
|
+
/** profile 的分区数据(decodeSections) */
|
|
240
|
+
sections: Map<SectionId, unknown>;
|
|
241
|
+
/** 切换预览(analyzeSwitch)→ 可迁移性 */
|
|
242
|
+
switchPreview: { itemCount: number; conflicts: number; warnings: number; sections: SectionId[]; errors: string[] };
|
|
243
|
+
/** 合成 manifest 的源信息(宿主 dshVersion/platform) */
|
|
244
|
+
sourceDsh: string;
|
|
245
|
+
sourcePlatform: string;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* 从配置档案(profile.json)构建 ConsultSourceData。
|
|
250
|
+
* profile 无导出 manifest → 用合成 manifest(sections 来自 profile 分区)。
|
|
251
|
+
* 可迁移性 = analyzeSwitch(切换预览计划项)。
|
|
252
|
+
*/
|
|
253
|
+
export function buildProfileSource(
|
|
254
|
+
ref: ConsultSourceRef,
|
|
255
|
+
input: ProfileSourceInput,
|
|
256
|
+
): ConsultSourceData {
|
|
257
|
+
const sectionFlags = {} as Record<SectionId, boolean>;
|
|
258
|
+
for (const sid of input.sections.keys()) sectionFlags[sid] = true;
|
|
259
|
+
const manifest: Manifest = {
|
|
260
|
+
schemaVersion: 1,
|
|
261
|
+
exporter: { name: 'DSH Config Manager', version: 'profile' },
|
|
262
|
+
source: { dshVersion: input.sourceDsh, platform: input.sourcePlatform as Manifest['source']['platform'], arch: 'unknown' },
|
|
263
|
+
exportedAt: new Date().toISOString(),
|
|
264
|
+
sections: sectionFlags,
|
|
265
|
+
security: { containsSecrets: false, encrypted: false, encryption: null },
|
|
266
|
+
};
|
|
267
|
+
const migratability: MigratabilityResult = {
|
|
268
|
+
ok: input.switchPreview.errors.length === 0,
|
|
269
|
+
itemCount: input.switchPreview.itemCount,
|
|
270
|
+
fatalConflicts: input.switchPreview.conflicts,
|
|
271
|
+
warnings: input.switchPreview.warnings,
|
|
272
|
+
sections: input.switchPreview.sections,
|
|
273
|
+
errors: input.switchPreview.errors,
|
|
274
|
+
};
|
|
275
|
+
return {
|
|
276
|
+
source: ref,
|
|
277
|
+
manifest,
|
|
278
|
+
manifestIssues: [],
|
|
279
|
+
sections: input.sections,
|
|
280
|
+
sectionFiles: new Map(),
|
|
281
|
+
checksums: {},
|
|
282
|
+
checksumIssues: [],
|
|
283
|
+
zipSlipIssues: [],
|
|
284
|
+
encrypted: false,
|
|
285
|
+
containsSecrets: false,
|
|
286
|
+
sourceDsh: input.sourceDsh,
|
|
287
|
+
sourcePlatform: input.sourcePlatform,
|
|
288
|
+
schemaVersion: 1,
|
|
289
|
+
missingSections: [],
|
|
290
|
+
sensitiveHits: [],
|
|
291
|
+
migratability,
|
|
292
|
+
};
|
|
293
|
+
}
|