create-windy 0.2.33 → 0.3.0

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.
Files changed (284) hide show
  1. package/dist/cli.js +173 -17
  2. package/package.json +1 -1
  3. package/template/.agents/skills/windy-business-module/SKILL.md +10 -1
  4. package/template/.windy-template.json +2 -2
  5. package/template/AGENTS.md +9 -0
  6. package/template/README.md +3 -1
  7. package/template/apps/agent-server/Dockerfile +1 -0
  8. package/template/apps/agent-server/README.md +28 -5
  9. package/template/apps/agent-server/adk_web_agents/__init__.py +1 -0
  10. package/template/apps/agent-server/adk_web_agents/safe_debug/__init__.py +3 -0
  11. package/template/apps/agent-server/adk_web_agents/safe_debug/agent.py +40 -0
  12. package/template/apps/agent-server/pyproject.toml +1 -1
  13. package/template/apps/agent-server/src/southwind_agent_server/adk_adapter.py +191 -16
  14. package/template/apps/agent-server/src/southwind_agent_server/adk_failure.py +13 -0
  15. package/template/apps/agent-server/src/southwind_agent_server/adk_model.py +225 -0
  16. package/template/apps/agent-server/src/southwind_agent_server/adk_tools.py +76 -0
  17. package/template/apps/agent-server/src/southwind_agent_server/app.py +63 -3
  18. package/template/apps/agent-server/src/southwind_agent_server/contracts.py +35 -0
  19. package/template/apps/agent-server/src/southwind_agent_server/engine.py +2 -0
  20. package/template/apps/agent-server/src/southwind_agent_server/openai_engine.py +31 -3
  21. package/template/apps/agent-server/src/southwind_agent_server/openai_provider.py +22 -9
  22. package/template/apps/agent-server/src/southwind_agent_server/provider_audit.py +144 -0
  23. package/template/apps/agent-server/src/southwind_agent_server/provider_governance.py +227 -0
  24. package/template/apps/agent-server/src/southwind_agent_server/service.py +1 -0
  25. package/template/apps/agent-server/tests/test_adk_adapter.py +305 -0
  26. package/template/apps/agent-server/tests/test_adk_web_agent.py +12 -0
  27. package/template/apps/agent-server/tests/test_api.py +16 -1
  28. package/template/apps/agent-server/tests/test_openai_provider.py +79 -0
  29. package/template/apps/agent-server/tests/test_provider_governance.py +215 -0
  30. package/template/apps/server/package.json +4 -1
  31. package/template/apps/server/src/agent/provider-input-governance.test.ts +82 -0
  32. package/template/apps/server/src/agent/provider-input-governance.ts +140 -0
  33. package/template/apps/server/src/agent/remote-runtime.test.ts +22 -0
  34. package/template/apps/server/src/agent/remote-runtime.ts +1 -0
  35. package/template/apps/server/src/agent/run-contracts.ts +2 -0
  36. package/template/apps/server/src/agent/run-facade.test.ts +52 -2
  37. package/template/apps/server/src/agent/run-facade.ts +38 -9
  38. package/template/apps/server/src/agent/tool-registry.ts +2 -6
  39. package/template/apps/server/src/application-services.ts +50 -0
  40. package/template/apps/server/src/audit/drizzle-log-store.ts +25 -0
  41. package/template/apps/server/src/audit/search-summary.ts +2 -6
  42. package/template/apps/server/src/auth/credential-restriction.ts +1 -0
  43. package/template/apps/server/src/auth/password.ts +30 -21
  44. package/template/apps/server/src/auth/routes.test.ts +44 -3
  45. package/template/apps/server/src/auth/routes.ts +6 -1
  46. package/template/apps/server/src/auth/runtime.ts +4 -1
  47. package/template/apps/server/src/auth/service.ts +25 -7
  48. package/template/apps/server/src/configuration/bootstrap.ts +20 -1
  49. package/template/apps/server/src/configuration/definition.test.ts +71 -0
  50. package/template/apps/server/src/configuration/definition.ts +242 -12
  51. package/template/apps/server/src/configuration/drizzle-repository.ts +36 -2
  52. package/template/apps/server/src/configuration/repository.ts +27 -2
  53. package/template/apps/server/src/configuration/routes.ts +4 -1
  54. package/template/apps/server/src/configuration/service.test.ts +100 -0
  55. package/template/apps/server/src/configuration/service.ts +50 -10
  56. package/template/apps/server/src/data-access/scoped-repository.integration.test.ts +3 -2
  57. package/template/apps/server/src/data-governance/export/service.ts +2 -6
  58. package/template/apps/server/src/example-modules.ts +4 -1
  59. package/template/apps/server/src/guards.ts +18 -5
  60. package/template/apps/server/src/http/request-source.test.ts +85 -0
  61. package/template/apps/server/src/http/request-source.ts +90 -0
  62. package/template/apps/server/src/index.ts +45 -45
  63. package/template/apps/server/src/license/routes.ts +2 -0
  64. package/template/apps/server/src/license/runtime-service.ts +10 -11
  65. package/template/apps/server/src/module-bootstrap.ts +2 -2
  66. package/template/apps/server/src/module-host/initialize-contracts.ts +6 -0
  67. package/template/apps/server/src/module-host/initialize.ts +30 -44
  68. package/template/apps/server/src/module-host/request-context.ts +29 -23
  69. package/template/apps/server/src/module-host/resource-file-policies.test.ts +197 -0
  70. package/template/apps/server/src/module-host/resource-file-policies.ts +108 -0
  71. package/template/apps/server/src/module-host/route-declaration.ts +45 -0
  72. package/template/apps/server/src/module-host/route-installer.ts +27 -3
  73. package/template/apps/server/src/module-host/storage-port.test.ts +170 -1
  74. package/template/apps/server/src/module-host/storage-port.ts +134 -1
  75. package/template/apps/server/src/module-host/storage-scope.ts +89 -0
  76. package/template/apps/server/src/module-host/tool-handlers.test.ts +305 -0
  77. package/template/apps/server/src/module-host/tool-handlers.ts +38 -4
  78. package/template/apps/server/src/module-host/user-directory-composition.test.ts +126 -0
  79. package/template/apps/server/src/module-host/user-directory-port.test.ts +238 -0
  80. package/template/apps/server/src/module-host/user-directory-port.ts +139 -0
  81. package/template/apps/server/src/module-host.ts +4 -0
  82. package/template/apps/server/src/notification/channel-adapter.ts +46 -0
  83. package/template/apps/server/src/notification/delivery-policy.test.ts +59 -0
  84. package/template/apps/server/src/notification/delivery-policy.ts +37 -0
  85. package/template/apps/server/src/notification/delivery-repository.ts +198 -0
  86. package/template/apps/server/src/notification/delivery-worker.test.ts +87 -0
  87. package/template/apps/server/src/notification/delivery-worker.ts +88 -0
  88. package/template/apps/server/src/notification/drizzle-management.ts +180 -0
  89. package/template/apps/server/src/notification/drizzle-query.ts +160 -0
  90. package/template/apps/server/src/notification/drizzle-repository.integration.test.ts +301 -0
  91. package/template/apps/server/src/notification/drizzle-repository.ts +156 -90
  92. package/template/apps/server/src/notification/extension-routes.test.ts +119 -0
  93. package/template/apps/server/src/notification/extension-routes.ts +111 -0
  94. package/template/apps/server/src/notification/memory-delivery-repository.ts +137 -0
  95. package/template/apps/server/src/notification/memory-support.ts +72 -0
  96. package/template/apps/server/src/notification/preference-repository.ts +95 -0
  97. package/template/apps/server/src/notification/recipient-directory.ts +104 -0
  98. package/template/apps/server/src/notification/repository.test.ts +171 -0
  99. package/template/apps/server/src/notification/repository.ts +179 -32
  100. package/template/apps/server/src/notification/revision-routes.test.ts +186 -0
  101. package/template/apps/server/src/notification/route-support.ts +225 -0
  102. package/template/apps/server/src/notification/routes.test.ts +182 -0
  103. package/template/apps/server/src/notification/routes.ts +225 -132
  104. package/template/apps/server/src/notification/service.test.ts +104 -0
  105. package/template/apps/server/src/notification/service.ts +140 -0
  106. package/template/apps/server/src/notification/smtp-adapter.test.ts +65 -0
  107. package/template/apps/server/src/notification/smtp-adapter.ts +68 -0
  108. package/template/apps/server/src/persistence.integration.test.ts +41 -2
  109. package/template/apps/server/src/route-guards.ts +1 -0
  110. package/template/apps/server/src/runtime-audit-list.test.ts +39 -0
  111. package/template/apps/server/src/runtime-development.ts +2 -0
  112. package/template/apps/server/src/runtime.test.ts +23 -9
  113. package/template/apps/server/src/runtime.ts +39 -2
  114. package/template/apps/server/src/scheduler/audit.ts +2 -11
  115. package/template/apps/server/src/scheduler/definitions.test.ts +6 -0
  116. package/template/apps/server/src/scheduler/definitions.ts +7 -0
  117. package/template/apps/server/src/scheduler/recovery-service.ts +2 -11
  118. package/template/apps/server/src/scheduler/routes.ts +2 -7
  119. package/template/apps/server/src/search/opensearch-client.test.ts +45 -0
  120. package/template/apps/server/src/search/opensearch-client.ts +145 -0
  121. package/template/apps/server/src/search/service.ts +2 -6
  122. package/template/apps/server/src/settings/routes.ts +15 -3
  123. package/template/apps/server/src/settings/runtime.ts +10 -1
  124. package/template/apps/server/src/storage/runtime.ts +13 -0
  125. package/template/apps/server/src/system/audit-query.ts +33 -4
  126. package/template/apps/server/src/system/audit-routes.test.ts +58 -4
  127. package/template/apps/server/src/system/audit-routes.ts +6 -5
  128. package/template/apps/server/src/system/built-in-roles.ts +1 -0
  129. package/template/apps/server/src/system/department-organization.ts +320 -0
  130. package/template/apps/server/src/system/department-routes.test.ts +207 -48
  131. package/template/apps/server/src/system/department-routes.ts +114 -33
  132. package/template/apps/server/src/system/drizzle-repository.ts +15 -7
  133. package/template/apps/server/src/system/drizzle-scoped-repository.ts +5 -3
  134. package/template/apps/server/src/system/drizzle-system.ts +37 -9
  135. package/template/apps/server/src/system/drizzle-transaction-context.ts +14 -0
  136. package/template/apps/server/src/system/identity-route-config.ts +7 -2
  137. package/template/apps/server/src/system/mutation-runner.ts +23 -0
  138. package/template/apps/server/src/system/organization-postgres.integration.test.ts +176 -0
  139. package/template/apps/server/src/system/resource-access-response.ts +12 -6
  140. package/template/apps/server/src/system/role-department-scope-policy.ts +55 -0
  141. package/template/apps/server/src/system/route-helpers.ts +2 -5
  142. package/template/apps/server/src/system/route-types.ts +12 -3
  143. package/template/apps/server/src/system/routes-validation.test.ts +26 -0
  144. package/template/apps/server/src/system/routes.test.ts +10 -2
  145. package/template/apps/server/src/system/routes.ts +70 -36
  146. package/template/apps/server/src/system/seed.ts +7 -0
  147. package/template/apps/server/src/work-order/data-scope.integration.test.ts +9 -2
  148. package/template/apps/server/src/work-order/opensearch-index.test.ts +97 -0
  149. package/template/apps/server/src/work-order/opensearch-index.ts +313 -0
  150. package/template/apps/server/src/work-order/search-provider.ts +60 -1
  151. package/template/apps/server/src/work-order/service.ts +42 -10
  152. package/template/apps/web/src/app/error-pages.ts +9 -0
  153. package/template/apps/web/src/components/auth/PasswordChangeForm.vue +16 -11
  154. package/template/apps/web/src/components/auth/PasswordChangeForm.webtest.ts +14 -0
  155. package/template/apps/web/src/components/common/FormDialog.vue +16 -2
  156. package/template/apps/web/src/components/common/ModalLayout.webtest.ts +20 -1
  157. package/template/apps/web/src/composables/useGlobalSearch.ts +68 -0
  158. package/template/apps/web/src/composables/usePlatformSettings.ts +8 -7
  159. package/template/apps/web/src/layout/GlobalSearchResults.vue +58 -0
  160. package/template/apps/web/src/layout/NavigationSearchDialog.vue +42 -6
  161. package/template/apps/web/src/layout/NavigationSearchDialog.webtest.ts +71 -0
  162. package/template/apps/web/src/layout/NotificationMenu.vue +73 -31
  163. package/template/apps/web/src/layout/NotificationMenu.webtest.ts +44 -1
  164. package/template/apps/web/src/layout/NotificationMenuItem.vue +61 -0
  165. package/template/apps/web/src/layout/NotificationPreferencesDialog.vue +181 -0
  166. package/template/apps/web/src/layout/NotificationPreferencesDialog.webtest.ts +80 -0
  167. package/template/apps/web/src/lib/date-time.ts +22 -10
  168. package/template/apps/web/src/lib/date-time.webtest.ts +9 -1
  169. package/template/apps/web/src/main.ts +14 -1
  170. package/template/apps/web/src/pages/auth/ChangePasswordPage.vue +16 -1
  171. package/template/apps/web/src/pages/configuration/components/ModuleConfigVersionList.vue +1 -0
  172. package/template/apps/web/src/pages/configuration/components/ModuleConfigurationEditor.vue +10 -0
  173. package/template/apps/web/src/pages/configuration/components/ModuleConfigurationWorkbench.vue +37 -6
  174. package/template/apps/web/src/pages/errors/PlatformErrorPage.vue +115 -0
  175. package/template/apps/web/src/pages/errors/PlatformErrorPage.webtest.ts +44 -0
  176. package/template/apps/web/src/pages/errors/error-page-extension.ts +26 -0
  177. package/template/apps/web/src/pages/system/SystemNotificationsPage.vue +136 -68
  178. package/template/apps/web/src/pages/system/SystemNotificationsPage.webtest.ts +224 -12
  179. package/template/apps/web/src/pages/system/audit-log-presenter.ts +86 -0
  180. package/template/apps/web/src/pages/system/audit-time-range.ts +28 -0
  181. package/template/apps/web/src/pages/system/components/AuditActionCell.vue +10 -69
  182. package/template/apps/web/src/pages/system/components/AuditActionCell.webtest.ts +20 -27
  183. package/template/apps/web/src/pages/system/components/AuditLogDetailDialog.vue +134 -0
  184. package/template/apps/web/src/pages/system/components/AuditLogDetailDialog.webtest.ts +76 -0
  185. package/template/apps/web/src/pages/system/components/AuditLogFilters.vue +116 -52
  186. package/template/apps/web/src/pages/system/components/AuditLogFilters.webtest.ts +52 -15
  187. package/template/apps/web/src/pages/system/components/NotificationHistoryDialog.vue +129 -0
  188. package/template/apps/web/src/pages/system/components/NotificationManagementCard.vue +91 -0
  189. package/template/apps/web/src/pages/system/components/NotificationPublishDialog.vue +121 -0
  190. package/template/apps/web/src/pages/system/components/NotificationPublishForm.vue +162 -1
  191. package/template/apps/web/src/pages/system/components/SystemResourceActions.vue +68 -0
  192. package/template/apps/web/src/pages/system/components/SystemResourceEditor.vue +74 -0
  193. package/template/apps/web/src/pages/system/components/SystemResourceFilters.vue +3 -4
  194. package/template/apps/web/src/pages/system/components/SystemResourcePage.vue +91 -98
  195. package/template/apps/web/src/pages/system/components/SystemResourcePage.webtest.ts +68 -0
  196. package/template/apps/web/src/pages/system/components/SystemResourceTable.vue +20 -1
  197. package/template/apps/web/src/pages/system/components/SystemResourceTable.webtest.ts +28 -7
  198. package/template/apps/web/src/pages/system/components/department/DepartmentOrganizationForm.vue +210 -0
  199. package/template/apps/web/src/pages/system/components/department/DepartmentTransitionDialog.vue +112 -0
  200. package/template/apps/web/src/pages/system/components/user-account/UserAccountForm.vue +17 -4
  201. package/template/apps/web/src/pages/system/composables/useDepartmentTransitions.ts +79 -0
  202. package/template/apps/web/src/pages/system/composables/useNotificationPermissions.ts +14 -0
  203. package/template/apps/web/src/pages/system/composables/useSystemResource.ts +2 -0
  204. package/template/apps/web/src/pages/system/composables/useSystemResource.webtest.ts +15 -2
  205. package/template/apps/web/src/pages/system/resource-config.ts +12 -4
  206. package/template/apps/web/src/router/error-navigation.ts +50 -0
  207. package/template/apps/web/src/router/error-navigation.webtest.ts +106 -0
  208. package/template/apps/web/src/router/index.ts +71 -0
  209. package/template/apps/web/src/router/index.webtest.ts +29 -0
  210. package/template/apps/web/src/router/manifest-routes.webtest.ts +4 -0
  211. package/template/apps/web/src/router/shared-scaffold-neutrality.webtest.ts +12 -0
  212. package/template/apps/web/src/services/auth-api.ts +5 -0
  213. package/template/apps/web/src/services/http.ts +43 -6
  214. package/template/apps/web/src/services/http.webtest.ts +70 -0
  215. package/template/apps/web/src/services/notification-api.ts +85 -2
  216. package/template/apps/web/src/services/notification-api.webtest.ts +110 -0
  217. package/template/apps/web/src/services/search-api.ts +39 -0
  218. package/template/apps/web/src/services/system-api.ts +18 -0
  219. package/template/apps/web/vitest.config.ts +1 -0
  220. package/template/docker-compose.yml +68 -0
  221. package/template/docs/architecture/ai-egress.md +49 -7
  222. package/template/docs/architecture/ai-runtime.md +34 -6
  223. package/template/docs/architecture/data-scope-query-enforcement.md +4 -0
  224. package/template/docs/architecture/object-storage.md +22 -2
  225. package/template/docs/architecture/search-provider-protocol.md +38 -2
  226. package/template/docs/development/custom-error-pages.md +78 -0
  227. package/template/docs/development/custom-login-page.md +3 -3
  228. package/template/docs/platform/agent-runtime.md +76 -7
  229. package/template/docs/platform/audit-reliability.md +46 -2
  230. package/template/docs/platform/business-user-directory.md +82 -0
  231. package/template/docs/platform/module-configuration.md +13 -4
  232. package/template/docs/platform/notifications.md +67 -11
  233. package/template/docs/platform/organization-membership.md +17 -3
  234. package/template/docs/platform/system-crud-api.md +16 -0
  235. package/template/docs/platform/web-system-crud.md +6 -2
  236. package/template/package.json +4 -0
  237. package/template/packages/config/index.test.ts +45 -0
  238. package/template/packages/config/package.json +1 -1
  239. package/template/packages/config/src/platform.ts +169 -48
  240. package/template/packages/database/drizzle/0035_material_nightshade.sql +10 -0
  241. package/template/packages/database/drizzle/0036_hesitant_speed.sql +35 -0
  242. package/template/packages/database/drizzle/0037_absent_nick_fury.sql +2 -0
  243. package/template/packages/database/drizzle/0038_uneven_wasp.sql +38 -0
  244. package/template/packages/database/drizzle/meta/0035_snapshot.json +7331 -0
  245. package/template/packages/database/drizzle/meta/0036_snapshot.json +7436 -0
  246. package/template/packages/database/drizzle/meta/0037_snapshot.json +7457 -0
  247. package/template/packages/database/drizzle/meta/0038_snapshot.json +7749 -0
  248. package/template/packages/database/drizzle/meta/_journal.json +28 -0
  249. package/template/packages/database/package.json +1 -1
  250. package/template/packages/database/src/schema/identity.ts +7 -0
  251. package/template/packages/database/src/schema/notifications.ts +135 -0
  252. package/template/packages/database/src/schema-notification-delivery.test.ts +54 -0
  253. package/template/packages/database/src/schema-workflow-notification.test.ts +40 -1
  254. package/template/packages/modules/package.json +1 -1
  255. package/template/packages/modules/src/ai-operation-composition.test.ts +68 -0
  256. package/template/packages/modules/src/ai-operation-composition.ts +115 -0
  257. package/template/packages/modules/src/manifest.ts +26 -0
  258. package/template/packages/modules/src/provider-data-policy-composition.test.ts +74 -0
  259. package/template/packages/modules/src/system-api-permissions.ts +54 -0
  260. package/template/packages/modules/src/system-audit-actions.ts +15 -0
  261. package/template/packages/modules/src/system-features.ts +6 -1
  262. package/template/packages/modules/src/system-module-catalog.test.ts +16 -0
  263. package/template/packages/modules/src/system-module-catalog.ts +28 -4
  264. package/template/packages/modules/src/system-modules.test.ts +13 -1
  265. package/template/packages/modules/src/system-modules.ts +12 -0
  266. package/template/packages/modules/src/system-permissions.ts +11 -5
  267. package/template/packages/server-sdk/index.ts +11 -0
  268. package/template/packages/server-sdk/package.json +3 -2
  269. package/template/packages/server-sdk/src/ai-operation-registration.ts +2 -1
  270. package/template/packages/server-sdk/src/module-host.ts +8 -0
  271. package/template/packages/server-sdk/src/request-context.ts +2 -0
  272. package/template/packages/server-sdk/src/storage-port.ts +66 -0
  273. package/template/packages/server-sdk/src/tool-registration.ts +6 -0
  274. package/template/packages/server-sdk/src/user-directory-port.ts +42 -0
  275. package/template/packages/shared/package.json +1 -1
  276. package/template/packages/shared/src/audit.ts +25 -0
  277. package/template/packages/shared/src/module-configuration.ts +5 -0
  278. package/template/packages/shared/src/notification.ts +92 -1
  279. package/template/packages/shared/src/password.ts +7 -2
  280. package/template/packages/shared/src/platform-settings.ts +2 -0
  281. package/template/packages/storage/package.json +1 -1
  282. package/template/packages/storage/src/upload-service.test.ts +16 -0
  283. package/template/packages/storage/src/upload-service.ts +5 -1
  284. package/template/scripts/notification-postgres-regression.ts +27 -0
