python-platform 0.1.1__py3-none-any.whl

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 (344) hide show
  1. python_platform/__init__.py +445 -0
  2. python_platform/application/__init__.py +6 -0
  3. python_platform/application/build_spec.py +37 -0
  4. python_platform/application/builder.py +260 -0
  5. python_platform/application/composition.py +219 -0
  6. python_platform/application/runtime.py +546 -0
  7. python_platform/application/runtime_hooks.py +327 -0
  8. python_platform/application/state.py +216 -0
  9. python_platform/application_services/__init__.py +54 -0
  10. python_platform/application_services/catalog.py +500 -0
  11. python_platform/application_services/contracts.py +188 -0
  12. python_platform/application_services/dispatcher.py +423 -0
  13. python_platform/application_services/errors.py +89 -0
  14. python_platform/application_services/execution.py +199 -0
  15. python_platform/application_services/interceptors.py +44 -0
  16. python_platform/application_services/invocation.py +427 -0
  17. python_platform/application_services/policies.py +46 -0
  18. python_platform/application_services/seeding.py +72 -0
  19. python_platform/application_services/signature.py +49 -0
  20. python_platform/application_services/validation.py +84 -0
  21. python_platform/auditing/__init__.py +12 -0
  22. python_platform/auditing/contracts.py +39 -0
  23. python_platform/auditing/control.py +48 -0
  24. python_platform/auditing/sqlalchemy/__init__.py +6 -0
  25. python_platform/auditing/sqlalchemy/migrations/0001_platform_auditing.py +45 -0
  26. python_platform/auditing/sqlalchemy/migrations/__init__.py +1 -0
  27. python_platform/auditing/sqlalchemy/models.py +31 -0
  28. python_platform/auditing/sqlalchemy/module.py +32 -0
  29. python_platform/auditing/sqlalchemy/store.py +63 -0
  30. python_platform/authorization/__init__.py +38 -0
  31. python_platform/authorization/catalog.py +63 -0
  32. python_platform/authorization/contracts.py +241 -0
  33. python_platform/authorization/definition_discovery.py +81 -0
  34. python_platform/authorization/definitions.py +43 -0
  35. python_platform/authorization/errors.py +40 -0
  36. python_platform/background_execution/__init__.py +15 -0
  37. python_platform/background_execution/application.py +41 -0
  38. python_platform/background_execution/child.py +123 -0
  39. python_platform/background_execution/contracts.py +39 -0
  40. python_platform/background_execution/lifecycle.py +22 -0
  41. python_platform/background_execution/local.py +127 -0
  42. python_platform/background_execution/locks.py +31 -0
  43. python_platform/background_execution/management.py +17 -0
  44. python_platform/background_execution/module.py +10 -0
  45. python_platform/background_execution/permissions.py +14 -0
  46. python_platform/background_execution/processes.py +331 -0
  47. python_platform/background_jobs/__init__.py +31 -0
  48. python_platform/background_jobs/catalog.py +287 -0
  49. python_platform/background_jobs/contracts.py +202 -0
  50. python_platform/background_jobs/errors.py +28 -0
  51. python_platform/background_jobs/execution.py +201 -0
  52. python_platform/background_jobs/pgqueuer/UPSTREAM_LICENSE.txt +21 -0
  53. python_platform/background_jobs/pgqueuer/__init__.py +6 -0
  54. python_platform/background_jobs/pgqueuer/enqueue.py +82 -0
  55. python_platform/background_jobs/pgqueuer/migrations/0001_pgqueuer_1_3_2.py +63 -0
  56. python_platform/background_jobs/pgqueuer/migrations/__init__.py +1 -0
  57. python_platform/background_jobs/pgqueuer/module.py +102 -0
  58. python_platform/background_jobs/pgqueuer/options.py +70 -0
  59. python_platform/background_jobs/pgqueuer/runtime.py +479 -0
  60. python_platform/background_jobs/pgqueuer/sql/pgqueuer_1_3_2_install.sql +118 -0
  61. python_platform/background_jobs/pgqueuer/supervision.py +201 -0
  62. python_platform/background_workers/__init__.py +22 -0
  63. python_platform/background_workers/catalog.py +96 -0
  64. python_platform/background_workers/contracts.py +124 -0
  65. python_platform/background_workers/errors.py +20 -0
  66. python_platform/background_workers/execution.py +133 -0
  67. python_platform/background_workers/runtime.py +203 -0
  68. python_platform/caching/__init__.py +11 -0
  69. python_platform/caching/catalog.py +73 -0
  70. python_platform/caching/contracts.py +73 -0
  71. python_platform/caching/errors.py +20 -0
  72. python_platform/cli/__init__.py +87 -0
  73. python_platform/cli/errors.py +5 -0
  74. python_platform/cli/project.py +69 -0
  75. python_platform/cli/runtime.py +68 -0
  76. python_platform/configuration/__init__.py +21 -0
  77. python_platform/configuration/composition.py +65 -0
  78. python_platform/configuration/contracts.py +68 -0
  79. python_platform/configuration/dotenv_source.py +51 -0
  80. python_platform/configuration/environment_source.py +38 -0
  81. python_platform/configuration/immutability.py +124 -0
  82. python_platform/configuration/input_shape.py +58 -0
  83. python_platform/configuration/merge.py +103 -0
  84. python_platform/configuration/root.py +215 -0
  85. python_platform/configuration/sources.py +519 -0
  86. python_platform/configuration/values.py +427 -0
  87. python_platform/configuration/yaml_source.py +51 -0
  88. python_platform/developer_kit/__init__.py +1 -0
  89. python_platform/developer_kit/generation.py +182 -0
  90. python_platform/developer_kit/project_metadata.py +45 -0
  91. python_platform/developer_kit/source.py +53 -0
  92. python_platform/developer_kit/templates/module/cookiecutter.json +1 -0
  93. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/__init__.py.jinja +1 -0
  94. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/__init__.py.jinja +1 -0
  95. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/cache.py.jinja +10 -0
  96. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/events.py.jinja +24 -0
  97. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/integration.py.jinja +46 -0
  98. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/module.py.jinja +29 -0
  99. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/options.py.jinja +8 -0
  100. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/orders.py.jinja +81 -0
  101. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/tasks.py.jinja +86 -0
  102. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application_contracts/__init__.py.jinja +1 -0
  103. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application_contracts/module.py.jinja +10 -0
  104. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application_contracts/orders.py.jinja +36 -0
  105. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/__init__.py.jinja +1 -0
  106. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/module.py.jinja +10 -0
  107. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/orders.py.jinja +57 -0
  108. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/repository.py.jinja +12 -0
  109. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/seeding.py.jinja +19 -0
  110. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/settings.py.jinja +16 -0
  111. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/__init__.py.jinja +1 -0
  112. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/definitions.py.jinja +24 -0
  113. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/module.py.jinja +7 -0
  114. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/permissions.py.jinja +15 -0
  115. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/__init__.py.jinja +1 -0
  116. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/files.py.jinja +74 -0
  117. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/module.py.jinja +58 -0
  118. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/realtime.py.jinja +37 -0
  119. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/__init__.py.jinja +1 -0
  120. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/migrations/__init__.py.jinja +1 -0
  121. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/models.py.jinja +26 -0
  122. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/module.py.jinja +32 -0
  123. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/repository.py.jinja +49 -0
  124. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/tests/test_domain.py.jinja +18 -0
  125. python_platform/developer_kit/templates/project/cookiecutter.json +6 -0
  126. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.dockerignore +8 -0
  127. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.env.jinja +13 -0
  128. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.gitignore +6 -0
  129. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.python-version +1 -0
  130. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/Dockerfile +22 -0
  131. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/README.md +86 -0
  132. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/app.yaml.jinja +16 -0
  133. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/compose.dev.yaml.jinja +24 -0
  134. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/compose.production.yaml.jinja +13 -0
  135. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/pyproject.toml.jinja +28 -0
  136. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/src/host/__init__.py.jinja +1 -0
  137. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/src/host/main.py.jinja +52 -0
  138. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/src/host/module.py.jinja +38 -0
  139. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/tests/conftest.py.jinja +8 -0
  140. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/tests/host/test_http.py.jinja +101 -0
  141. python_platform/developer_kit/wiring.py +85 -0
  142. python_platform/diagnostics/__init__.py +23 -0
  143. python_platform/diagnostics/journal.py +174 -0
  144. python_platform/diagnostics/model.py +83 -0
  145. python_platform/diagnostics/source.py +25 -0
  146. python_platform/distributed_lock/__init__.py +6 -0
  147. python_platform/distributed_lock/contracts.py +20 -0
  148. python_platform/distributed_lock/options.py +19 -0
  149. python_platform/domain/__init__.py +13 -0
  150. python_platform/domain/aggregates.py +64 -0
  151. python_platform/domain/entities.py +33 -0
  152. python_platform/domain/errors.py +12 -0
  153. python_platform/domain/value_objects.py +31 -0
  154. python_platform/errors/__init__.py +75 -0
  155. python_platform/errors/base.py +13 -0
  156. python_platform/errors/business.py +53 -0
  157. python_platform/errors/configuration.py +119 -0
  158. python_platform/errors/diagnostics.py +12 -0
  159. python_platform/errors/lifecycle.py +164 -0
  160. python_platform/errors/modularity.py +100 -0
  161. python_platform/errors/services.py +100 -0
  162. python_platform/events/__init__.py +25 -0
  163. python_platform/events/aggregate.py +39 -0
  164. python_platform/events/catalog.py +136 -0
  165. python_platform/events/contracts.py +39 -0
  166. python_platform/events/contribution.py +128 -0
  167. python_platform/events/discovery.py +105 -0
  168. python_platform/events/errors.py +48 -0
  169. python_platform/events/runtime.py +192 -0
  170. python_platform/fastapi/__init__.py +49 -0
  171. python_platform/fastapi/action.py +175 -0
  172. python_platform/fastapi/adapter.py +381 -0
  173. python_platform/fastapi/application_services.py +647 -0
  174. python_platform/fastapi/background.py +42 -0
  175. python_platform/fastapi/contracts.py +278 -0
  176. python_platform/fastapi/errors.py +32 -0
  177. python_platform/fastapi/filters.py +111 -0
  178. python_platform/fastapi/health.py +44 -0
  179. python_platform/fastapi/http.py +55 -0
  180. python_platform/fastapi/http_router.py +212 -0
  181. python_platform/fastapi/manual_action.py +105 -0
  182. python_platform/fastapi/middleware.py +93 -0
  183. python_platform/fastapi/parameters.py +97 -0
  184. python_platform/fastapi/realtime/__init__.py +13 -0
  185. python_platform/fastapi/realtime/authentication.py +181 -0
  186. python_platform/fastapi/realtime/connection.py +166 -0
  187. python_platform/fastapi/realtime/module.py +41 -0
  188. python_platform/fastapi/realtime/options.py +50 -0
  189. python_platform/fastapi/realtime/runtime.py +423 -0
  190. python_platform/fastapi/request_context.py +244 -0
  191. python_platform/fastapi/route_integrity.py +88 -0
  192. python_platform/fastapi/routing.py +410 -0
  193. python_platform/fastapi/server.py +181 -0
  194. python_platform/fastapi/settings.py +40 -0
  195. python_platform/fastapi/tracing.py +62 -0
  196. python_platform/fastapi/transfer.py +128 -0
  197. python_platform/fastapi/upload_limits.py +63 -0
  198. python_platform/fastapi/uploads.py +94 -0
  199. python_platform/hosted_services/__init__.py +29 -0
  200. python_platform/hosted_services/bridge.py +420 -0
  201. python_platform/hosted_services/catalog.py +259 -0
  202. python_platform/hosted_services/contracts.py +55 -0
  203. python_platform/hosted_services/errors.py +53 -0
  204. python_platform/hosted_services/options.py +17 -0
  205. python_platform/hosted_services/runtime.py +267 -0
  206. python_platform/hosted_services/state.py +40 -0
  207. python_platform/hosting/__init__.py +4 -0
  208. python_platform/hosting/instance.py +40 -0
  209. python_platform/identity/__init__.py +73 -0
  210. python_platform/identity/application.py +287 -0
  211. python_platform/identity/contracts.py +283 -0
  212. python_platform/identity/errors.py +28 -0
  213. python_platform/identity/http_api.py +90 -0
  214. python_platform/identity/module.py +46 -0
  215. python_platform/identity/passwords.py +34 -0
  216. python_platform/identity/permissions.py +14 -0
  217. python_platform/identity/services.py +108 -0
  218. python_platform/identity/sqlalchemy/__init__.py +5 -0
  219. python_platform/identity/sqlalchemy/migrations/0001_platform_identity.py +151 -0
  220. python_platform/identity/sqlalchemy/migrations/0002_physical_delete.py +42 -0
  221. python_platform/identity/sqlalchemy/migrations/__init__.py +1 -0
  222. python_platform/identity/sqlalchemy/models.py +85 -0
  223. python_platform/identity/sqlalchemy/module.py +62 -0
  224. python_platform/identity/sqlalchemy/stores.py +526 -0
  225. python_platform/identity/tokens.py +106 -0
  226. python_platform/invocation/__init__.py +3 -0
  227. python_platform/invocation/callables.py +171 -0
  228. python_platform/invocation/contracts.py +33 -0
  229. python_platform/invocation/entries.py +54 -0
  230. python_platform/invocation/function_runtime.py +48 -0
  231. python_platform/invocation/interception.py +184 -0
  232. python_platform/lifecycle/__init__.py +25 -0
  233. python_platform/lifecycle/composition.py +35 -0
  234. python_platform/lifecycle/context.py +31 -0
  235. python_platform/lifecycle/runtime.py +43 -0
  236. python_platform/lifecycle/state.py +20 -0
  237. python_platform/modularity/__init__.py +15 -0
  238. python_platform/modularity/contracts.py +90 -0
  239. python_platform/modularity/discovery.py +143 -0
  240. python_platform/modularity/graph.py +334 -0
  241. python_platform/modularity/registry.py +100 -0
  242. python_platform/modularity/selection.py +16 -0
  243. python_platform/notifications/__init__.py +19 -0
  244. python_platform/notifications/catalog.py +46 -0
  245. python_platform/notifications/contracts.py +107 -0
  246. python_platform/observability/__init__.py +5 -0
  247. python_platform/observability/context.py +43 -0
  248. python_platform/observability/export.py +73 -0
  249. python_platform/observability/formatting.py +89 -0
  250. python_platform/observability/logging.py +118 -0
  251. python_platform/observability/options.py +45 -0
  252. python_platform/observability/tracing.py +80 -0
  253. python_platform/options/__init__.py +19 -0
  254. python_platform/options/aliases.py +331 -0
  255. python_platform/options/contribution.py +62 -0
  256. python_platform/options/immutability.py +48 -0
  257. python_platform/options/input_keys.py +214 -0
  258. python_platform/options/issues.py +335 -0
  259. python_platform/options/models.py +114 -0
  260. python_platform/options/registry.py +280 -0
  261. python_platform/options/schema.py +488 -0
  262. python_platform/options/validation.py +120 -0
  263. python_platform/py.typed +0 -0
  264. python_platform/realtime/__init__.py +12 -0
  265. python_platform/realtime/contracts.py +28 -0
  266. python_platform/realtime/diagnostics.py +37 -0
  267. python_platform/realtime/messages.py +113 -0
  268. python_platform/redis/__init__.py +6 -0
  269. python_platform/redis/distributed_lock.py +212 -0
  270. python_platform/redis/lease_lock.py +36 -0
  271. python_platform/redis/module.py +50 -0
  272. python_platform/redis/notification_runtime.py +182 -0
  273. python_platform/redis/notifications.py +25 -0
  274. python_platform/redis/options.py +35 -0
  275. python_platform/redis/runtime.py +116 -0
  276. python_platform/services/__init__.py +39 -0
  277. python_platform/services/application_bindings.py +221 -0
  278. python_platform/services/arbitration.py +381 -0
  279. python_platform/services/binding.py +102 -0
  280. python_platform/services/contribution.py +438 -0
  281. python_platform/services/convention.py +292 -0
  282. python_platform/services/convention_contracts.py +94 -0
  283. python_platform/services/exposure.py +23 -0
  284. python_platform/services/framework_provider.py +178 -0
  285. python_platform/services/native_graph.py +172 -0
  286. python_platform/services/provider.py +204 -0
  287. python_platform/services/registration.py +101 -0
  288. python_platform/services/runtime.py +298 -0
  289. python_platform/settings/__init__.py +30 -0
  290. python_platform/settings/application.py +95 -0
  291. python_platform/settings/binding.py +33 -0
  292. python_platform/settings/catalog.py +121 -0
  293. python_platform/settings/changes.py +14 -0
  294. python_platform/settings/contracts.py +115 -0
  295. python_platform/settings/definition_discovery.py +71 -0
  296. python_platform/settings/definitions.py +41 -0
  297. python_platform/settings/errors.py +22 -0
  298. python_platform/settings/handlers.py +43 -0
  299. python_platform/settings/management.py +57 -0
  300. python_platform/settings/manager.py +89 -0
  301. python_platform/settings/module.py +7 -0
  302. python_platform/settings/notifications.py +39 -0
  303. python_platform/settings/permissions.py +14 -0
  304. python_platform/settings/provider.py +74 -0
  305. python_platform/settings/refresh.py +140 -0
  306. python_platform/settings/refresh_module.py +45 -0
  307. python_platform/settings/sqlalchemy/__init__.py +5 -0
  308. python_platform/settings/sqlalchemy/migrations/0001_platform_settings.py +31 -0
  309. python_platform/settings/sqlalchemy/migrations/0002_physical_delete.py +32 -0
  310. python_platform/settings/sqlalchemy/migrations/0003_version_tokens.py +39 -0
  311. python_platform/settings/sqlalchemy/migrations/__init__.py +1 -0
  312. python_platform/settings/sqlalchemy/models.py +36 -0
  313. python_platform/settings/sqlalchemy/module.py +36 -0
  314. python_platform/settings/sqlalchemy/store.py +86 -0
  315. python_platform/settings/store.py +16 -0
  316. python_platform/settings/values.py +39 -0
  317. python_platform/sqlalchemy/__init__.py +51 -0
  318. python_platform/sqlalchemy/alembic_runtime/__init__.py +1 -0
  319. python_platform/sqlalchemy/alembic_runtime/env.py +27 -0
  320. python_platform/sqlalchemy/alembic_runtime/script.py.mako +14 -0
  321. python_platform/sqlalchemy/auditing.py +48 -0
  322. python_platform/sqlalchemy/errors.py +85 -0
  323. python_platform/sqlalchemy/metadata.py +538 -0
  324. python_platform/sqlalchemy/migration.py +346 -0
  325. python_platform/sqlalchemy/module.py +48 -0
  326. python_platform/sqlalchemy/module_migration.py +148 -0
  327. python_platform/sqlalchemy/options.py +66 -0
  328. python_platform/sqlalchemy/repository.py +33 -0
  329. python_platform/sqlalchemy/runtime.py +85 -0
  330. python_platform/sqlalchemy/session_provider.py +45 -0
  331. python_platform/sqlalchemy/unit_of_work.py +97 -0
  332. python_platform/testing/__init__.py +5 -0
  333. python_platform/testing/runtime.py +112 -0
  334. python_platform/unit_of_work/__init__.py +14 -0
  335. python_platform/unit_of_work/contracts.py +223 -0
  336. python_platform/unit_of_work/errors.py +27 -0
  337. python_platform/unit_of_work/manager.py +210 -0
  338. python_platform/unit_of_work/options.py +92 -0
  339. python_platform-0.1.1.dist-info/METADATA +122 -0
  340. python_platform-0.1.1.dist-info/RECORD +344 -0
  341. python_platform-0.1.1.dist-info/WHEEL +4 -0
  342. python_platform-0.1.1.dist-info/entry_points.txt +9 -0
  343. python_platform-0.1.1.dist-info/licenses/LICENSE +7 -0
  344. python_platform-0.1.1.dist-info/licenses/src/python_platform/background_jobs/pgqueuer/UPSTREAM_LICENSE.txt +21 -0
@@ -0,0 +1,45 @@
1
+ """模块生成时维护标准打包与 entry point 声明,保留其他 TOML 内容。"""
2
+
3
+ import json
4
+ import re
5
+ import tomllib
6
+
7
+ from ..cli.errors import CommandError
8
+ from ..cli.project import MODULE_ENTRY_POINT_GROUP
9
+
10
+
11
+ def add_module_metadata(source: str, package: str, class_prefix: str) -> str:
12
+ project = tomllib.loads(source)
13
+ backend = project.get("tool", {}).get("uv", {}).get("build-backend", {})
14
+ names = backend.get("module-name")
15
+ if backend.get("module-root") != "src" or not isinstance(names, (str, list)):
16
+ raise CommandError("Module generation requires explicit uv module-root=src and module-name")
17
+ packages = [names] if isinstance(names, str) else list(names)
18
+ if "modules" not in packages:
19
+ packages.append("modules")
20
+ section = re.search(r"(?ms)^\[tool\.uv\.build-backend\][ \t]*\r?\n(.*?)(?=^\[|\Z)", source)
21
+ if section is None:
22
+ raise CommandError("Cannot locate uv build-backend table")
23
+ body, count = re.subn(
24
+ r'(?m)^module-name\s*=\s*(?:"[^"\n]*"|\[[^\]\n]*\])',
25
+ "module-name = " + json.dumps(packages),
26
+ section.group(1),
27
+ )
28
+ if count != 1:
29
+ raise CommandError("Keep module-name on one line to allow safe package wiring")
30
+ updated = source[: section.start(1)] + body + source[section.end(1) :]
31
+ entries = project["project"].get("entry-points", {}).get(MODULE_ENTRY_POINT_GROUP, {})
32
+ if package in entries:
33
+ raise CommandError(f"Module alias already exists: {package}")
34
+ header = f'[project.entry-points."{MODULE_ENTRY_POINT_GROUP}"]'
35
+ declaration = (
36
+ f'{package} = "modules.{package}.sqlalchemy.module:{class_prefix}SqlAlchemyModule"\n'
37
+ )
38
+ if MODULE_ENTRY_POINT_GROUP in project["project"].get("entry-points", {}):
39
+ if header not in updated:
40
+ raise CommandError("Module entry point table must use the standard quoted group name")
41
+ updated = updated.replace(header, header + "\n" + declaration, 1)
42
+ else:
43
+ updated += "\n" + header + "\n" + declaration
44
+ tomllib.loads(updated)
45
+ return updated
@@ -0,0 +1,53 @@
1
+ """生成项目固定 CLI 版本;只有显式本地 wheel 才覆盖标准索引来源。"""
2
+
3
+ from __future__ import annotations
4
+
5
+ import importlib.metadata as metadata
6
+ import json
7
+ import zipfile
8
+ from dataclasses import dataclass
9
+ from email.parser import Parser
10
+ from pathlib import Path
11
+
12
+ from ..cli.errors import CommandError
13
+
14
+
15
+ @dataclass(frozen=True, slots=True)
16
+ class FrameworkSource:
17
+ version: str
18
+ uv_source: str
19
+ wheel: Path | None = None
20
+
21
+
22
+ def framework_source(wheel: Path | None) -> FrameworkSource:
23
+ distribution = metadata.distribution("python-platform")
24
+ if wheel is not None:
25
+ source = _wheel_source(wheel)
26
+ if source.version != distribution.version:
27
+ raise CommandError(
28
+ "Framework wheel version must match the CLI and its bundled templates"
29
+ )
30
+ return source
31
+ # 安装来源不拥有生成项目的依赖契约;Git/editable CLI 也必须显式选择本地 wheel。
32
+ return FrameworkSource(distribution.version, "")
33
+
34
+
35
+ def _wheel_source(path: Path) -> FrameworkSource:
36
+ wheel = path.resolve()
37
+ if not wheel.is_file() or wheel.suffix != ".whl":
38
+ raise CommandError("--framework-wheel must identify an existing wheel")
39
+ try:
40
+ with zipfile.ZipFile(wheel) as archive:
41
+ members = [name for name in archive.namelist() if name.endswith(".dist-info/METADATA")]
42
+ if len(members) != 1:
43
+ raise CommandError(
44
+ "Framework wheel must have exactly one distribution metadata file"
45
+ )
46
+ document = Parser().parsestr(archive.read(members[0]).decode("utf-8"))
47
+ except (OSError, ValueError, zipfile.BadZipFile):
48
+ raise CommandError("Cannot read framework wheel metadata") from None
49
+ if document["Name"] != "python-platform" or not document["Version"]:
50
+ raise CommandError("Wheel must contain the python-platform distribution")
51
+ return FrameworkSource(
52
+ document["Version"], f"{{ path = {json.dumps('vendor/' + wheel.name)} }}", wheel
53
+ )
@@ -0,0 +1 @@
1
+ {"module_name": "orders", "class_prefix": "Orders"}
@@ -0,0 +1 @@
1
+ """{{ cookiecutter.class_prefix }} 业务模块;各层通过正式 Module 组合。"""
@@ -0,0 +1 @@
1
+ """应用编排、提交后处理及后台业务,不依赖具体数据库或 Host。"""
@@ -0,0 +1,10 @@
1
+ """缓存契约只声明一次;提交后处理负责失效。"""
2
+
3
+ from datetime import timedelta
4
+
5
+ from python_platform.caching import CacheDefinition
6
+
7
+ from ..application_contracts.orders import OrderView
8
+ from ..domain_shared.definitions import MODULE_NAME
9
+
10
+ ORDER_CACHE = CacheDefinition(f"{MODULE_NAME}.view", OrderView, ttl=timedelta(minutes=1))
@@ -0,0 +1,24 @@
1
+ """提交后失效缓存与通知;失败不伪装成数据库未提交,不承诺跨进程事件投递。"""
2
+
3
+ from python_platform import LocalEventPhase, local_event_handler
4
+ from python_platform.caching import DistributedCache
5
+ from python_platform.realtime import RealtimePublisher
6
+
7
+ from ..domain.orders import OrderChanged
8
+ from ..domain_shared.definitions import ORDER_CHANGED_MESSAGE
9
+ from .cache import ORDER_CACHE
10
+
11
+
12
+ @local_event_handler(phase=LocalEventPhase.AFTER_COMMIT)
13
+ class OrderChangedHandler:
14
+ def __init__(self, cache: DistributedCache, realtime: RealtimePublisher) -> None:
15
+ self._cache, self._realtime = cache, realtime
16
+
17
+ async def handle(self, event: OrderChanged) -> None:
18
+ await self._cache.remove(ORDER_CACHE, str(event.order_id))
19
+ if event.user_id is not None:
20
+ await self._realtime.send_to_user(
21
+ event.user_id,
22
+ message_type=ORDER_CHANGED_MESSAGE,
23
+ payload={"id": str(event.order_id), "status": event.status.value},
24
+ )
@@ -0,0 +1,46 @@
1
+ """可选外部线程集成示例;替换线程生产逻辑即可接入 SDK,不另建容器或任务执行器。"""
2
+
3
+ import asyncio
4
+ import logging
5
+ from threading import Event, Thread
6
+
7
+ from python_platform import (
8
+ HostedService,
9
+ HostedServiceContext,
10
+ HostedServiceInvocationRejectedError,
11
+ Options,
12
+ ShutdownReason,
13
+ )
14
+
15
+ from .options import {{ cookiecutter.class_prefix }}Options
16
+
17
+
18
+ async def observe_integration() -> None:
19
+ logging.getLogger(__name__).info("External integration callback received")
20
+
21
+
22
+ class OrderIntegrationService(HostedService):
23
+ def __init__(self, options: Options[{{ cookiecutter.class_prefix }}Options]) -> None:
24
+ self._options = options
25
+ self._stop = Event()
26
+ self._thread: Thread | None = None
27
+
28
+ async def start(self, context: HostedServiceContext) -> None:
29
+ if self._options.value.integration_enabled:
30
+ await context.call(observe_integration)
31
+ self._thread = Thread(target=self._receive, args=(context,), name=__name__)
32
+ self._thread.start()
33
+
34
+ def _receive(self, context: HostedServiceContext) -> None:
35
+ # submit_call 只能来自外部线程;Future.result 等待同一正式 invocation 完成。
36
+ try:
37
+ context.submit_call(observe_integration).result()
38
+ except HostedServiceInvocationRejectedError:
39
+ return # Application 关闭已撤销调用许可。
40
+ self._stop.wait()
41
+
42
+ async def stop(self, reason: ShutdownReason) -> None:
43
+ self._stop.set()
44
+ if self._thread is not None:
45
+ await asyncio.to_thread(self._thread.join)
46
+ self._thread = None
@@ -0,0 +1,29 @@
1
+ """模块贡献自己的服务与任务;provider 选择留给 Host。"""
2
+
3
+ from python_platform import AppModule, BackgroundExecutionOptions, ConfigureContext
4
+
5
+ from ..application_contracts.module import {{ cookiecutter.class_prefix }}ApplicationContractsModule
6
+ from ..domain.module import {{ cookiecutter.class_prefix }}DomainModule
7
+ from ..domain_shared.definitions import MODULE_NAME
8
+ from .cache import ORDER_CACHE
9
+ from .integration import OrderIntegrationService
10
+ from .options import {{ cookiecutter.class_prefix }}Options
11
+ from .tasks import APPROVE_JOB, MAINTENANCE_WORKER, ORDER_SCHEDULE
12
+
13
+
14
+ class {{ cookiecutter.class_prefix }}ApplicationModule(AppModule):
15
+ dependencies = ({{ cookiecutter.class_prefix }}DomainModule, {{ cookiecutter.class_prefix }}ApplicationContractsModule)
16
+ scan_packages = (__package__ + ".orders", __package__ + ".events")
17
+ cache_definitions = (ORDER_CACHE,)
18
+ background_job_definitions = (APPROVE_JOB,)
19
+ background_job_schedules = (ORDER_SCHEDULE,)
20
+ background_worker_definitions = (MAINTENANCE_WORKER,)
21
+ hosted_services = (OrderIntegrationService,)
22
+
23
+ def configure(self, context: ConfigureContext) -> None:
24
+ context.configure({{ cookiecutter.class_prefix }}Options, section=MODULE_NAME)
25
+ # Worker 默认禁用;开发者显式改为 true 后才运行。
26
+ context.configure(
27
+ BackgroundExecutionOptions,
28
+ values={"workers": {MAINTENANCE_WORKER.name: {"enabled": False}}},
29
+ )
@@ -0,0 +1,8 @@
1
+ """typed 业务配置;从本模块 YAML 节读取,非法值在 build 失败。"""
2
+
3
+ from python_platform import BaseOptions
4
+
5
+
6
+ class {{ cookiecutter.class_prefix }}Options(BaseOptions):
7
+ allow_background_approval: bool = True
8
+ integration_enabled: bool = False
@@ -0,0 +1,81 @@
1
+ """正式应用服务共用验证、授权、审计和 UoW;业务层不接触框架执行器。"""
2
+
3
+ import logging
4
+ from uuid import UUID, uuid4
5
+
6
+ from python_platform import ApplicationService, CurrentUser
7
+ from python_platform.authorization import authorize
8
+ from python_platform.background_jobs import BackgroundJobEnqueuer
9
+ from python_platform.caching import DistributedCache
10
+ from python_platform.errors import BusinessError
11
+ from python_platform.errors.base import ResourceConflictError, ResourceNotFoundError
12
+
13
+ from ..application_contracts.orders import (
14
+ ApproveOrder,
15
+ CreateOrder,
16
+ {{ cookiecutter.class_prefix }}ApplicationService,
17
+ OrderView,
18
+ )
19
+ from ..domain.orders import Order, OrderTitle
20
+ from ..domain.repository import OrderRepository
21
+ from ..domain.settings import APPROVAL_ENABLED
22
+ from ..domain_shared.definitions import APPROVAL_DISABLED, ORDERS_READ, ORDERS_WRITE
23
+ from .cache import ORDER_CACHE
24
+ from .tasks import APPROVE_JOB, ApprovalPayload
25
+
26
+ logger = logging.getLogger(__name__)
27
+
28
+
29
+ class _{{ cookiecutter.class_prefix }}ApplicationService(ApplicationService, {{ cookiecutter.class_prefix }}ApplicationService):
30
+ def __init__(
31
+ self,
32
+ repository: OrderRepository,
33
+ cache: DistributedCache,
34
+ jobs: BackgroundJobEnqueuer,
35
+ user: CurrentUser,
36
+ ) -> None:
37
+ self._repository, self._cache, self._jobs, self._user = repository, cache, jobs, user
38
+
39
+ @authorize(ORDERS_WRITE)
40
+ async def create(self, command: CreateOrder) -> OrderView:
41
+ order = Order.create(uuid4(), OrderTitle(value=command.title))
42
+ await self._repository.save(order)
43
+ logger.info("Order created")
44
+ return OrderView.model_validate(order)
45
+
46
+ @authorize(ORDERS_READ)
47
+ async def get(self, id: UUID) -> OrderView:
48
+ cached = await self._cache.get(ORDER_CACHE, str(id))
49
+ if cached is not None:
50
+ return cached
51
+ order = await self._repository.get(id)
52
+ if order is None:
53
+ raise ResourceNotFoundError("Order not found")
54
+ view = OrderView.model_validate(order)
55
+ await self._cache.set(ORDER_CACHE, str(id), view)
56
+ return view
57
+
58
+ @authorize(ORDERS_READ)
59
+ async def get_list(self) -> tuple[OrderView, ...]:
60
+ return tuple(OrderView.model_validate(order) for order in await self._repository.get_list())
61
+
62
+ @authorize(ORDERS_WRITE)
63
+ async def approve(self, id: UUID, command: ApproveOrder) -> OrderView:
64
+ if not await self.setting_provider.get(APPROVAL_ENABLED):
65
+ raise BusinessError(APPROVAL_DISABLED)
66
+ order = await self._repository.get(id)
67
+ if order is None:
68
+ raise ResourceNotFoundError("Order not found")
69
+ if order.version != command.expected_version:
70
+ raise ResourceConflictError("Order version changed")
71
+ order.approve(user_id=self._user.user_id)
72
+ await self._repository.save(order)
73
+ logger.info("Order approved")
74
+ return OrderView.model_validate(order)
75
+
76
+ @authorize(ORDERS_WRITE)
77
+ async def queue_approval(self, id: UUID) -> str:
78
+ if await self._repository.get(id) is None:
79
+ raise ResourceNotFoundError("Order not found")
80
+ # 入队参与本方法原生事务;失败时订单业务与队列写入一起回滚。
81
+ return await self._jobs.enqueue(APPROVE_JOB, ApprovalPayload(order_id=id))
@@ -0,0 +1,86 @@
1
+ """非持久 Worker 与持久 Job 分开;Job 重复投递由业务状态保证幂等。"""
2
+
3
+ import logging
4
+ from datetime import timedelta
5
+ from uuid import UUID
6
+
7
+ from pydantic import BaseModel, ConfigDict
8
+
9
+ from python_platform import (
10
+ BackgroundWorker,
11
+ BackgroundWorkerContext,
12
+ BackgroundWorkerDefinition,
13
+ Options,
14
+ )
15
+ from python_platform.background_jobs import (
16
+ BackgroundJobContext,
17
+ BackgroundJobDefinition,
18
+ BackgroundJobHandler,
19
+ BackgroundJobSchedule,
20
+ )
21
+ from python_platform.distributed_lock import DistributedLock
22
+ from python_platform.settings import SettingProvider
23
+
24
+ from ..domain.repository import OrderRepository
25
+ from ..domain.settings import APPROVAL_ENABLED
26
+ from ..domain_shared.definitions import MODULE_NAME, OrderStatus
27
+ from .options import {{ cookiecutter.class_prefix }}Options
28
+
29
+ logger = logging.getLogger(__name__)
30
+
31
+
32
+ class ApprovalPayload(BaseModel):
33
+ model_config = ConfigDict(frozen=True, extra="forbid")
34
+ order_id: UUID | None = None
35
+
36
+
37
+ class ApprovalJob(BackgroundJobHandler[ApprovalPayload]):
38
+ def __init__(
39
+ self,
40
+ repository: OrderRepository,
41
+ settings: SettingProvider,
42
+ options: Options[{{ cookiecutter.class_prefix }}Options],
43
+ ) -> None:
44
+ self._repository, self._settings, self._options = repository, settings, options
45
+
46
+ async def execute(self, payload: ApprovalPayload, context: BackgroundJobContext) -> None:
47
+ if payload.order_id is None:
48
+ logger.info("Scheduled order count: %s", len(await self._repository.get_list()))
49
+ return
50
+ if self._options.value.allow_background_approval and await self._settings.get(
51
+ APPROVAL_ENABLED
52
+ ):
53
+ order = await self._repository.get(payload.order_id)
54
+ if order is not None and order.status is OrderStatus.PENDING:
55
+ order.approve()
56
+ await self._repository.save(order)
57
+
58
+
59
+ class OrderMaintenanceWorker(BackgroundWorker):
60
+ def __init__(self, repository: OrderRepository, lock: DistributedLock) -> None:
61
+ self._repository, self._lock = repository, lock
62
+
63
+ async def run_iteration(self, context: BackgroundWorkerContext) -> None:
64
+ # 租约失效由框架请求取消并等待本轮清理;业务不吞 CancelledError。
65
+ async with self._lock.acquire(f"{MODULE_NAME}:maintenance") as acquired:
66
+ if acquired:
67
+ orders = await self._repository.get_list()
68
+ logger.info("Order maintenance completed: %s", len(orders))
69
+
70
+
71
+ APPROVE_JOB = BackgroundJobDefinition(
72
+ f"{MODULE_NAME}.approve", 1, ApprovalPayload, ApprovalJob, timedelta(seconds=30), current=True
73
+ )
74
+ ORDER_SCHEDULE = BackgroundJobSchedule(
75
+ f"{MODULE_NAME}.summary",
76
+ "*/5 * * * *",
77
+ APPROVE_JOB.name,
78
+ APPROVE_JOB.version,
79
+ ApprovalPayload().model_dump_json().encode(),
80
+ )
81
+ MAINTENANCE_WORKER = BackgroundWorkerDefinition(
82
+ f"{MODULE_NAME}.maintenance",
83
+ OrderMaintenanceWorker,
84
+ timedelta(seconds=30),
85
+ timedelta(seconds=10),
86
+ )
@@ -0,0 +1 @@
1
+ """供调用者使用的 DTO 和服务契约。"""
@@ -0,0 +1,10 @@
1
+ """契约层不反向依赖应用实现或 provider。"""
2
+
3
+ from python_platform import AppModule
4
+
5
+ from ..domain_shared.module import {{ cookiecutter.class_prefix }}DomainSharedModule
6
+
7
+
8
+ class {{ cookiecutter.class_prefix }}ApplicationContractsModule(AppModule):
9
+ dependencies = ({{ cookiecutter.class_prefix }}DomainSharedModule,)
10
+ scan_packages = (__package__ + ".orders",)
@@ -0,0 +1,36 @@
1
+ """DTO 只依赖共享定义;HTTP 与进程内调用共用同一验证管线。"""
2
+
3
+ from typing import Protocol
4
+ from uuid import UUID
5
+
6
+ from pydantic import BaseModel, ConfigDict, Field
7
+
8
+ from python_platform import ApplicationServiceContract
9
+
10
+ from ..domain_shared.definitions import TITLE_MAX_LENGTH, OrderStatus
11
+
12
+
13
+ class CreateOrder(BaseModel):
14
+ model_config = ConfigDict(frozen=True, extra="forbid")
15
+ title: str = Field(min_length=1, max_length=TITLE_MAX_LENGTH)
16
+
17
+
18
+ class ApproveOrder(BaseModel):
19
+ model_config = ConfigDict(frozen=True, extra="forbid")
20
+ expected_version: int = Field(ge=1)
21
+
22
+
23
+ class OrderView(BaseModel):
24
+ model_config = ConfigDict(frozen=True, from_attributes=True)
25
+ id: UUID
26
+ title: str
27
+ status: OrderStatus
28
+ version: int
29
+
30
+
31
+ class {{ cookiecutter.class_prefix }}ApplicationService(ApplicationServiceContract, Protocol):
32
+ async def create(self, command: CreateOrder) -> OrderView: ...
33
+ async def get(self, id: UUID) -> OrderView: ...
34
+ async def get_list(self) -> tuple[OrderView, ...]: ...
35
+ async def approve(self, id: UUID, command: ApproveOrder) -> OrderView: ...
36
+ async def queue_approval(self, id: UUID) -> str: ...
@@ -0,0 +1 @@
1
+ """聚合、仓储契约、设置定义与幂等 Seed。"""
@@ -0,0 +1,10 @@
1
+ """扫描仅包含实际业务声明,模块 tests 不参与服务发现。"""
2
+
3
+ from python_platform import AppModule
4
+
5
+ from ..domain_shared.module import {{ cookiecutter.class_prefix }}DomainSharedModule
6
+
7
+
8
+ class {{ cookiecutter.class_prefix }}DomainModule(AppModule):
9
+ dependencies = ({{ cookiecutter.class_prefix }}DomainSharedModule,)
10
+ scan_packages = (__package__ + ".settings", __package__ + ".seeding")
@@ -0,0 +1,57 @@
1
+ """聚合拥有审批规则、版本及事件;持久化实现只负责映射。"""
2
+
3
+ from __future__ import annotations
4
+
5
+ from dataclasses import dataclass
6
+ from uuid import UUID
7
+
8
+ from pydantic import Field
9
+
10
+ from python_platform import AggregateRoot, ValueObject
11
+ from python_platform.errors import BusinessError
12
+
13
+ from ..domain_shared.definitions import ALREADY_APPROVED, TITLE_MAX_LENGTH, OrderStatus
14
+
15
+
16
+ class OrderTitle(ValueObject):
17
+ value: str = Field(min_length=1, max_length=TITLE_MAX_LENGTH)
18
+
19
+
20
+ @dataclass(frozen=True)
21
+ class OrderChanged:
22
+ order_id: UUID
23
+ status: OrderStatus
24
+ user_id: UUID | None = None
25
+
26
+
27
+ class Order(AggregateRoot[UUID]):
28
+ def __init__(
29
+ self,
30
+ id: UUID,
31
+ title: OrderTitle,
32
+ *,
33
+ status: OrderStatus = OrderStatus.PENDING,
34
+ version: int = 0,
35
+ ) -> None:
36
+ super().__init__(id, version=version)
37
+ self._title, self._status = title, status
38
+
39
+ @property
40
+ def title(self) -> str:
41
+ return self._title.value
42
+
43
+ @property
44
+ def status(self) -> OrderStatus:
45
+ return self._status
46
+
47
+ @classmethod
48
+ def create(cls, id: UUID, title: OrderTitle) -> Order:
49
+ order = cls(id, title)
50
+ order.raise_local_event(OrderChanged(id, order.status))
51
+ return order
52
+
53
+ def approve(self, *, user_id: UUID | None = None) -> None:
54
+ if self.status is OrderStatus.APPROVED:
55
+ raise BusinessError(ALREADY_APPROVED)
56
+ self._status = OrderStatus.APPROVED
57
+ self.raise_local_event(OrderChanged(self.id, self.status, user_id))
@@ -0,0 +1,12 @@
1
+ """领域需要的业务仓储边界;不暴露 Session 或容器。"""
2
+
3
+ from typing import Protocol
4
+ from uuid import UUID
5
+
6
+ from .orders import Order
7
+
8
+
9
+ class OrderRepository(Protocol):
10
+ async def get(self, id: UUID) -> Order | None: ...
11
+ async def get_list(self) -> tuple[Order, ...]: ...
12
+ async def save(self, order: Order) -> None: ...
@@ -0,0 +1,19 @@
1
+ """仅 pp db seed 显式调用;确定性业务 ID 保证重复初始化不产生新订单。"""
2
+
3
+ from uuid import NAMESPACE_URL, uuid5
4
+
5
+ from python_platform import DataSeedContributor
6
+
7
+ from ..domain_shared.definitions import MODULE_NAME
8
+ from .orders import Order, OrderTitle
9
+ from .repository import OrderRepository
10
+
11
+
12
+ class {{ cookiecutter.class_prefix }}SeedContributor(DataSeedContributor):
13
+ def __init__(self, repository: OrderRepository) -> None:
14
+ self._repository = repository
15
+
16
+ async def seed(self) -> None:
17
+ id = uuid5(NAMESPACE_URL, f"{MODULE_NAME}:sample-order")
18
+ if await self._repository.get(id) is None:
19
+ await self._repository.save(Order.create(id, OrderTitle(value="Sample order")))
@@ -0,0 +1,16 @@
1
+ """设置默认值属于领域,业务通过 SettingProvider 获取冻结读取视图。"""
2
+
3
+ from python_platform.settings import (
4
+ SettingDefinition,
5
+ SettingDefinitionContext,
6
+ SettingDefinitionProvider,
7
+ )
8
+
9
+ from ..domain_shared.definitions import MODULE_NAME
10
+
11
+ APPROVAL_ENABLED = SettingDefinition(f"{MODULE_NAME}.approval_enabled", bool, default=True)
12
+
13
+
14
+ class {{ cookiecutter.class_prefix }}SettingDefinitionProvider(SettingDefinitionProvider):
15
+ def define(self, context: SettingDefinitionContext) -> None:
16
+ context.add(APPROVAL_ENABLED)
@@ -0,0 +1 @@
1
+ """业务共享定义,不依赖应用编排或 provider。"""
@@ -0,0 +1,24 @@
1
+ """修改业务名称、权限和约束的单一位置。"""
2
+
3
+ from enum import Enum
4
+
5
+ from python_platform import PermissionName
6
+ from python_platform.errors import BusinessErrorDefinition
7
+
8
+ MODULE_NAME = "{{ cookiecutter.module_name }}"
9
+ ORDER_CHANGED_MESSAGE = f"{MODULE_NAME}.changed.v1"
10
+ ORDER_SNAPSHOT_MESSAGE = f"{MODULE_NAME}.snapshot.v1"
11
+ TITLE_MAX_LENGTH = 120
12
+ ORDERS_READ = PermissionName(f"{MODULE_NAME}.read")
13
+ ORDERS_WRITE = PermissionName(f"{MODULE_NAME}.write")
14
+ ALREADY_APPROVED = BusinessErrorDefinition(
15
+ f"{MODULE_NAME}.already_approved", "Order is already approved"
16
+ )
17
+ APPROVAL_DISABLED = BusinessErrorDefinition(
18
+ f"{MODULE_NAME}.approval_disabled", "Order approval is disabled"
19
+ )
20
+
21
+
22
+ class OrderStatus(str, Enum):
23
+ PENDING = "pending"
24
+ APPROVED = "approved"
@@ -0,0 +1,7 @@
1
+ """共享层只发布业务常量与权限,不引用基础设施。"""
2
+
3
+ from python_platform import AppModule
4
+
5
+
6
+ class {{ cookiecutter.class_prefix }}DomainSharedModule(AppModule):
7
+ scan_packages = (__package__ + ".permissions",)
@@ -0,0 +1,15 @@
1
+ """权限名称由共享定义拥有;Provider 仅发布定义。"""
2
+
3
+ from python_platform import (
4
+ PermissionDefinition,
5
+ PermissionDefinitionContext,
6
+ PermissionDefinitionProvider,
7
+ )
8
+
9
+ from .definitions import ORDERS_READ, ORDERS_WRITE
10
+
11
+
12
+ class {{ cookiecutter.class_prefix }}PermissionDefinitionProvider(PermissionDefinitionProvider):
13
+ def define(self, context: PermissionDefinitionContext) -> None:
14
+ context.add(PermissionDefinition(ORDERS_READ, "Read orders"))
15
+ context.add(PermissionDefinition(ORDERS_WRITE, "Create and approve orders"))
@@ -0,0 +1 @@
1
+ """HTTP adapter 只依赖服务契约,不反向导入 application 或 sqlalchemy。"""