@@ -0,0 +1,305 @@
1
+ import { describe, expect, test } from "bun:test";
2
+ import type { ModuleManifest } from "@southwind-ai/modules";
3
+ import { featureKey } from "@southwind-ai/shared";
4
+ import {
5
+ FileService,
6
+ InMemoryUploadRepository,
7
+ MemoryBlobStore,
8
+ UploadService,
9
+ } from "@southwind-ai/storage";
10
+ import { buildActorScopeContexts } from "../data-access/context.js";
11
+ import type { RequestActor, RequestGuardContext } from "../guards.js";
12
+ import { createServerRuntime } from "../runtime.js";
13
+ import { initializeModuleHosts } from "./initialize.js";
14
+ import type { ModuleStorageServices } from "./storage-port.js";
15
+ import { createModuleToolHandlerMap } from "./tool-handlers.js";
16
+
17
+ describe("业务 Tool Storage Port 组合", () => {
18
+ test("每次执行使用当前 Actor/Scope 重验资源绑定并允许跨上传者读取", async () => {
19
+ const declared = toolManifest();
20
+ const evidence = evidenceManifest();
21
+ const hosts = await initializeModuleHosts({
22
+ modules: [evidence, declared],
23
+ installations: [
24
+ {
25
+ manifest: evidence,
26
+ setup(host) {
27
+ host.registerUploadPolicy(uploadPolicy());
28
+ },
29
+ },
30
+ {
31
+ manifest: declared,
32
+ setup(host) {
33
+ host.registerResourceFileAccessPolicies([
34
+ {
35
+ purpose: "evidence.original",
36
+ resourceType: "media.evidence-file",
37
+ featureKey: "media.catalog",
38
+ permissionKey: "media.read",
39
+ auditAction: "media.file.read",
40
+ authorize: ({ fileId, resourceId }, context) =>
41
+ fileId === linkedFileId &&
42
+ resourceId === "evidence_file_1" &&
43
+ context.actor.id === "user_reader",
44
+ },
45
+ ]);
46
+ host.registerToolHandlers([
47
+ {
48
+ toolKey: "media.metadata.catalog",
49
+ scopeMode: "request",
50
+ async execute(input, context) {
51
+ const file = await context.storage.openResourceFile({
52
+ fileId: String(input.fileId),
53
+ purpose: "evidence.original",
54
+ resourceType: "media.evidence-file",
55
+ resourceId: String(input.resourceId),
56
+ });
57
+ return { fileId: file.id, sha256: file.sha256 };
58
+ },
59
+ },
60
+ ]);
61
+ },
62
+ },
63
+ ],
64
+ });
65
+ const storage = createTestStorage(hosts.uploadPolicies);
66
+ const seeded = await seed(storage);
67
+ linkedFileId = seeded.id;
68
+ const runtime = createServerRuntime();
69
+ const handlers = createModuleToolHandlerMap(hosts, {
70
+ runtime,
71
+ features: declared.features,
72
+ storage,
73
+ });
74
+ const handler = handlers.get("media.metadata.catalog");
75
+ if (!handler) throw new Error("缺少 Tool Handler");
76
+
77
+ await expect(
78
+ handler.execute(
79
+ { fileId: seeded.id, resourceId: "evidence_file_1" },
80
+ executionContext(actor("user_reader")),
81
+ ),
82
+ ).resolves.toEqual({
83
+ fileId: seeded.id,
84
+ sha256: seeded.contentHash.value,
85
+ });
86
+ expect(runtime.auditSink.list()).toContainEqual(
87
+ expect.objectContaining({
88
+ action: "media.file.read",
89
+ outcome: "success",
90
+ target: {
91
+ type: "media.evidence-file",
92
+ id: "evidence_file_1",
93
+ },
94
+ metadata: {
95
+ fileId: seeded.id,
96
+ purpose: "evidence.original",
97
+ },
98
+ }),
99
+ );
100
+
101
+ await expect(
102
+ handler.execute(
103
+ { fileId: seeded.id, resourceId: "evidence_file_1" },
104
+ executionContext(actor("user_other")),
105
+ ),
106
+ ).rejects.toThrow("资源文件访问未授权");
107
+
108
+ const invalidScopeActor = actor("user_reader");
109
+ delete invalidScopeActor.scopeContext;
110
+ await expect(
111
+ handler.execute(
112
+ { fileId: seeded.id, resourceId: "evidence_file_1" },
113
+ executionContext(invalidScopeActor),
114
+ ),
115
+ ).rejects.toThrow("资源文件访问未授权");
116
+ });
117
+
118
+ test("未挂载 Storage 时 Tool Port 明确 fail-closed", async () => {
119
+ const declared = toolManifest();
120
+ const hosts = await initializeModuleHosts({
121
+ modules: [declared],
122
+ installations: [
123
+ {
124
+ manifest: declared,
125
+ setup(host) {
126
+ host.registerToolHandlers([
127
+ {
128
+ toolKey: "media.metadata.catalog",
129
+ scopeMode: "request",
130
+ async execute(_input, context) {
131
+ await context.storage.openResourceFile({} as never);
132
+ return {};
133
+ },
134
+ },
135
+ ]);
136
+ },
137
+ },
138
+ ],
139
+ });
140
+ const handler = createModuleToolHandlerMap(hosts, {
141
+ runtime: createServerRuntime(),
142
+ features: declared.features,
143
+ }).get("media.metadata.catalog");
144
+ if (!handler) throw new Error("缺少 Tool Handler");
145
+
146
+ await expect(
147
+ handler.execute({}, executionContext(actor("user_reader"))),
148
+ ).rejects.toThrow("模块 media 的存储 Port 未挂载");
149
+ });
150
+ });
151
+
152
+ let linkedFileId = "";
153
+
154
+ function actor(id: string): RequestActor {
155
+ return {
156
+ id,
157
+ type: "user",
158
+ name: id,
159
+ roleCodes: ["analyst"],
160
+ permissionKeys: ["media.read"],
161
+ ...buildActorScopeContexts(id, undefined, [
162
+ {
163
+ id: "role_analyst",
164
+ code: "analyst",
165
+ dataScope: "self",
166
+ departmentIds: [],
167
+ },
168
+ ]),
169
+ };
170
+ }
171
+
172
+ function executionContext(currentActor: RequestActor) {
173
+ const guardContext: RequestGuardContext = {
174
+ actor: currentActor,
175
+ requestId: `request_${currentActor.id}`,
176
+ startedAt: new Date().toISOString(),
177
+ };
178
+ return { guardContext, signal: new AbortController().signal };
179
+ }
180
+
181
+ function toolManifest(): ModuleManifest {
182
+ return {
183
+ name: "media",
184
+ version: "0.1.0",
185
+ label: "媒体",
186
+ description: "媒体测试模块",
187
+ dependencies: ["evidence"],
188
+ menus: [],
189
+ adminRoutes: [],
190
+ permissions: [
191
+ {
192
+ key: "media.read",
193
+ label: "读取媒体",
194
+ module: "media",
195
+ moduleLabel: "媒体",
196
+ resource: "file",
197
+ resourceLabel: "文件",
198
+ action: "read",
199
+ },
200
+ ],
201
+ apiPermissions: [],
202
+ features: [
203
+ {
204
+ key: featureKey("media.catalog"),
205
+ label: "媒体目录",
206
+ module: "media",
207
+ visible: "visible",
208
+ enabled: true,
209
+ stage: "stable",
210
+ },
211
+ ],
212
+ migrations: [],
213
+ schemaExports: [],
214
+ tasks: [],
215
+ tools: [
216
+ {
217
+ key: "media.metadata.catalog",
218
+ label: "媒体元数据",
219
+ description: "读取案件范围内媒体元数据",
220
+ inputSchemaKey: "media.metadata.input",
221
+ outputSchemaKey: "media.metadata.output",
222
+ operation: "background",
223
+ permissionKey: "media.read",
224
+ featureKey: "media.catalog",
225
+ auditAction: "media.file.read",
226
+ scopeMode: "request",
227
+ dataClassification: "sensitive",
228
+ idempotency: "supported",
229
+ approval: "none",
230
+ limits: {
231
+ maxDurationSeconds: 60,
232
+ maxInputBytes: 1024,
233
+ maxOutputBytes: 1024,
234
+ },
235
+ },
236
+ ],
237
+ providers: [],
238
+ auditActions: ["media.file.read"],
239
+ };
240
+ }
241
+
242
+ function evidenceManifest(): ModuleManifest {
243
+ return {
244
+ name: "evidence",
245
+ version: "0.1.0",
246
+ label: "物证",
247
+ description: "物证原件模块",
248
+ menus: [],
249
+ adminRoutes: [],
250
+ permissions: [],
251
+ apiPermissions: [],
252
+ features: [],
253
+ migrations: [],
254
+ schemaExports: [],
255
+ tasks: [],
256
+ tools: [],
257
+ providers: [],
258
+ auditActions: [],
259
+ };
260
+ }
261
+
262
+ function uploadPolicy() {
263
+ return {
264
+ purpose: "evidence.original",
265
+ maxByteSize: 1024,
266
+ maxPartByteSize: 512,
267
+ sessionTtlMs: 60_000,
268
+ allowedTypes: { "image/jpeg": ["jpg"] },
269
+ signature: "none" as const,
270
+ };
271
+ }
272
+
273
+ function createTestStorage(
274
+ policies: ConstructorParameters<typeof UploadService>[0]["policies"],
275
+ ): ModuleStorageServices {
276
+ const repository = new InMemoryUploadRepository();
277
+ const blobStore = new MemoryBlobStore();
278
+ return {
279
+ uploads: new UploadService({ repository, blobStore, policies }),
280
+ files: new FileService(repository, blobStore),
281
+ };
282
+ }
283
+
284
+ async function seed(storage: ModuleStorageServices) {
285
+ const data = new TextEncoder().encode("abc");
286
+ const sha256 = new Bun.CryptoHasher("sha256").update(data).digest("hex");
287
+ const session = await storage.uploads.create({
288
+ ownerId: "user_uploader",
289
+ purpose: "evidence.original",
290
+ filename: "photo.jpg",
291
+ mimeType: "image/jpeg",
292
+ expectedByteSize: data.byteLength,
293
+ expectedSha256: sha256,
294
+ });
295
+ await storage.uploads.appendPart({
296
+ sessionId: session.id,
297
+ ownerId: "user_uploader",
298
+ partNumber: 0,
299
+ byteOffset: 0,
300
+ byteSize: data.byteLength,
301
+ sha256,
302
+ body: new Blob([data]).stream(),
303
+ });
304
+ return storage.uploads.complete(session.id, "user_uploader");
305
+ }
@@ -1,6 +1,22 @@
1
+ import type { FeatureFlagDefinition } from "@southwind-ai/shared";
1
2
  import type { ModuleToolHandlers } from "../agent/tool-registry.js";
3
+ import type { createServerRuntime } from "../runtime.js";
2
4
  import type { InitializedModuleHosts } from "./initialize.js";
3
5
  import { toModuleActor } from "./request-context.js";
6
+ import {
7
+ createModuleStoragePort,
8
+ type ModuleStorageServices,
9
+ unavailableModuleStoragePort,
10
+ } from "./storage-port.js";
11
+ import { createModuleStorageScope } from "./storage-scope.js";
12
+
13
+ type ServerRuntime = ReturnType<typeof createServerRuntime>;
14
+
15
+ export interface ModuleToolHandlerMapContext {
16
+ readonly runtime: ServerRuntime;
17
+ readonly features: readonly FeatureFlagDefinition[];
18
+ readonly storage?: ModuleStorageServices;
19
+ }
4
20
 
5
21
  /**
6
22
  * 把模块经 Host 注册的 Agent Tool Handler 适配为 Agent 路由层的
@@ -8,18 +24,36 @@ import { toModuleActor } from "./request-context.js";
8
24
  */
9
25
  export function createModuleToolHandlerMap(
10
26
  hosts: InitializedModuleHosts,
27
+ hostContext: ModuleToolHandlerMapContext,
11
28
  ): ModuleToolHandlers {
12
29
  return new Map(
13
- hosts.toolHandlers.map(({ registration }) => [
30
+ hosts.toolHandlers.map(({ moduleName, registration }) => [
14
31
  registration.toolKey,
15
32
  {
16
33
  scopeMode: registration.scopeMode,
17
- execute: (input, context) =>
18
- registration.execute(input, {
34
+ execute: (input, context) => {
35
+ const storage = hostContext.storage
36
+ ? createModuleStoragePort(
37
+ hostContext.storage,
38
+ createModuleStorageScope({
39
+ moduleName,
40
+ purposes: hosts.uploadPurposesOf(moduleName),
41
+ resourceFileAccessPolicies:
42
+ hosts.resourceFileAccessPoliciesOf(moduleName),
43
+ guardContext: context.guardContext,
44
+ runtime: hostContext.runtime,
45
+ features: hostContext.features,
46
+ signal: context.signal,
47
+ }),
48
+ )
49
+ : unavailableModuleStoragePort(moduleName);
50
+ return registration.execute(input, {
19
51
  actor: toModuleActor(context.guardContext.actor),
20
52
  requestId: context.guardContext.requestId,
21
53
  signal: context.signal,
22
- }),
54
+ storage,
55
+ });
56
+ },
23
57
  },
24
58
  ]),
25
59
  );
@@ -0,0 +1,126 @@
1
+ import { expect, test } from "bun:test";
2
+ import type { ModuleManifest } from "@southwind-ai/modules";
3
+ import { featureKey } from "@southwind-ai/shared";
4
+ import { buildScopeContext } from "../data-access/context.js";
5
+ import { createFoundationSnapshot } from "../foundation.js";
6
+ import { createServerRuntime } from "../runtime.js";
7
+ import { FakeRouteApp } from "../system/route-test-app.js";
8
+ import { createSystemRepositories } from "../system/seed.js";
9
+ import { initializeModuleHosts } from "./initialize.js";
10
+ import { installModuleRoutes } from "./route-installer.js";
11
+
12
+ test("Composition Root 向业务 Handler 注入用户目录 Port", async () => {
13
+ const manifest = businessManifest();
14
+ const foundation = createFoundationSnapshot();
15
+ const repositories = createSystemRepositories(foundation);
16
+ const hosts = await initializeModuleHosts({
17
+ modules: [manifest],
18
+ installations: [
19
+ {
20
+ manifest,
21
+ setup(host) {
22
+ host.registerRoutes([
23
+ {
24
+ method: "GET",
25
+ path: "/api/case/members",
26
+ permissionKey: "case.member.read",
27
+ handler: (context) => context.userDirectory.list(),
28
+ },
29
+ ]);
30
+ },
31
+ },
32
+ ],
33
+ });
34
+ const runtime = createServerRuntime(
35
+ {},
36
+ {
37
+ featureCatalog: [...manifest.features, ...foundation.features],
38
+ featureResolver: {
39
+ resolve: (key) => ({ key, enabled: true, visible: "visible" }),
40
+ },
41
+ },
42
+ );
43
+ const app = new FakeRouteApp();
44
+ installModuleRoutes(hosts, app, {
45
+ runtime,
46
+ features: [...manifest.features, ...foundation.features],
47
+ userDirectory: { repositories },
48
+ });
49
+
50
+ const result = await app.invoke("GET", "/case/members", {
51
+ guardContext: {
52
+ requestId: "request-composition",
53
+ actor: {
54
+ id: "case_admin",
55
+ type: "user",
56
+ name: "案件管理员",
57
+ roleCodes: ["case-admin"],
58
+ permissionKeys: ["case.member.read", "system.user-directory.read"],
59
+ scopeContext: buildScopeContext("case_admin", "dept_platform", [
60
+ {
61
+ id: "role-case-admin",
62
+ code: "case-admin",
63
+ dataScope: "all",
64
+ departmentIds: [],
65
+ },
66
+ ]),
67
+ },
68
+ startedAt: "2026-07-25T00:00:00.000Z",
69
+ },
70
+ params: {},
71
+ query: {},
72
+ });
73
+
74
+ expect(result).toEqual({
75
+ items: [{ id: "user_dev_admin", displayName: "开发管理员" }],
76
+ total: 1,
77
+ page: 1,
78
+ pageSize: 20,
79
+ });
80
+ });
81
+
82
+ function businessManifest(): ModuleManifest {
83
+ return {
84
+ name: "case",
85
+ version: "0.1.0",
86
+ label: "案件",
87
+ description: "用户目录组合测试",
88
+ menus: [],
89
+ adminRoutes: [],
90
+ permissions: [
91
+ {
92
+ key: "case.member.read",
93
+ label: "查看成员",
94
+ module: "case",
95
+ moduleLabel: "案件",
96
+ resource: "member",
97
+ resourceLabel: "案件成员",
98
+ action: "read",
99
+ },
100
+ ],
101
+ apiPermissions: [
102
+ {
103
+ method: "GET",
104
+ path: "/api/case/members",
105
+ permissionKey: "case.member.read",
106
+ featureKey: "case.member",
107
+ },
108
+ ],
109
+ features: [
110
+ {
111
+ key: featureKey("case.member"),
112
+ label: "案件成员",
113
+ module: "case",
114
+ visible: "visible",
115
+ enabled: true,
116
+ stage: "stable",
117
+ },
118
+ ],
119
+ migrations: [],
120
+ schemaExports: [],
121
+ tasks: [],
122
+ tools: [],
123
+ providers: [],
124
+ auditActions: [],
125
+ };
126
+ }