Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a24c94435e | ||
|
|
774793976c | ||
|
|
492449a4e2 | ||
|
|
8e890b37ed | ||
|
|
077735bc24 | ||
|
|
d9522d3cc4 | ||
|
|
bad0ea37a7 | ||
|
|
9ffd46fe22 | ||
|
|
be51a9c347 | ||
|
|
e36a6573bf | ||
|
|
629bfec1f1 | ||
|
|
9e956eec6f | ||
|
|
9bb2c808a6 | ||
|
|
f7590a7b8b | ||
|
|
1a68565ba0 | ||
|
|
d9f67b5c26 | ||
|
|
1cfdaec250 | ||
|
|
62501d399a | ||
|
|
ce5528e3b8 |
@@ -55,9 +55,9 @@ jobs:
|
|||||||
- name: Install WebUI release dependencies with test scripts
|
- name: Install WebUI release dependencies with test scripts
|
||||||
working-directory: govoplan
|
working-directory: govoplan
|
||||||
run: bash tools/release/install-webui-release-dependencies.sh ../govoplan-core/webui
|
run: bash tools/release/install-webui-release-dependencies.sh ../govoplan-core/webui
|
||||||
- name: Validate platform endpoint surface declarations
|
- name: Validate platform interface and endpoint declarations
|
||||||
working-directory: govoplan
|
working-directory: govoplan
|
||||||
run: .venv/bin/python tools/inventory/platform-interface-inventory.py --strict
|
run: .venv/bin/python tools/inventory/platform-interface-inventory.py --strict-declarations --strict-endpoints
|
||||||
- name: Validate Search against PostgreSQL
|
- name: Validate Search against PostgreSQL
|
||||||
working-directory: govoplan
|
working-directory: govoplan
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -0,0 +1,49 @@
|
|||||||
|
name: Developer Meta-package Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "v*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish-package:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
GITEA_REPOSITORY: ${{ gitea.repository }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
|
||||||
|
with:
|
||||||
|
python-version: "3.12"
|
||||||
|
- name: Validate protected release tag and package version
|
||||||
|
run: |
|
||||||
|
python - <<'PY'
|
||||||
|
import os
|
||||||
|
from pathlib import Path
|
||||||
|
import subprocess
|
||||||
|
import tomllib
|
||||||
|
|
||||||
|
tag = os.environ["GITEA_REF_NAME"]
|
||||||
|
project = tomllib.loads(Path("packages/govoplan-meta/pyproject.toml").read_text(encoding="utf-8"))["project"]
|
||||||
|
if tag != f"v{project['version']}":
|
||||||
|
raise SystemExit("meta-package version does not match the release tag")
|
||||||
|
if subprocess.run(["git", "merge-base", "--is-ancestor", "HEAD", "origin/main"]).returncode:
|
||||||
|
raise SystemExit("release tag is not contained in main")
|
||||||
|
PY
|
||||||
|
- name: Build and publish developer package
|
||||||
|
env:
|
||||||
|
PACKAGE_USERNAME: ${{ secrets.GOVOPLAN_PACKAGE_USERNAME }}
|
||||||
|
PACKAGE_TOKEN: ${{ secrets.GOVOPLAN_PACKAGE_TOKEN }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
test -n "$PACKAGE_USERNAME"
|
||||||
|
test -n "$PACKAGE_TOKEN"
|
||||||
|
python -m pip install --disable-pip-version-check build==1.5.0 twine==7.0.0
|
||||||
|
python -m build --wheel --outdir dist packages/govoplan-meta
|
||||||
|
python -m twine check dist/*.whl
|
||||||
|
TWINE_USERNAME="$PACKAGE_USERNAME" TWINE_PASSWORD="$PACKAGE_TOKEN" \
|
||||||
|
python -m twine upload --non-interactive \
|
||||||
|
--repository-url https://git.add-ideas.de/api/packages/GovOPlaN/pypi \
|
||||||
|
dist/*.whl
|
||||||
@@ -25,6 +25,12 @@ jobs:
|
|||||||
- name: Bootstrap GovOPlaN repositories
|
- name: Bootstrap GovOPlaN repositories
|
||||||
working-directory: govoplan
|
working-directory: govoplan
|
||||||
run: python tools/repo/bootstrap-repositories.py --parent .. --transport public-https --reuse-checkout-auth --exclude-repo addideas-govoplan-website
|
run: python tools/repo/bootstrap-repositories.py --parent .. --transport public-https --reuse-checkout-auth --exclude-repo addideas-govoplan-website
|
||||||
|
- name: Validate package publication contracts
|
||||||
|
working-directory: govoplan
|
||||||
|
run: |
|
||||||
|
python tools/repo/sync-module-package-workflows.py --check
|
||||||
|
python tools/release/generate-developer-meta-package.py --check
|
||||||
|
python -m unittest tests.test_module_package_workflows tests.test_package_registry_release
|
||||||
- name: Install backend release integration dependencies
|
- name: Install backend release integration dependencies
|
||||||
working-directory: govoplan
|
working-directory: govoplan
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -101,12 +101,27 @@ jobs:
|
|||||||
run: python tools/repo/bootstrap-repositories.py --parent .. --transport public-https --reuse-checkout-auth --exclude-repo addideas-govoplan-website
|
run: python tools/repo/bootstrap-repositories.py --parent .. --transport public-https --reuse-checkout-auth --exclude-repo addideas-govoplan-website
|
||||||
- name: Build release wheel roots and WebUI
|
- name: Build release wheel roots and WebUI
|
||||||
working-directory: govoplan
|
working-directory: govoplan
|
||||||
|
env:
|
||||||
|
VERSION: ${{ inputs.version }}
|
||||||
|
GOVOPLAN_PACKAGE_USERNAME: ${{ secrets.GOVOPLAN_PACKAGE_USERNAME }}
|
||||||
|
GOVOPLAN_PACKAGE_TOKEN: ${{ secrets.GOVOPLAN_PACKAGE_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
python -m venv .runtime-build
|
python -m venv .runtime-build
|
||||||
.runtime-build/bin/python -m pip install --upgrade pip wheel cryptography
|
.runtime-build/bin/python -m pip install --upgrade pip cryptography
|
||||||
mkdir -p runtime-output/local-wheels
|
.runtime-build/bin/python tools/release/generate-release-package-set.py \
|
||||||
.runtime-build/bin/python -m pip wheel --no-deps --wheel-dir runtime-output/local-wheels --requirement requirements-release.txt
|
--version "$VERSION" \
|
||||||
bash tools/release/install-webui-release-dependencies.sh ../govoplan-core/webui
|
--output runtime-output/release-packages.json
|
||||||
|
.runtime-build/bin/python tools/release/resolve-package-artifacts.py \
|
||||||
|
--package-set runtime-output/release-packages.json \
|
||||||
|
--wheelhouse runtime-output/local-wheels \
|
||||||
|
--webui-packages runtime-output/webui-packages \
|
||||||
|
--lock-output runtime-output/package-artifacts.lock.json \
|
||||||
|
--requirements-output runtime-output/requirements-release.packages.txt \
|
||||||
|
--python .runtime-build/bin/python
|
||||||
|
PYTHON=.runtime-build/bin/python \
|
||||||
|
GOVOPLAN_WEBUI_PACKAGE_LOCK="$PWD/runtime-output/package-artifacts.lock.json" \
|
||||||
|
GOVOPLAN_WEBUI_PACKAGE_DIR="$PWD/runtime-output/webui-packages" \
|
||||||
|
bash tools/release/install-webui-release-dependencies.sh ../govoplan-core/webui
|
||||||
npm --prefix ../govoplan-core/webui run build
|
npm --prefix ../govoplan-core/webui run build
|
||||||
.runtime-build/bin/python tools/release/prepare-runtime-context.py \
|
.runtime-build/bin/python tools/release/prepare-runtime-context.py \
|
||||||
--wheelhouse runtime-output/local-wheels \
|
--wheelhouse runtime-output/local-wheels \
|
||||||
@@ -264,6 +279,7 @@ jobs:
|
|||||||
--web-metadata runtime-output/web-metadata.json \
|
--web-metadata runtime-output/web-metadata.json \
|
||||||
--deployer runtime-output/govoplan-deploy.pyz \
|
--deployer runtime-output/govoplan-deploy.pyz \
|
||||||
--deployer-url "$ARTIFACT_BASE/govoplan-deploy.pyz" \
|
--deployer-url "$ARTIFACT_BASE/govoplan-deploy.pyz" \
|
||||||
|
--package-lock runtime-output/package-artifacts.lock.json \
|
||||||
--artifact-base-url "$ARTIFACT_BASE" \
|
--artifact-base-url "$ARTIFACT_BASE" \
|
||||||
--source-commit "$SOURCE_COMMIT" \
|
--source-commit "$SOURCE_COMMIT" \
|
||||||
--version "$VERSION" \
|
--version "$VERSION" \
|
||||||
@@ -361,6 +377,9 @@ jobs:
|
|||||||
--asset runtime-output/distribution-manifest.json.sha256 \
|
--asset runtime-output/distribution-manifest.json.sha256 \
|
||||||
--asset runtime-output/distribution-keyring.json \
|
--asset runtime-output/distribution-keyring.json \
|
||||||
--asset runtime-output/context-amd64/composition.json \
|
--asset runtime-output/context-amd64/composition.json \
|
||||||
|
--asset runtime-output/release-packages.json \
|
||||||
|
--asset runtime-output/package-artifacts.lock.json \
|
||||||
|
--asset runtime-output/requirements-release.packages.txt \
|
||||||
--asset runtime-output/evidence/api-sbom.cdx.json \
|
--asset runtime-output/evidence/api-sbom.cdx.json \
|
||||||
--asset runtime-output/evidence/web-sbom.cdx.json \
|
--asset runtime-output/evidence/web-sbom.cdx.json \
|
||||||
--asset runtime-output/evidence/api-provenance.json \
|
--asset runtime-output/evidence/api-provenance.json \
|
||||||
|
|||||||
@@ -10,6 +10,9 @@ tools/release/runtime/*
|
|||||||
!tools/release/runtime/Dockerfile.web
|
!tools/release/runtime/Dockerfile.web
|
||||||
!tools/release/runtime/nginx.conf
|
!tools/release/runtime/nginx.conf
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
*.egg-info/
|
||||||
audit-reports/
|
audit-reports/
|
||||||
coverage/
|
coverage/
|
||||||
htmlcov/
|
htmlcov/
|
||||||
|
|||||||
@@ -113,6 +113,18 @@ Generate the CycloneDX dependency inventory from a resolved release environment:
|
|||||||
./.venv/bin/python tools/release/generate-release-sbom.py --python ./.venv/bin/python
|
./.venv/bin/python tools/release/generate-release-sbom.py --python ./.venv/bin/python
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Synchronize module package workflows and inspect the registry release contract:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
./.venv/bin/python tools/repo/sync-module-package-workflows.py --check
|
||||||
|
./.venv/bin/python tools/release/generate-release-package-set.py \
|
||||||
|
--output /tmp/govoplan-release-packages.json
|
||||||
|
```
|
||||||
|
|
||||||
|
Package publication, exact artifact locking, and the optional `govoplan`
|
||||||
|
developer meta-package are documented in
|
||||||
|
[Package Registry Releases](docs/PACKAGE_REGISTRY_RELEASES.md).
|
||||||
|
|
||||||
For reproducible release artifacts, set `SOURCE_DATE_EPOCH` to the release
|
For reproducible release artifacts, set `SOURCE_DATE_EPOCH` to the release
|
||||||
commit timestamp (or pass an explicit timezone-qualified `--timestamp`):
|
commit timestamp (or pass an explicit timezone-qualified `--timestamp`):
|
||||||
|
|
||||||
|
|||||||
@@ -221,26 +221,39 @@ references and archive hashes; mutable tags or incomplete bundles are rejected.
|
|||||||
|
|
||||||
## Current Production Gates
|
## Current Production Gates
|
||||||
|
|
||||||
The tool deliberately reports blockers instead of pretending the source tree is
|
The first immutable production-distribution baseline is published as
|
||||||
a production distribution:
|
[`v0.1.14`](https://git.add-ideas.de/GovOPlaN/govoplan/releases/tag/v0.1.14)
|
||||||
|
from source commit `1f039dd39c1ce2672f4978c8abc6dff862ef1445`. Runtime
|
||||||
|
Distribution [run #459](https://git.add-ideas.de/GovOPlaN/govoplan/actions/runs/459)
|
||||||
|
proved migrations, schema compatibility, non-root API/Web readiness, and worker
|
||||||
|
delivery/shutdown on both `linux/amd64` and `linux/arm64`. Its signed manifest
|
||||||
|
has SHA-256
|
||||||
|
`d703267e01855dee63200cb20921c91c3f95fbff550c8ca76e9a35cba3f69109`
|
||||||
|
and pins these runtime indexes:
|
||||||
|
|
||||||
1. **First publication.** The protected workflow and fail-closed artifact
|
- API: `git.add-ideas.de/govoplan/runtime-api@sha256:197ed01790986f2bc927eaa5d8348fa118702e5d2dc05feb851fc2643c23764a`
|
||||||
contracts are implemented, but a release operator must configure the Gitea
|
- WebUI: `git.add-ideas.de/govoplan/runtime-web@sha256:e936cca124f1fad29a067834cf17627d4c236410fdc3fa129e0ccb26b8193812`
|
||||||
registry/release tokens and runtime Ed25519 key, publish the first pinned
|
|
||||||
release, and retain its amd64/arm64 readiness evidence.
|
The signed bootstrap has SHA-256
|
||||||
3. **First administrator.** Production needs a one-time, restricted enrollment
|
`1ff946fba82b0895d153b23352d06e30fe18388450dfd37fed6fb9912310efc5`
|
||||||
|
and key id `runtime-distribution-2026-01`. The managed-ingress boundary passed
|
||||||
|
the same publication run and the independently dispatchable Runtime Ingress
|
||||||
|
Drill [run #458](https://git.add-ideas.de/GovOPlaN/govoplan/actions/runs/458).
|
||||||
|
Every later release must renew this evidence; the following target-specific
|
||||||
|
gates remain:
|
||||||
|
|
||||||
|
1. **First administrator.** Production needs a one-time, restricted enrollment
|
||||||
identity. The development bootstrap must not be enabled in production.
|
identity. The development bootstrap must not be enabled in production.
|
||||||
4. **Image/module composition.** The deployer now enforces the signed
|
2. **Image/module composition.** The deployer enforces the signed
|
||||||
composition. A selected module not shipped by that release cannot be
|
composition. A selected module not shipped by that release cannot be
|
||||||
enabled.
|
enabled.
|
||||||
5. **Deployment agent.** Web updates need a separate privileged reconciler with
|
3. **Deployment agent.** Web updates need a separate privileged reconciler with
|
||||||
a typed command allowlist. The API and browser must never receive the Docker
|
a typed command allowlist. The API and browser must never receive the Docker
|
||||||
socket or arbitrary shell access.
|
socket or arbitrary shell access.
|
||||||
6. **Ingress reachability evidence.** Managed Caddy ingress and the
|
4. **Target reachability evidence.** Managed Caddy ingress and the
|
||||||
existing-proxy contract are implemented. A production claim still requires
|
existing-proxy contract are implemented. A production claim still requires
|
||||||
running `doctor` from the target host after public DNS/firewall changes and
|
running `doctor` from the target host after public DNS/firewall changes and
|
||||||
retaining the first successful container drill and public TLS/readiness
|
retaining public TLS/readiness evidence for that deployment.
|
||||||
evidence.
|
|
||||||
|
|
||||||
`apply --allow-unverified-images` is therefore restricted to the evaluation
|
`apply --allow-unverified-images` is therefore restricted to the evaluation
|
||||||
profile. It explicitly acknowledges both mutable image identities and
|
profile. It explicitly acknowledges both mutable image identities and
|
||||||
|
|||||||
@@ -58,12 +58,12 @@ Inventory states:
|
|||||||
|
|
||||||
| Surface | Owner and code evidence | Audience/access evidence | Primary task and target archetype | Audit / rollout |
|
| Surface | Owner and code evidence | Audience/access evidence | Primary task and target archetype | Audit / rollout |
|
||||||
| --- | --- | --- | --- | --- |
|
| --- | --- | --- | --- | --- |
|
||||||
| Public landing and login | `govoplan-core` `PublicLandingPage`; rendered while no authenticated principal exists | Unauthenticated; maintenance and backend-reachability context are shell inputs | Understand the service and authenticate; public entry | Unreviewed; later public-entry audit |
|
| Public landing and login | `govoplan-core` `PublicLandingPage`; rendered while no authenticated principal exists | Unauthenticated; maintenance and backend-reachability context are shell inputs | Understand the service and authenticate; public entry | Core shell contract complete under Core #227: semantic entry/login, uniform reachable/offline/maintenance feedback, keyboard focus, responsive layout and privacy-safe pre-authentication state |
|
||||||
| Session/bootstrap state | `govoplan-core` `App.tsx` and `AppShell` | All browser sessions during bootstrap | Understand that session/platform state is loading; state contract | Unreviewed; core shell |
|
| Session/bootstrap state | `govoplan-core` `App.tsx` and `AppShell` | All browser sessions during bootstrap | Understand that session/platform state is loading; state contract | Core shell contract complete: loading, unreachable, maintenance, authentication-required and module-load failure states use shared status/alert boundaries without erasing the shell |
|
||||||
| `/` authenticated redirect | `govoplan-core` chooses the first visible navigation destination | Authenticated; result depends on visible nav contributions | Enter the actor's first accessible service area; navigation behavior, not a content page | Unreviewed; focused-view/default-route work must preserve this fallback |
|
| `/` authenticated redirect | `govoplan-core` chooses the first visible navigation destination | Authenticated; result depends on visible nav contributions | Enter the actor's first accessible service area; navigation behavior, not a content page | Core route/module-permutation contract complete; permission, module, View and fallback filtering precede navigation and do not execute a domain action |
|
||||||
| `/dashboard` fallback | `govoplan-core` `DashboardPage` only when the Dashboard module is absent | Authenticated; no route-specific scope in core | Cross-module starting point; dashboard | Unreviewed; compare with module dashboard before shared changes |
|
| `/dashboard` fallback | `govoplan-core` `DashboardPage` only when the Dashboard module is absent | Authenticated; no route-specific scope in core | Cross-module starting point; dashboard | Core fallback and Dashboard module permutations complete; fallback remains usable without the optional Dashboard module |
|
||||||
| `/settings` | `govoplan-core` `SettingsPage` | Authenticated; contributed sections and integrations filter internally | Profile, UI/workspace preference, local connection, and user-scoped integration settings; configuration | Core-owned pattern migration complete in [Core #225](https://git.add-ideas.de/GovOPlaN/govoplan-core/issues/225), commit `fa32cca` |
|
| `/settings` | `govoplan-core` `SettingsPage` | Authenticated; contributed sections and integrations filter internally | Profile, UI/workspace preference, local connection, and user-scoped integration settings; configuration | Core-owned pattern migration complete in [Core #225](https://git.add-ideas.de/GovOPlaN/govoplan-core/issues/225), commit `fa32cca` |
|
||||||
| Shell chrome | `AppShell`, `Titlebar`, `IconRail`, `BreadcrumbBar`, `HelpMenu`, language menu, unsaved-change provider | Public/authenticated variants; nav filtered later | Tenant/actor context, global navigation, help, language, session and maintenance state | Unreviewed; platform-owned prerequisite for focused views |
|
| Shell chrome | `AppShell`, `Titlebar`, `IconRail`, `BreadcrumbBar`, `HelpMenu`, language menu, unsaved-change provider | Public/authenticated variants; nav filtered later | Tenant/actor context, global navigation, help, language, session and maintenance state | Core shell contract complete under Core #227/#225 and Views #2: semantic global controls, scroll-safe rail, visible maintenance state, guarded navigation, configured Docs fallback, optional Search, responsive/theme/i18n checks and module permutations |
|
||||||
|
|
||||||
## Direct Module Route Contributions
|
## Direct Module Route Contributions
|
||||||
|
|
||||||
@@ -78,15 +78,15 @@ semantics as authenticated navigation routes.
|
|||||||
| `/address-book` | Addresses | `addresses:contact:read` | Governed source directory, contact/list detail, external-provider operation, governance facts, and reversible correction | Addresses pattern migration complete in [Addresses #23](https://git.add-ideas.de/GovOPlaN/govoplan-addresses/issues/23), commit `f9a7185` |
|
| `/address-book` | Addresses | `addresses:contact:read` | Governed source directory, contact/list detail, external-provider operation, governance facts, and reversible correction | Addresses pattern migration complete in [Addresses #23](https://git.add-ideas.de/GovOPlaN/govoplan-addresses/issues/23), commit `f9a7185` |
|
||||||
| `/approvals` | Approvals | `approvals:workspace:read` | Work queue/guided decision | Approvals pattern migration complete in [Approvals #3](https://git.add-ideas.de/GovOPlaN/govoplan-approvals/issues/3), commit `24e9559` |
|
| `/approvals` | Approvals | `approvals:workspace:read` | Work queue/guided decision | Approvals pattern migration complete in [Approvals #3](https://git.add-ideas.de/GovOPlaN/govoplan-approvals/issues/3), commit `24e9559` |
|
||||||
| `/calendar` | Calendar | `calendar:event:read` | Full-height calendar workspace with filterable collection/agenda sidebar, continuous and bounded date views, guarded VEVENT and source editors, synchronized-source status, durable outbox recovery, and destructive remote-move evidence | Calendar pattern migration complete in [Calendar #22](https://git.add-ideas.de/GovOPlaN/govoplan-calendar/issues/22), commit `d7fd944` |
|
| `/calendar` | Calendar | `calendar:event:read` | Full-height calendar workspace with filterable collection/agenda sidebar, continuous and bounded date views, guarded VEVENT and source editors, synchronized-source status, durable outbox recovery, and destructive remote-move evidence | Calendar pattern migration complete in [Calendar #22](https://git.add-ideas.de/GovOPlaN/govoplan-calendar/issues/22), commit `d7fd944` |
|
||||||
| `/campaigns`, `/campaigns/:campaignId/*`, `/campaigns/queue`, `/campaigns/reports`, `/templates` | Campaign | Campaign read/report/control scopes; template route has no route guard | List-detail, guided review, monitoring, reporting | [Campaign #74](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/74) |
|
| `/campaigns`, `/campaigns/:campaignId/*`, `/campaigns/queue`, `/campaigns/reports` | Campaign | Campaign read/report/control scopes | List-detail, guided review, monitoring, reporting | Campaign pattern pilot complete in [Campaign #74](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/74); bounded product features such as watched-folder policy remain independently tracked |
|
||||||
| `/operator` | Campaign | Campaign read plus queue/control scope | Compatibility redirect to `/campaigns/queue` | Campaign #74; retire under the compatibility policy |
|
| `/operator` | Campaign | Campaign read plus queue/control scope | Compatibility redirect to `/campaigns/queue` | Campaign #74 complete; redirect remains declared for saved links and is retired under the compatibility policy rather than through the UI migration |
|
||||||
| `/cases`, `/cases/:caseId` | Cases | `cases:case:read` | Governed case directory and detail workspace with guarded OCC lifecycle editor, provider-owned references, immutable timeline/history, and confirmed object-access editor | Cases pattern migration complete in [Cases #4](https://git.add-ideas.de/GovOPlaN/govoplan-cases/issues/4), commit `43b4cc8` |
|
| `/cases`, `/cases/:caseId` | Cases | `cases:case:read` | Governed case directory and detail workspace with guarded OCC lifecycle editor, provider-owned references, immutable timeline/history, and confirmed object-access editor | Cases pattern migration complete in [Cases #4](https://git.add-ideas.de/GovOPlaN/govoplan-cases/issues/4), commit `43b4cc8` |
|
||||||
| `/committee` | Committee | `committee:workspace:read` | Governed workspace | Committee pattern migration complete in [Committee #2](https://git.add-ideas.de/GovOPlaN/govoplan-committee/issues/2), commit `e64af30` |
|
| `/committee` | Committee | `committee:workspace:read` | Governed workspace | Committee pattern migration complete in [Committee #2](https://git.add-ideas.de/GovOPlaN/govoplan-committee/issues/2), commit `e64af30` |
|
||||||
| `/dashboard` | Dashboard | No route-specific scope | View-specific personal workspace with module/permission-filtered widget library, guarded four-column composition, nested widget settings, server/browser fallback, and optimistic layout persistence | Dashboard pattern migration complete in [Dashboard #3](https://git.add-ideas.de/GovOPlaN/govoplan-dashboard/issues/3), commit `da3947f` |
|
| `/dashboard` | Dashboard | No route-specific scope | View-specific personal workspace with module/permission-filtered widget library, guarded four-column composition, nested widget settings, server/browser fallback, and optimistic layout persistence | Dashboard pattern migration complete in [Dashboard #3](https://git.add-ideas.de/GovOPlaN/govoplan-dashboard/issues/3), commit `da3947f` |
|
||||||
| `/dataflow` | Dataflow | Pipeline read/admin | Governed library, guarded graph/constrained-SQL definition editor, typed node inspector, bounded intermediate preview, automation triggers, and durable run/deployment evidence | Dataflow pattern migration complete in [Dataflow #20](https://git.add-ideas.de/GovOPlaN/govoplan-dataflow/issues/20), commit `109ddcd` |
|
| `/dataflow` | Dataflow | Pipeline read/admin | Governed library, guarded graph/constrained-SQL definition editor, typed node inspector, bounded intermediate preview, automation triggers, and durable run/deployment evidence | Dataflow pattern migration complete in [Dataflow #20](https://git.add-ideas.de/GovOPlaN/govoplan-dataflow/issues/20), commit `109ddcd` |
|
||||||
| `/datasources` | Datasources | Catalogue read/source admin | Governed catalogue, staging preflight, optional-origin directory, authority editor, and immutable evidence | Datasources pattern migration complete in [Datasources #7](https://git.add-ideas.de/GovOPlaN/govoplan-datasources/issues/7), commit `6406ce7` |
|
| `/datasources` | Datasources | Catalogue read/source admin | Governed catalogue, staging preflight, optional-origin directory, authority editor, and immutable evidence | Datasources pattern migration complete in [Datasources #7](https://git.add-ideas.de/GovOPlaN/govoplan-datasources/issues/7), commit `6406ce7` |
|
||||||
| `/distribution-lists` | Distribution Lists | List read/write/admin | Governed directory, immutable-revision editor, expansion preview, and evidence register | Distribution Lists pattern migration complete in [Distribution Lists #8](https://git.add-ideas.de/GovOPlaN/govoplan-dist-lists/issues/8), commit `6cdd804` |
|
| `/distribution-lists` | Distribution Lists | List read/write/admin | Governed directory, immutable-revision editor, expansion preview, and evidence register | Distribution Lists pattern migration complete in [Distribution Lists #8](https://git.add-ideas.de/GovOPlaN/govoplan-dist-lists/issues/8), commit `6cdd804` |
|
||||||
| `/docs` | Docs | Documentation or settings read | Documentation/reference | [Docs #15](https://git.add-ideas.de/GovOPlaN/govoplan-docs/issues/15) |
|
| `/docs` | Docs | Documentation or settings read | Documentation/reference | Configured-system workflow/reference/pattern help complete in [Docs #15](https://git.add-ideas.de/GovOPlaN/govoplan-docs/issues/15), commit `abe2f78` |
|
||||||
| `/files` | Files | `files:file:read` | Directory/explorer | Files pattern migration complete in [Files #42](https://git.add-ideas.de/GovOPlaN/govoplan-files/issues/42), commit `d8ae506` |
|
| `/files` | Files | `files:file:read` | Directory/explorer | Files pattern migration complete in [Files #42](https://git.add-ideas.de/GovOPlaN/govoplan-files/issues/42), commit `d8ae506` |
|
||||||
| `/forms` | Forms | `forms:definition:read` | Definition library/editor | Forms pattern migration complete in [Forms #4](https://git.add-ideas.de/GovOPlaN/govoplan-forms/issues/4), commit `e505536` |
|
| `/forms` | Forms | `forms:definition:read` | Definition library/editor | Forms pattern migration complete in [Forms #4](https://git.add-ideas.de/GovOPlaN/govoplan-forms/issues/4), commit `e505536` |
|
||||||
| `/forms-runtime`, `/forms-runtime/:instanceId` | Forms Runtime | Participate or workspace read | Guided form execution | Forms Runtime pattern migration complete in [Forms Runtime #5](https://git.add-ideas.de/GovOPlaN/govoplan-forms-runtime/issues/5), commit `07dd35b` |
|
| `/forms-runtime`, `/forms-runtime/:instanceId` | Forms Runtime | Participate or workspace read | Guided form execution | Forms Runtime pattern migration complete in [Forms Runtime #5](https://git.add-ideas.de/GovOPlaN/govoplan-forms-runtime/issues/5), commit `07dd35b` |
|
||||||
@@ -95,17 +95,36 @@ semantics as authenticated navigation routes.
|
|||||||
| `/notifications` | Notifications | `notifications:notification:read` | Inbox/list-detail with guarded recipient state, confirmed local cancellation/dispatch, and sanitized delivery evidence | Notifications pattern migration complete in [Notifications #4](https://git.add-ideas.de/GovOPlaN/govoplan-notifications/issues/4), commit `ad6a31f` |
|
| `/notifications` | Notifications | `notifications:notification:read` | Inbox/list-detail with guarded recipient state, confirmed local cancellation/dispatch, and sanitized delivery evidence | Notifications pattern migration complete in [Notifications #4](https://git.add-ideas.de/GovOPlaN/govoplan-notifications/issues/4), commit `ad6a31f` |
|
||||||
| `/ops` | Ops | Operations or settings read | Monitoring/evidence with contextual run, drain, readiness-blocker, and recovery guidance | Ops pattern migration complete in [Ops #4](https://git.add-ideas.de/GovOPlaN/govoplan-ops/issues/4), commit `2b32643` |
|
| `/ops` | Ops | Operations or settings read | Monitoring/evidence with contextual run, drain, readiness-blocker, and recovery guidance | Ops pattern migration complete in [Ops #4](https://git.add-ideas.de/GovOPlaN/govoplan-ops/issues/4), commit `2b32643` |
|
||||||
| `/organizations` | Organizations | Model/unit/function or settings read | Directory/hierarchy editor | Organizations pattern migration complete in [Organizations #7](https://git.add-ideas.de/GovOPlaN/govoplan-organizations/issues/7), commit `97acfcb` |
|
| `/organizations` | Organizations | Model/unit/function or settings read | Directory/hierarchy editor | Organizations pattern migration complete in [Organizations #7](https://git.add-ideas.de/GovOPlaN/govoplan-organizations/issues/7), commit `97acfcb` |
|
||||||
| `/portal` | Portal | `portal:service:read` | Service portal | [Portal #2](https://git.add-ideas.de/GovOPlaN/govoplan-portal/issues/2) |
|
| `/portal` | Portal | `portal:service:read` | Explained service directory and governed handoff | Portal pattern migration complete in [Portal #2](https://git.add-ideas.de/GovOPlaN/govoplan-portal/issues/2); durable evidence in `govoplan-portal/docs/INTERFACE_PATTERN_MIGRATION.md` |
|
||||||
| `/postbox` | Postbox | `postbox:postbox:read` | Inbox/list-detail | Postbox pattern migration complete in [Postbox #26](https://git.add-ideas.de/GovOPlaN/govoplan-postbox/issues/26), commit `a97eb3b` |
|
| `/postbox` | Postbox | `postbox:postbox:read` | Inbox/list-detail | Postbox pattern migration complete in [Postbox #26](https://git.add-ideas.de/GovOPlaN/govoplan-postbox/issues/26), commit `a97eb3b` |
|
||||||
| `/projects` | Projects | `projects:project:read` | List-detail/project workspace | [Projects #2](https://git.add-ideas.de/GovOPlaN/govoplan-projects/issues/2) |
|
| `/projects` | Projects | `projects:project:read` | Revisioned list-detail/project workspace | Projects pattern migration complete in [Projects #2](https://git.add-ideas.de/GovOPlaN/govoplan-projects/issues/2); durable evidence in `govoplan-projects/docs/INTERFACE_PATTERN_MIGRATION.md` |
|
||||||
| `/reporting`, `/reports` | Reporting | `reporting:definition:read` | Reporting/definition library | [Reporting #8](https://git.add-ideas.de/GovOPlaN/govoplan-reporting/issues/8) |
|
| `/reporting`, `/reports` | Reporting | `reporting:definition:read` | Governed report catalogue, analytical workspace and evidence | Reporting pattern migration complete in [Reporting #8](https://git.add-ideas.de/GovOPlaN/govoplan-reporting/issues/8); durable evidence in `govoplan-reporting/docs/INTERFACE_PATTERN_MIGRATION.md` |
|
||||||
| `/risk-compliance` | Risk Compliance | Workspace or sanctions read | Immutable source evidence, version-pinned screening, list-detail review, and revisioned assurance graph with explicit blockers and consequences | Risk Compliance pattern migration complete in [Risk Compliance #8](https://git.add-ideas.de/GovOPlaN/govoplan-risk-compliance/issues/8), commit `24d80a6` |
|
| `/risk-compliance` | Risk Compliance | Workspace or sanctions read | Immutable source evidence, version-pinned screening, list-detail review, and revisioned assurance graph with explicit blockers and consequences | Risk Compliance pattern migration complete in [Risk Compliance #8](https://git.add-ideas.de/GovOPlaN/govoplan-risk-compliance/issues/8), commit `24d80a6` |
|
||||||
| `/scheduling` | Scheduling | `scheduling:schedule:read` | List-detail/guided decision | Scheduling pattern migration complete in [Scheduling #8](https://git.add-ideas.de/GovOPlaN/govoplan-scheduling/issues/8), commit `c17cbda` |
|
| `/scheduling` | Scheduling | `scheduling:schedule:read` | List-detail/guided decision | Scheduling pattern migration complete in [Scheduling #8](https://git.add-ideas.de/GovOPlaN/govoplan-scheduling/issues/8), commit `c17cbda` |
|
||||||
| `/scheduling/public/:requestId/:token` | Scheduling | Public signed token | Public participation | Scheduling #8 complete in `c17cbda` |
|
| `/scheduling/public/:requestId/:token` | Scheduling | Public signed token | Public participation | Scheduling #8 complete in `c17cbda` |
|
||||||
| `/search` | Search | `search:result:read` | Search overlay/results | [Search #4](https://git.add-ideas.de/GovOPlaN/govoplan-search/issues/4) |
|
| `/search` | Search | `search:result:read` | Keyboard-first global/context overlay and full results fallback | Search pattern migration complete in [Search #4](https://git.add-ideas.de/GovOPlaN/govoplan-search/issues/4); durable evidence in `govoplan-search/docs/INTERFACE_PATTERN_MIGRATION.md` |
|
||||||
| `/templates` | Templates | Template read/write/publish/render/admin | Governed library, immutable-revision editor, compatibility preview, and render evidence | Templates pattern migration complete in [Templates #5](https://git.add-ideas.de/GovOPlaN/govoplan-templates/issues/5), commit `72fafa2` |
|
| `/templates` | Templates | Template read/write/publish/render/admin | Governed library, immutable-revision editor, compatibility preview, and render evidence | Templates pattern migration complete in [Templates #5](https://git.add-ideas.de/GovOPlaN/govoplan-templates/issues/5), commit `72fafa2` |
|
||||||
| `/voting` | Voting | `voting:ballot:read` | Governed ballot workspace | Voting pattern migration complete in [Voting #1](https://git.add-ideas.de/GovOPlaN/govoplan-voting/issues/1), commit `2625990` |
|
| `/voting` | Voting | `voting:ballot:read` | Governed ballot workspace | Voting pattern migration complete in [Voting #1](https://git.add-ideas.de/GovOPlaN/govoplan-voting/issues/1), commit `2625990` |
|
||||||
| `/workflow` | Workflow | Definition read or instance admin | Graph editor/execution evidence | [Workflow #15](https://git.add-ideas.de/GovOPlaN/govoplan-workflow/issues/15) |
|
| `/workflow` | Workflow | Definition read or instance admin | Native BPMN editor, governed revision actions and execution evidence | Workflow pattern migration complete in [Workflow #15](https://git.add-ideas.de/GovOPlaN/govoplan-workflow/issues/15); durable evidence in `govoplan-workflow/docs/INTERFACE_PATTERN_MIGRATION.md` |
|
||||||
|
|
||||||
|
## Final Module Closure Evidence
|
||||||
|
|
||||||
|
The final five module-owned work packages complete the 2026-08-03 rollout
|
||||||
|
snapshot. Their module documents are the durable detailed inventories; the
|
||||||
|
table below records the cross-product closure evidence.
|
||||||
|
|
||||||
|
| Owner | Dominant archetype and consequential boundary | Focused evidence |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| Workflow | Definition list-detail plus specialized native BPMN editor; save/activate/archive/delete/reset and instance transitions remain revisioned, confirmed, and Engine-owned | Shared dialogs/status/alerts/help, dirty-navigation guard, keyboard palette insertion, edge inspector alternative, responsive/reduced-motion contract, TypeScript and focused structure test |
|
||||||
|
| Search | Focus-contained global/context overlay plus URL-stable full results; filters only narrow permission-aware source results | F3/Ctrl/Cmd+K, listbox keyboard navigation, provider-partial diagnostics, shared controls/help, narrow layout and focused overlay/interface tests |
|
||||||
|
| Reporting | Three-region governed analytical workspace; runs, schedules, exports and publications retain purpose, permission, source and policy provenance | Shared grid/dialog/status/help, keyboard-explainable Run blockers, responsive task order, provider/semantic backend tests and focused interface test |
|
||||||
|
| Projects | Revisioned list-detail planning workspace; visibility and saves are ACL/OCC-governed and retain a change reason | Shared dialog/status/help/field labels, save errors attached to the editor, semantic list controls, responsive/focus contract and focused interface test |
|
||||||
|
| Portal | Explained service directory and exact-revision provider handoff; Portal never owns the launched case/form/workflow effect | Shared status/alert/toggle/help/blocker controls, stable disabled Open action with actor/action/destination, guarded navigation, responsive layout and focused interface test |
|
||||||
|
|
||||||
|
Future WebUI modules and newly added routes are not grandfathered by this
|
||||||
|
snapshot. They must meet the same surface definition of done in their owning
|
||||||
|
feature issue and pass the source/runtime inventory gates; they do not reopen
|
||||||
|
this finite migration program unless the pattern contract itself changes.
|
||||||
|
|
||||||
## Manifest And Runtime Route Alignment
|
## Manifest And Runtime Route Alignment
|
||||||
|
|
||||||
@@ -155,10 +174,10 @@ enabled and the actor passes the declared filters.
|
|||||||
| `/settings` | Core host | Profile; interface; workspace; local connection | Personal configuration with adaptive forms and immediate feedback | Pattern migration complete in Core #225 (`fa32cca`) |
|
| `/settings` | Core host | Profile; interface; workspace; local connection | Personal configuration with adaptive forms and immediate feedback | Pattern migration complete in Core #225 (`fa32cca`) |
|
||||||
| `/settings` | Files and Mail named capabilities | User-scoped file connections and mail profiles/policy | Optional integration regions disappear cleanly when capability absent | Files #42, Mail #20 and Core #225 complete |
|
| `/settings` | Files and Mail named capabilities | User-scoped file connections and mail profiles/policy | Optional integration regions disappear cleanly when capability absent | Files #42, Mail #20 and Core #225 complete |
|
||||||
| `/admin` and `/settings` | `govoplan-views` `admin.sections`, `settings.sections`, and `views.runtime` | System/tenant definition and assignment editors, personal/group editors, global selector | Versioned presentation projection with inheritance, lockout safeguards, optional directory targets, and no authorization effect | Pattern migration, contextual help, localized selector/editor, guarded drafts, explained inherited/permission/capability states, and focused evidence complete in Views #2 (`c125f33`) |
|
| `/admin` and `/settings` | `govoplan-views` `admin.sections`, `settings.sections`, and `views.runtime` | System/tenant definition and assignment editors, personal/group editors, global selector | Versioned presentation projection with inheritance, lockout safeguards, optional directory targets, and no authorization effect | Pattern migration, contextual help, localized selector/editor, guarded drafts, explained inherited/permission/capability states, and focused evidence complete in Views #2 (`c125f33`) |
|
||||||
| `/settings` | `govoplan-notifications` `settings.sections` | Notification preferences | Personal configuration | Unreviewed |
|
| `/settings` | `govoplan-notifications` `settings.sections` | Notification preferences | Personal configuration | Pattern migration, contextual help, permission/target explanation, typed toggles and focused evidence complete in Notifications #4 (`ad6a31f`) |
|
||||||
| `/dashboard` | Dashboard host and `dashboard.widgets` | Installed-modules widget; Ops health widget when Ops contributes it | Widget ordering, staleness, permissions, destination behavior | Unreviewed |
|
| `/dashboard` | Dashboard host and `dashboard.widgets` | Installed-modules widget; Ops health widget when Ops contributes it | Widget ordering, staleness, permissions, destination behavior | Pattern migration, view-aware composition, keyboard/drag alternatives, responsive packing, module filtering and focused evidence complete in Dashboard #3 (`da3947f`) |
|
||||||
| `/organizations` | IDM `organizations.functionActions` | Action leading to assignment view filtered by IDM scopes | Cross-module context action through explicit capability | IDM pattern migration complete in IDM #12 (`d864317`) |
|
| `/organizations` | IDM `organizations.functionActions` | Action leading to assignment view filtered by IDM scopes | Cross-module context action through explicit capability | IDM pattern migration complete in IDM #12 (`d864317`) |
|
||||||
| Campaign attachments/import | Files `files.fileExplorer` | Folder tree, managed chooser, file listing/pattern resolution/sharing | Optional domain composition without sibling-private imports | Pilot audit under Campaign #74 |
|
| Campaign attachments/import | Files `files.fileExplorer` | Folder tree, managed chooser, file listing/pattern resolution/sharing | Optional domain composition without sibling-private imports | Campaign #74 pilot complete; watched-folder and duplicate-attachment product policy remain independent Campaign #60/#61 features |
|
||||||
| Campaign review/send | Mail runtime `mail.devMailbox` | Mock-mail verification when backend advertises runtime capability | Optional review stage with unavailable/optional states | Explicit intervention and review-progress vocabulary delivered in Campaign #63; send modes/progress delivered in #62/#79 |
|
| Campaign review/send | Mail runtime `mail.devMailbox` | Mock-mail verification when backend advertises runtime capability | Optional review stage with unavailable/optional states | Explicit intervention and review-progress vocabulary delivered in Campaign #63; send modes/progress delivered in #62/#79 |
|
||||||
|
|
||||||
Other named capability exports (`files.connectors`, `organizations.functionPicker`,
|
Other named capability exports (`files.connectors`, `organizations.functionPicker`,
|
||||||
@@ -262,26 +281,25 @@ prove that the composition or states satisfy the pattern.
|
|||||||
|
|
||||||
| Surface / code evidence | Primary task | Target pattern | Material consequence/state | Known issue / rollout |
|
| Surface / code evidence | Primary task | Target pattern | Material consequence/state | Known issue / rollout |
|
||||||
| --- | --- | --- | --- | --- |
|
| --- | --- | --- | --- | --- |
|
||||||
| Campaign list (`CampaignListPage`) | Find, compare, create, open | List-detail entry | Campaign lifecycle/status and creation | Audit in [#74](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/74); guided entry [#35](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/35) |
|
| Campaign list (`CampaignListPage`) | Find, compare, create, open | List-detail entry | Campaign lifecycle/status and creation | #74 and guided entry [#35](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/35) complete |
|
||||||
| Overview (`CampaignOverviewPage`) | Understand/edit campaign identity, version, access, lifecycle | Object overview plus adaptive edit | Lock/archive/delete/access changes need real consequence and reversibility wording | #74 remaining audit |
|
| Overview (`CampaignOverviewPage`) | Understand/edit campaign identity, version, access, lifecycle | Object overview plus adaptive edit | Lock/archive/delete/access changes expose consequence, reversibility, owner/access and lifecycle evidence | #74 complete; lifecycle policy is independently extended in Campaign #26 |
|
||||||
| Fields (`CampaignFieldsPage`) | Define recipient/template field schema | Structured editor | Schema changes can invalidate recipient/template data | #74 audit |
|
| Fields (`CampaignFieldsPage`) | Define recipient/template field schema | Structured editor | Schema changes can invalidate recipient/template data | #74 complete |
|
||||||
| Attachments/files (`AttachmentsDataPage`, `AttachmentRulesOverlay`) | Select sources and attachment/ZIP rules | Directory chooser plus adaptive rule editor | Missing or mismatched files affect built messages | #74; attachment-detail [#59](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/59) |
|
| Attachments/files (`AttachmentsDataPage`, `AttachmentRulesOverlay`) | Select sources and attachment/ZIP rules | Directory chooser plus adaptive rule editor | Missing or mismatched files affect built messages | #74 and attachment-detail [#59](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/59) complete |
|
||||||
| Recipients (`RecipientDataPage`) | Select/import/map/edit recipients, address fields and per-recipient values/files | Import/mapping plus list-detail editor | Personal data, validation, bulk activation, file links | Consolidated editor delivered in #67; #74 remaining audit and guided entry #35 |
|
| Recipients (`RecipientDataPage`) | Select/import/map/edit recipients, address fields and per-recipient values/files | Import/mapping plus list-detail editor | Personal data, validation, bulk activation, file links | Consolidated editor #67, guided entry #35 and #74 audit complete; independent bulk action #68 remains product scope |
|
||||||
| Template (`TemplateDataPage`, placeholder/expression dialogs) | Author subject/body and preview substitutions | Adaptive editor plus stable preview | Generated communication content and unresolved expressions | #74; stable overlay [#73](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/73) |
|
| Template (`TemplateDataPage`, placeholder/expression dialogs) | Author subject/body and preview substitutions | Adaptive editor plus stable preview | Generated communication content and unresolved expressions | #74 and stable overlay [#73](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/73) complete |
|
||||||
| Mail settings (`MailSettingsPage` settings view) | Select/configure campaign mail transport | Adaptive configuration | Credentials, SMTP/IMAP destinations, test outcomes | #74; align with Core #225 mail pattern |
|
| Mail settings (`MailSettingsPage` settings view) | Select/configure campaign mail transport | Adaptive configuration | Credentials, SMTP/IMAP destinations, test outcomes | #74 and Core #225 shared mail pattern complete; final credential hierarchy remains Mail #10 |
|
||||||
| Campaign settings (`GlobalSettingsPage` settings view) | Configure campaign behavior | Adaptive configuration | Can alter validation/build/send behavior | #74 audit |
|
| Campaign settings (`GlobalSettingsPage` settings view) | Configure campaign behavior | Adaptive configuration | Can alter validation/build/send behavior | #74 complete |
|
||||||
| Mail policy (`MailSettingsPage` policy view) | Inspect/override effective mail policy | Effective policy/provenance editor | Inheritance and locks affect allowed delivery | #74; Core #225 policy pattern |
|
| Mail policy (`MailSettingsPage` policy view) | Inspect/override effective mail policy | Effective policy/provenance editor | Inheritance and locks affect allowed delivery | #74 and Core #225 effective-policy pattern complete |
|
||||||
| Campaign policy (`GlobalSettingsPage` policy view) | Inspect/override campaign policy | Effective policy/provenance editor | Inheritance, actor authority, and blocked edits | #74; Core #225 policy pattern |
|
| Campaign policy (`GlobalSettingsPage` policy view) | Inspect/override campaign policy | Effective policy/provenance editor | Inheritance, actor authority, and blocked edits | #74 and Core #225 effective-policy pattern complete |
|
||||||
| Review/send (`ReviewSendPage`) | Validate, build, mock-test, confirm/send, inspect results | Guided review/decision plus durable progress | External communication, bounded synchronous execution, persisted queue mode, partial effects, retries, evidence | Blocking/non-blocking interventions and reviewed/remaining evidence delivered in [#63](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/63); bounded synchronous and explicit/persisted queued modes delivered in [#62](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/62) and [#79](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/79); #74 audit remains |
|
| Review/send (`ReviewSendPage`) | Validate, build, mock-test, confirm/send, inspect results | Guided review/decision plus durable progress | External communication, bounded synchronous execution, persisted queue mode, partial effects, retries, evidence | Interventions #63, send/progress #62/#79 and #74 wording/accessibility audit complete |
|
||||||
| Message and attachment detail overlays | Inspect one built/mock message and its attachment links | Stable detail/review dialog | Personal data, exact outbound content, reviewed state | Delivered and verified in [#59](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/59) and [#73](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/73) |
|
| Message and attachment detail overlays | Inspect one built/mock message and its attachment links | Stable detail/review dialog | Personal data, exact outbound content, reviewed state | Delivered and verified in [#59](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/59) and [#73](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/73) |
|
||||||
| Campaign report (`CampaignReportPage`) | Filter and inspect delivery outcomes | Reporting/list-detail | Partial, failed, explicitly excluded/skipped, SMTP/IMAP outcomes and retries | Server-owned filtering and counts delivered in [#65](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/65) with the full-result DataGrid contract from [Core #263](https://git.add-ideas.de/GovOPlaN/govoplan-core/issues/263); excluded semantics in [#66](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/66) |
|
| Campaign report (`CampaignReportPage`) | Filter and inspect delivery outcomes | Reporting/list-detail | Partial, failed, explicitly excluded/skipped, SMTP/IMAP outcomes and retries | Server-owned filtering and counts delivered in [#65](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/65) with the full-result DataGrid contract from [Core #263](https://git.add-ideas.de/GovOPlaN/govoplan-core/issues/263); excluded semantics in [#66](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/66) |
|
||||||
| Audit (`CampaignAuditPage`) | Inspect campaign evidence/history | Provenance timeline/report | Actor/action/effect trace | #74 audit |
|
| Audit (`CampaignAuditPage`) | Reach campaign evidence/history | Explained provenance handoff | Campaign emits platform evidence; Audit owns reading, retention and bundles | #74 complete as an explicit Audit handoff; object-scoped projection may follow Audit #3 without a sibling-private import |
|
||||||
| JSON (`CampaignJsonView`) | Inspect expert representation | Advanced diagnostics/reference | Raw data may contain personal/configuration values; not a primary editor | #74 privacy/redaction audit |
|
| JSON (`CampaignJsonView`) | Inspect/download expert representation | Advanced diagnostics/reference | Full authorized configuration may contain personal data but no inline transport secrets | #74 privacy audit complete with explicit sensitivity warning and campaign-read boundary |
|
||||||
| Create wizard (`CreateWizard`) | Seed a campaign through basics, sender, fields, recipients, template, attachments, review, send | Guided setup | Current steps mix creation and later consequential delivery; completion semantics need audit | Guided first campaign [#35](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/35) |
|
| Create wizard (`CreateWizard`) | Seed a campaign through basics, sender, fields, recipients, template, attachments, review, send | Guided setup | Current steps mix creation and later consequential delivery; completion semantics need audit | Guided first campaign [#35](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/35) |
|
||||||
| Review/send wizard routes | Alternate guided review/send shells | Guided review | Tracked routes exist; implementation relationship to `ReviewSendPage` must be established, not guessed | #74 inventory decision |
|
| Review/send wizard routes | Focus the canonical review or send stage | Guided review | Thin wrappers render the same `ReviewSendPage` with a stable initial stage; no parallel workflow state exists | #74 inventory decision complete |
|
||||||
| Operator queue (`OperatorQueuePage`) | Monitor jobs and intervene | Monitoring/work queue | Campaign/version/job identity, historical active-version discovery, fixed action positions, authority-aware disabled states, exact non-overlapping queue counts, server-paged jobs, bounded refresh, retry/queue/reconcile per version, campaign-wide pause/resume/cancel, and leave/return progress | Durable operator controls delivered in [#78](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/78); #74 wording/accessibility audit remains |
|
| Operator queue (`OperatorQueuePage`) | Monitor jobs and intervene | Monitoring/work queue | Campaign/version/job identity, historical active-version discovery, fixed action positions, authority-aware disabled states, exact non-overlapping queue counts, server-paged jobs, bounded refresh, retry/queue/reconcile per version, campaign-wide pause/resume/cancel, and leave/return progress | Durable controls #78 and #74 wording/accessibility audit complete |
|
||||||
| Aggregate reports (`AggregateReportsPage`) | Compare cross-campaign delivery outcomes | Privacy-preserving aggregate reporting | Tenant/campaign ACL, deployment/tenant small-cell policy, complementary and overlapping-cell suppression, explicit denominator, and no recipient detail/diagnostics/export/drill-down | Separate aggregate-reader surface delivered in [#80](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/80); not parity with the permission-gated per-campaign detail report |
|
| Aggregate reports (`AggregateReportsPage`) | Compare cross-campaign delivery outcomes | Privacy-preserving aggregate reporting | Tenant/campaign ACL, deployment/tenant small-cell policy, complementary and overlapping-cell suppression, explicit denominator, and no recipient detail/diagnostics/export/drill-down | Separate aggregate-reader surface delivered in [#80](https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/80); not parity with the permission-gated per-campaign detail report |
|
||||||
| Templates route (`TemplatesPage`) | Browse template records | Directory/list-detail | Template availability and later generated outputs | #74 audit; verify missing route guard intent |
|
|
||||||
|
|
||||||
The five review stages currently named in code are `Validate and inspect`,
|
The five review stages currently named in code are `Validate and inspect`,
|
||||||
`Build and review`, `Mock send and verify`, `Confirm and send`, and `Delivery
|
`Build and review`, `Mock send and verify`, `Confirm and send`, and `Delivery
|
||||||
@@ -313,7 +331,7 @@ make every module symmetrical.
|
|||||||
|
|
||||||
| Order | Scope | Current evidence | Target | Owner / issue | Verification gate | Status |
|
| Order | Scope | Current evidence | Target | Owner / issue | Verification gate | Status |
|
||||||
| --- | --- | --- | --- | --- | --- | --- |
|
| --- | --- | --- | --- | --- | --- | --- |
|
||||||
| 0 | Product grammar and route inventory | Doctrine, ledger, layout rules, module contract, current route sources | One reconciled pattern language and evidence inventory | Meta [#11](https://git.add-ideas.de/GovOPlaN/govoplan/issues/11) | Docs links/diff checks; issue/wiki sync after integration | Initial slice in this document |
|
| 0 | Product grammar and route inventory | Doctrine, ledger, layout rules, module contract, current route sources | One reconciled pattern language and evidence inventory | Meta [#11](https://git.add-ideas.de/GovOPlaN/govoplan/issues/11) | Reviewed route/component inventory, module documents, manifest shapes and focused contracts | Complete 2026-08-03 |
|
||||||
| 1 | Campaign baseline integration | Recipient-editor WIP and tracker state have been reconciled with remote `main` | Integrated, testable baseline before migration claims | Campaign #67 and tracker cleanup | Backend and focused WebUI suites; issue evidence | Complete 2026-07-22 |
|
| 1 | Campaign baseline integration | Recipient-editor WIP and tracker state have been reconciled with remote `main` | Integrated, testable baseline before migration claims | Campaign #67 and tracker cleanup | Backend and focused WebUI suites; issue evidence | Complete 2026-07-22 |
|
||||||
| 2 | Campaign previews/details | Stable shared dialog with bounded scrolling and fixed responsive preview workspace | Stable header/body/footer, accessible long-content detail | Campaign #59 and #73 | Review-preview and overlay structure tests | Complete 2026-07-22 |
|
| 2 | Campaign previews/details | Stable shared dialog with bounded scrolling and fixed responsive preview workspace | Stable header/body/footer, accessible long-content detail | Campaign #59 and #73 | Review-preview and overlay structure tests | Complete 2026-07-22 |
|
||||||
| 3 | Campaign review/interventions | Five domain-owned stages use central blocker and guided-review primitives; validation/build warnings name action, actor, and destination; hard blockers, individual review, and group review remain distinct; reviewed/remaining counts survive reload through build-bound review evidence | Clear stages, outcomes, blockers, next actor/action, reviewed evidence | Campaign #63 | `reviewProgress` state tests, shared-component structure contract, TypeScript build, configured-system help topic, and Campaign documentation tests | Complete 2026-08-03 (`d635f3a`; Core primitives and contextual help `b823a22`) |
|
| 3 | Campaign review/interventions | Five domain-owned stages use central blocker and guided-review primitives; validation/build warnings name action, actor, and destination; hard blockers, individual review, and group review remain distinct; reviewed/remaining counts survive reload through build-bound review evidence | Clear stages, outcomes, blockers, next actor/action, reviewed evidence | Campaign #63 | `reviewProgress` state tests, shared-component structure contract, TypeScript build, configured-system help topic, and Campaign documentation tests | Complete 2026-08-03 (`d635f3a`; Core primitives and contextual help `b823a22`) |
|
||||||
@@ -322,12 +340,12 @@ make every module symmetrical.
|
|||||||
| 6 | Campaign operator recovery | A durable campaign/version queue page exposes historical work, exact non-overlapping state counts, persisted mode, permission-safe controls, server-paged job evidence, bounded refresh and active-state recovery | Fixed-position actions, disabled explanations, leave/return state, version-scoped retry/queue/reconcile and explicit campaign-wide pause/resume/cancel | Campaign #78 | Queue model/structure, historical-version, permission, paging, recovery-control, stale-response and delta tests | Complete 2026-07-22 (`21f3014`, `99d44ee`, `735e874`) |
|
| 6 | Campaign operator recovery | A durable campaign/version queue page exposes historical work, exact non-overlapping state counts, persisted mode, permission-safe controls, server-paged job evidence, bounded refresh and active-state recovery | Fixed-position actions, disabled explanations, leave/return state, version-scoped retry/queue/reconcile and explicit campaign-wide pause/resume/cancel | Campaign #78 | Queue model/structure, historical-version, permission, paging, recovery-control, stale-response and delta tests | Complete 2026-07-22 (`21f3014`, `99d44ee`, `735e874`) |
|
||||||
| 7 | Campaign aggregate reports | A separate aggregate-reader projection and UI expose only policy-suppressed business totals with a stable status domain | Explicit denominator and exclusions, deployment floor plus tenant-strengthened small-cell threshold, complementary and overlapping-cell suppression, no detail/export/diagnostics | Campaign #80 | Aggregate query, cross-metric suppression, route/role/ACL, stable filter and UI structure tests | Complete 2026-07-22 (`06125cc`, `fc36aee`, `8ee87b7`, `ac3329c`, `1225802`) |
|
| 7 | Campaign aggregate reports | A separate aggregate-reader projection and UI expose only policy-suppressed business totals with a stable status domain | Explicit denominator and exclusions, deployment floor plus tenant-strengthened small-cell threshold, complementary and overlapping-cell suppression, no detail/export/diagnostics | Campaign #80 | Aggregate query, cross-metric suppression, route/role/ACL, stable filter and UI structure tests | Complete 2026-07-22 (`06125cc`, `fc36aee`, `8ee87b7`, `ac3329c`, `1225802`) |
|
||||||
| 8 | Campaign excluded outcomes | Excluded build rows become explicit skipped transport outcomes and remain protected from queue/cancel/retry ambiguity | One durable source-to-job-to-report meaning with guarded historical normalization | Campaign #66 | Builder/persistence, migration, query/count, queue-control and report-explanation tests | Complete 2026-07-22 (`7229fb8`) |
|
| 8 | Campaign excluded outcomes | Excluded build rows become explicit skipped transport outcomes and remain protected from queue/cancel/retry ambiguity | One durable source-to-job-to-report meaning with guarded historical normalization | Campaign #66 | Builder/persistence, migration, query/count, queue-control and report-explanation tests | Complete 2026-07-22 (`7229fb8`) |
|
||||||
| 9 | Guided first campaign | Existing wizard routes and ordinary workspace overlap | Task-oriented entry that hands off clearly to normal editing/review | Campaign #35 | First-run flow, resume/back, validation, optional modules, no implicit send | P1 after core pilot patterns stabilize |
|
| 9 | Guided first campaign | Eight-stage creation flow persists current step/draft and hands off to ordinary review/delivery preparation | Task-oriented entry that hands off clearly to normal editing/review | Campaign #35 | First-run flow, resume/back, partial validation, immutable-history and optional-module behavior, no implicit send | Complete 2026-07-30 |
|
||||||
| 10 | Prove/extract generic primitives | Shared consequence, focus, help, blocker, unsaved-change, confirmation, connection-tree and effective-policy contracts now have Core and multiple module consumers | Keep Core behavior-only and leave domain composition in owning modules | Core #225 plus bounded follow-ups | Core behavior/accessibility tests and module-permutation tests | Complete 2026-08-03 (`fa32cca`; Files `d8ae506`; Mail `7844d9c`) |
|
| 10 | Prove/extract generic primitives | Shared consequence, focus, help, blocker, unsaved-change, confirmation, connection-tree and effective-policy contracts now have Core and multiple module consumers | Keep Core behavior-only and leave domain composition in owning modules | Core #225 plus bounded follow-ups | Core behavior/accessibility tests and module-permutation tests | Complete 2026-08-03 (`fa32cca`; Files `d8ae506`; Mail `7844d9c`) |
|
||||||
| 11 | Configured-system pattern help | Role/config-aware workflow, reference, pattern, and system topics are projected by Docs; shared route, field, blocker, and action links resolve to configured Docs or the hosted fallback | Stable configured-system guidance without feature-to-Docs imports | Docs #15 | Docs suite, shared component tests, Campaign review tests, 46 module permutations, full-product bundle budget | Complete 2026-08-03 (Docs `abe2f78`; Core `b823a22`; Campaign `d635f3a`) |
|
| 11 | Configured-system pattern help | Role/config-aware workflow, reference, pattern, and system topics are projected by Docs; shared route, field, blocker, and action links resolve to configured Docs or the hosted fallback | Stable configured-system guidance without feature-to-Docs imports | Docs #15 | Docs suite, shared component tests, Campaign review tests, 46 module permutations, full-product bundle budget | Complete 2026-08-03 (Docs `abe2f78`; Core `b823a22`; Campaign `d635f3a`) |
|
||||||
| 12 | Admin/configuration family | Core host/settings/credential/retention contracts, shared primitives, module lifecycle, Files, Mail, Policy, Access, Admin, Tenancy, Views, and Organizations are integrated and verified | Continue the same consequence/provenance grammar only through bounded module-owned migrations | Core #225 and module children | Per-surface state/accessibility/consequence evidence | Core #225 complete `fa32cca`; Access `1409dbf`; Files `d8ae506`; Mail `7844d9c`; Policy `f964ed7`; Admin `d428f33`; Tenancy `e76fe16`; Views `c125f33`; Organizations `97acfcb` |
|
| 12 | Admin/configuration family | Core host/settings/credential/retention contracts, shared primitives, module lifecycle, Files, Mail, Policy, Access, Admin, Tenancy, Views, and Organizations are integrated and verified | Continue the same consequence/provenance grammar only through bounded module-owned migrations | Core #225 and module children | Per-surface state/accessibility/consequence evidence | Core #225 complete `fa32cca`; Access `1409dbf`; Files `d8ae506`; Mail `7844d9c`; Policy `f964ed7`; Admin `d428f33`; Tenancy `e76fe16`; Views `c125f33`; Organizations `97acfcb` |
|
||||||
| 13 | Remaining module surfaces | 33 bounded module-owned issues cover every WebUI contributor not already tracked by Campaign #74 or completed Docs #15 | Per-module audit and migration, ordered by user task and consequence rather than a bulk rewrite | Issues linked in the direct-route and composed-surface sections | Module-focused tests, manifest shapes, contextual Docs, and applicable definition-of-done gates | Scheduling `c17cbda`, Audit `6d3fcc1`, Access `1409dbf`, Files `d8ae506`, Mail `7844d9c`, Policy `f964ed7`, Admin `d428f33`, Tenancy `e76fe16`, Views `c125f33`, Organizations `97acfcb`, Postbox `a97eb3b`, IDM `d864317`, Committee `e64af30`, Approvals `24e9559`, Forms Runtime `07dd35b`, Forms `e505536`, Voting `2625990`, Distribution Lists `6cdd804`, Templates `72fafa2`, Addresses `f9a7185`, Datasources `6406ce7`, Dataflow `109ddcd`, Dashboard `da3947f`, Cases `43b4cc8`, Calendar `d7fd944`, Ops `2b32643`, Notifications `ad6a31f`, and Risk Compliance `24d80a6` complete |
|
| 13 | Remaining module surfaces | 33 bounded module-owned issues cover every WebUI contributor not already tracked by Campaign #74 or completed Docs #15 | Per-module audit and migration, ordered by user task and consequence rather than a bulk rewrite | Issues linked in the direct-route and composed-surface sections | Module-focused tests, manifest shapes, contextual Docs, and applicable definition-of-done gates | Complete: prior 28 recorded commits plus Workflow #15, Search #4, Reporting #8, Projects #2 and Portal #2 verified 2026-08-03 |
|
||||||
| 14 | Manifest/runtime alignment | Several executable routes are absent from manifest metadata | Declared alignment or explicit validated exception | Core contract issue to create | Automated manifest/module route check and configured Docs verification | Discovery follow-up |
|
| 14 | Manifest/runtime alignment | Authenticated canonical routes align; public signed-token and compatibility routes are explicit exceptions | Stable declarations reconcile with source and any effective runtime module combination | [Meta #25](https://git.add-ideas.de/GovOPlaN/govoplan/issues/25) | Strict duplicate/stale/undeclared declaration CI, per-module digests, and authorized read-only runtime inventory | Complete 2026-08-04 |
|
||||||
|
|
||||||
Workflow remains outside this rollout matrix because it has its own runtime and
|
Workflow remains outside this rollout matrix because it has its own runtime and
|
||||||
editor workstream, not because it is postponed. Focused views can be specified,
|
editor workstream, not because it is postponed. Focused views can be specified,
|
||||||
|
|||||||
@@ -0,0 +1,184 @@
|
|||||||
|
# Package Registry Releases
|
||||||
|
|
||||||
|
GovOPlaN publishes reusable module artifacts through Gitea's native PyPI and
|
||||||
|
npm registries. These packages improve developer installation, release
|
||||||
|
resolution, cacheability, and artifact inspection. They do not replace the
|
||||||
|
signed runtime distribution: the signed manifest and digest-pinned OCI images
|
||||||
|
remain the production deployment authority.
|
||||||
|
|
||||||
|
## Publication boundary
|
||||||
|
|
||||||
|
Every repository with a `pyproject.toml` contains
|
||||||
|
`.gitea/workflows/module-package-release.yml`. The meta repository owns the
|
||||||
|
canonical template and installs it with:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python tools/repo/sync-module-package-workflows.py --write
|
||||||
|
python tools/repo/sync-module-package-workflows.py --check
|
||||||
|
```
|
||||||
|
|
||||||
|
The workflow runs for `v*` tags and may be dispatched manually for an existing
|
||||||
|
tag. The organization preflight verifies that every package repository protects
|
||||||
|
the `v*` namespace. Before building, the workflow itself verifies that:
|
||||||
|
|
||||||
|
- the tagged commit is contained in `main`;
|
||||||
|
- the tag, Python project version, and optional WebUI package version agree;
|
||||||
|
- package names remain in the `govoplan-*` and `@govoplan/*-webui` namespaces.
|
||||||
|
|
||||||
|
The workflow binds the repository explicitly from the Gitea Actions context.
|
||||||
|
Do not rely on GitHub-compatible environment variables being injected by the
|
||||||
|
runner image; Gitea runners may expose only the context values. Gitea 1.24 job
|
||||||
|
tokens cannot read repository tag-protection settings, so package jobs must not
|
||||||
|
receive a broad administrator token merely to repeat the organization preflight.
|
||||||
|
Run the following before the first publication and after repository or tag-rule
|
||||||
|
changes:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python tools/gitea/gitea-configure-package-releases.py
|
||||||
|
```
|
||||||
|
|
||||||
|
Preview and dispatch the exact wheel/WebUI versions selected by the developer
|
||||||
|
meta-package with:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python tools/gitea/gitea-dispatch-package-set.py \
|
||||||
|
--env-file ~/.config/gitea/gitea.env
|
||||||
|
python tools/gitea/gitea-dispatch-package-set.py \
|
||||||
|
--env-file ~/.config/gitea/gitea.env \
|
||||||
|
--apply
|
||||||
|
```
|
||||||
|
|
||||||
|
The dispatcher reads exact versions from `packages/govoplan-meta/pyproject.toml`,
|
||||||
|
inspects the selected tag to determine whether a WebUI package is expected,
|
||||||
|
skips complete registry pairs and does not duplicate an active workflow. Use
|
||||||
|
`--repository govoplan-core` for a bounded dispatch or `--verify-existing` to
|
||||||
|
rebuild and hash-verify versions already present in both registries.
|
||||||
|
|
||||||
|
For coordinated lockstep tags, `push-release-tag.sh` pushes module tags first,
|
||||||
|
Core next, and the meta tag last. This is a dependency guarantee for a
|
||||||
|
single-capacity Actions runner: the developer package cannot run before its
|
||||||
|
exact Core and module versions have entered the queue.
|
||||||
|
|
||||||
|
The same release entry point first validates the migration graph, then records
|
||||||
|
the reviewed current Alembic heads under the target release version and reruns
|
||||||
|
the strict migration audit before it changes package versions, commits, or
|
||||||
|
tags. The default preflight intentionally does not require those heads to exist
|
||||||
|
in the previous release baseline. A failed candidate-baseline check therefore
|
||||||
|
cannot produce a protected package release.
|
||||||
|
|
||||||
|
The source gate validates `pyproject.toml`, the module version declaration
|
||||||
|
(`MODULE_VERSION` or the top-level `ModuleManifest.version`), public package
|
||||||
|
`__version__`, and WebUI metadata before creating tags. Release-tag artifact
|
||||||
|
checks run only after the candidate tags and immutable WebUI lock have been
|
||||||
|
created locally.
|
||||||
|
|
||||||
|
Release-lock regeneration resolves a fresh immutable lock from the reviewed
|
||||||
|
candidate manifests; it does not seed resolution from the previous release
|
||||||
|
lock. This prevents removed transitive packages and stale peer metadata from
|
||||||
|
blocking or contaminating the new release. Candidate resolution also uses an
|
||||||
|
isolated temporary npm cache, so a locally replaced tag cannot reuse metadata
|
||||||
|
from a failed, unpushed release attempt.
|
||||||
|
|
||||||
|
Modules that retain the same WebUI package identity in both a root publish
|
||||||
|
manifest and `webui/package.json` use the WebUI manifest as the canonical peer
|
||||||
|
contract. The coordinated release synchronizes `peerDependencies` and
|
||||||
|
`peerDependenciesMeta` into the publish manifest before creating the module
|
||||||
|
tag, then synchronizes each lockfile root from the final package metadata. A
|
||||||
|
distinct root package remains independent.
|
||||||
|
|
||||||
|
It builds one wheel and, where applicable, one npm tarball. The workflow records
|
||||||
|
the source tag, source commit, filename, size, and SHA-256 in
|
||||||
|
`package-artifacts.json` before publishing. Gitea rejects a second upload of the
|
||||||
|
same package version, so correction requires a new version rather than artifact
|
||||||
|
replacement.
|
||||||
|
|
||||||
|
A retry after partial publication is safe. Before upload, the workflow reads the
|
||||||
|
native package registry file record and compares its SHA-256 with the artifact
|
||||||
|
rebuilt from the protected tag. An exact existing artifact is skipped; a
|
||||||
|
same-version artifact with another digest or an unexpected file set fails
|
||||||
|
closed. This permits a failed npm publication to resume without weakening
|
||||||
|
package immutability or accepting `--skip-existing` blindly.
|
||||||
|
|
||||||
|
The npm tarball is always published through an explicit local `./dist/...`
|
||||||
|
path. Without that prefix, npm may interpret a relative tarball name as a Git
|
||||||
|
package shorthand before it ever contacts the configured registry.
|
||||||
|
|
||||||
|
Published WebUI packages contain registry-compatible dependencies only. The
|
||||||
|
workflow converts an internal dependency pinned to a protected `vX.Y.Z` Git tag
|
||||||
|
into the exact `X.Y.Z` registry version and rejects unresolved `file:` or Git
|
||||||
|
dependencies. Repository development metadata may therefore keep local or Git
|
||||||
|
references without leaking them into the published package contract.
|
||||||
|
Historical `add-ideas` and current `GovOPlaN` organization URLs are accepted
|
||||||
|
for immutable tagged releases; both normalize to the same exact registry
|
||||||
|
dependency and no branch or unversioned Git reference is accepted.
|
||||||
|
|
||||||
|
## One-time Gitea setup
|
||||||
|
|
||||||
|
Protect `v*` tags in every package repository and the meta repository. Allow
|
||||||
|
only the `Owners` team to create or delete those tags.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
set -a
|
||||||
|
. ~/.config/gitea/gitea.env
|
||||||
|
set +a
|
||||||
|
python tools/gitea/gitea-configure-package-releases.py --apply
|
||||||
|
```
|
||||||
|
|
||||||
|
Create a dedicated personal access token with only `write:package` scope and
|
||||||
|
store these organization-level Actions secrets on `GovOPlaN`:
|
||||||
|
|
||||||
|
- `GOVOPLAN_PACKAGE_USERNAME`: account owning the package token;
|
||||||
|
- `GOVOPLAN_PACKAGE_TOKEN`: dedicated package-write token.
|
||||||
|
|
||||||
|
Do not use an administrator or general release token. Gitea 1.24 does not grant
|
||||||
|
package publication to the automatic Actions job token. Organization secrets
|
||||||
|
allow the same least-privilege credential to serve every module workflow.
|
||||||
|
|
||||||
|
## Exact release consumption
|
||||||
|
|
||||||
|
`tools/release/generate-release-package-set.py` translates the reviewed Git
|
||||||
|
source refs in `requirements-release.txt` into an exact registry package set.
|
||||||
|
It resolves each version tag to its commit and verifies the package metadata in
|
||||||
|
that tag.
|
||||||
|
|
||||||
|
`tools/release/resolve-package-artifacts.py` then downloads exactly those wheel
|
||||||
|
and WebUI versions from Gitea. It reads the identity embedded in every wheel and
|
||||||
|
npm tarball, rejects missing, duplicate, unexpected, or oversized artifacts,
|
||||||
|
and writes `package-artifacts.lock.json` with SHA-256 values and npm integrity
|
||||||
|
values. Credentials are accepted only through environment variables and are
|
||||||
|
never written to the lock. Python resolution ignores ambient pip configuration
|
||||||
|
and extra indexes for GovOPlaN roots, preventing an internal package name from
|
||||||
|
being selected from an undeclared registry.
|
||||||
|
|
||||||
|
The runtime distribution workflow uses the verified wheelhouse directly and
|
||||||
|
installs module WebUI tarballs only after matching them to the lock. It publishes
|
||||||
|
the package set, package lock, and hash-locked requirements as release assets.
|
||||||
|
The package-lock SHA-256 is part of the signed distribution manifest. Runtime
|
||||||
|
finalization also requires the lock's package versions and hashes to match the
|
||||||
|
wheel composition embedded in the images. OCI assembly remains network-free
|
||||||
|
after package and third-party dependency resolution.
|
||||||
|
|
||||||
|
The source refs remain in the module catalog for source provenance and release
|
||||||
|
planning. Production installation consumes the signed runtime images rather
|
||||||
|
than invoking `pip`, `npm`, or Git on the target host.
|
||||||
|
|
||||||
|
## Developer meta-package
|
||||||
|
|
||||||
|
`packages/govoplan-meta` builds the optional `govoplan` package. Its default
|
||||||
|
dependencies mirror the reviewed runtime roots; `govoplan[full]` adds all
|
||||||
|
currently packageable workspace modules. Regenerate it after changing release
|
||||||
|
requirements or package versions:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python tools/release/generate-developer-meta-package.py
|
||||||
|
python tools/release/generate-developer-meta-package.py --check
|
||||||
|
```
|
||||||
|
|
||||||
|
`push-release-tag.sh` performs this synchronization before release commits and
|
||||||
|
tags. The meta-package is for editable/developer setup and composition tests. It
|
||||||
|
does not enable modules, apply migrations, provision services, or establish
|
||||||
|
backup and recovery evidence.
|
||||||
|
|
||||||
|
Generic Packages are intentionally not used. Add that transport only when a
|
||||||
|
consumer needs an artifact format unsupported by PyPI, npm, Gitea Releases, or
|
||||||
|
the OCI registry.
|
||||||
@@ -25,6 +25,7 @@ releases, module boundaries, migrations, and security controls.
|
|||||||
| Labels and translations | Generated translation catalogs plus source usage |
|
| Labels and translations | Generated translation catalogs plus source usage |
|
||||||
| Fields and help coverage | Shared form components plus generated TypeScript AST inventory |
|
| Fields and help coverage | Shared form components plus generated TypeScript AST inventory |
|
||||||
| API use by the WebUI | Typed API clients plus generated static reference inventory |
|
| API use by the WebUI | Typed API clients plus generated static reference inventory |
|
||||||
|
| Stable platform interface IDs | Typed manifest/WebUI declarations plus line-independent source anchors for low-level controls |
|
||||||
| Effective configuration | Owning module data plus Policy provenance |
|
| Effective configuration | Owning module data plus Policy provenance |
|
||||||
|
|
||||||
Runtime introspection is authoritative for an installed system. Static source
|
Runtime introspection is authoritative for an installed system. Static source
|
||||||
@@ -45,9 +46,13 @@ The command writes:
|
|||||||
- `audit-reports/platform-inventory/platform-interface-inventory.json`
|
- `audit-reports/platform-inventory/platform-interface-inventory.json`
|
||||||
- `audit-reports/platform-inventory/platform-interface-inventory.md`
|
- `audit-reports/platform-inventory/platform-interface-inventory.md`
|
||||||
|
|
||||||
Use `--strict` in CI. In addition to translation coverage, strict mode requires
|
Use `--strict` for the combined translation, endpoint, and declaration audit.
|
||||||
every backend endpoint without a statically visible WebUI path to have an exact
|
Use `--strict-declarations` for duplicate/stale/undeclared interface checks
|
||||||
entry in
|
without making existing translation coverage a release blocker. Use
|
||||||
|
`--strict-endpoints` in the endpoint-surface CI gate so unrelated translation
|
||||||
|
catalog work cannot disable route classification enforcement. Both strict modes
|
||||||
|
require every backend endpoint without a statically visible WebUI path to have
|
||||||
|
an exact entry in
|
||||||
`tools/inventory/endpoint-surface-declarations.json`. The registry is keyed by
|
`tools/inventory/endpoint-surface-declarations.json`. The registry is keyed by
|
||||||
repository, HTTP method, and canonical version-independent path. It accepts:
|
repository, HTTP method, and canonical version-independent path. It accepts:
|
||||||
|
|
||||||
@@ -73,6 +78,16 @@ It combines:
|
|||||||
2. TypeScript AST extraction of fields, label attributes, visible text,
|
2. TypeScript AST extraction of fields, label attributes, visible text,
|
||||||
translations, frontend routes, navigation, capabilities, and API references
|
translations, frontend routes, navigation, capabilities, and API references
|
||||||
3. Python AST extraction of FastAPI route decorators and router prefixes
|
3. Python AST extraction of FastAPI route decorators and router prefixes
|
||||||
|
4. normalized runtime declarations from every loaded `ModuleManifest`
|
||||||
|
|
||||||
|
The declaration set covers routes, navigation, View surfaces, fields, actions,
|
||||||
|
help references, translations, admin/settings sections, widgets, search
|
||||||
|
objects, permissions, provided interfaces, and backend capabilities. Typed
|
||||||
|
module contributions keep their declared IDs. Shared controls may declare
|
||||||
|
`interfaceId` and `helpTopicId`; otherwise the extractor assigns a deterministic
|
||||||
|
source anchor based on repository, file, component context, control type, and
|
||||||
|
semantic label rather than a line number. The JSON records which identity
|
||||||
|
source was used.
|
||||||
|
|
||||||
The JSON includes exact repository, file, and line evidence. A missing-help
|
The JSON includes exact repository, file, and line evidence. A missing-help
|
||||||
entry is a review candidate because dynamic parent components may supply help.
|
entry is a review candidate because dynamic parent components may supply help.
|
||||||
@@ -80,9 +95,40 @@ A backend route without a static frontend reference is also a review candidate:
|
|||||||
public APIs, workers, callbacks, health checks, connectors, and dynamic URL
|
public APIs, workers, callbacks, health checks, connectors, and dynamic URL
|
||||||
assembly are valid explanations.
|
assembly are valid explanations.
|
||||||
|
|
||||||
`--strict` currently enforces only translation-catalog completeness. Endpoint
|
The module matrix enforces endpoint and interface declarations with
|
||||||
and help classifications need narrow reviewed baselines before they can become
|
`--strict-endpoints --strict-declarations`.
|
||||||
release gates.
|
Combined `--strict` additionally fails when used translation keys are absent
|
||||||
|
from generated locale catalogs. Help-text findings remain review candidates
|
||||||
|
rather than a release gate because dynamic parent components can supply help.
|
||||||
|
|
||||||
|
## Runtime Comparison
|
||||||
|
|
||||||
|
Core exposes a sanitized read-only catalog at
|
||||||
|
`GET /api/v1/platform/interface-catalog`. Access requires
|
||||||
|
`admin:module:read` or `system:settings:read`. Tenant module entitlements are
|
||||||
|
applied before serialization, so the response describes only the effective
|
||||||
|
installed combination. It contains IDs, paths, authorization metadata,
|
||||||
|
versions, counts, and canonical digests; it excludes factories, callbacks,
|
||||||
|
credentials, and mutable runtime state.
|
||||||
|
|
||||||
|
Capture and compare a running installation:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
curl --fail --silent \
|
||||||
|
-H "Authorization: Bearer $GOVOPLAN_ACCESS_TOKEN" \
|
||||||
|
"$GOVOPLAN_URL/api/v1/platform/interface-catalog" \
|
||||||
|
> /tmp/govoplan-runtime-interface.json
|
||||||
|
|
||||||
|
./.venv/bin/python tools/inventory/platform-interface-inventory.py \
|
||||||
|
--runtime-snapshot /tmp/govoplan-runtime-interface.json \
|
||||||
|
--strict-declarations \
|
||||||
|
--strict-endpoints
|
||||||
|
```
|
||||||
|
|
||||||
|
The comparison accepts any installed subset. Every module present in the
|
||||||
|
runtime response must have the same contract version, module version, and
|
||||||
|
declaration digest as the static release inventory. Unknown, duplicate, or
|
||||||
|
mismatched runtime modules fail strict declaration mode.
|
||||||
|
|
||||||
## Admin Information Architecture
|
## Admin Information Architecture
|
||||||
|
|
||||||
@@ -136,13 +182,20 @@ Custom code, new routes, arbitrary SQL, and executable workflow nodes remain
|
|||||||
release artifacts. Modeling them as ordinary configuration would create an
|
release artifacts. Modeling them as ordinary configuration would create an
|
||||||
unreviewed code-execution and migration channel.
|
unreviewed code-execution and migration channel.
|
||||||
|
|
||||||
## Next Enforcement Slices
|
## Enforced Contract
|
||||||
|
|
||||||
1. Require every WebUI module route and admin/settings contribution to have
|
1. Public WebUI routes and View surfaces must reconcile with runtime manifest
|
||||||
matching manifest metadata or a reviewed exception.
|
metadata; stale runtime routes and source-only public surfaces fail CI.
|
||||||
2. Add stable field IDs and optional help-topic IDs to shared field components.
|
2. Duplicate stable IDs fail CI. Shared controls support explicit field/action
|
||||||
3. Classify each statically unreferenced backend endpoint by consumer type.
|
and help-topic identities; fallback anchors remain visible review evidence.
|
||||||
4. Compare a running installation's OpenAPI and module registry against the
|
3. Every statically unreferenced backend endpoint has an exact reviewed
|
||||||
release inventory.
|
consumer classification, and stale classifications fail CI.
|
||||||
5. Publish the sanitized installed-system structure through Ops/Docs for
|
4. Runtime module combinations can be compared exactly with static release
|
||||||
authorized administrators.
|
evidence through versioned per-module digests.
|
||||||
|
5. Runtime introspection is authorized, tenant-filtered, and read-only. It is
|
||||||
|
safe for Ops/Docs projection but is not a generic configuration or code
|
||||||
|
mutation channel.
|
||||||
|
|
||||||
|
Generated JSON and Markdown remain build/audit artifacts. Do not hand-edit or
|
||||||
|
use them as a backlog; change the owning manifest, typed WebUI contribution,
|
||||||
|
translation/help declaration, or exact endpoint classification instead.
|
||||||
|
|||||||
@@ -0,0 +1,182 @@
|
|||||||
|
# Production Target And Independent Evidence Handoff
|
||||||
|
|
||||||
|
This runbook identifies the external inputs needed to finish
|
||||||
|
[GovOPlaN #27](https://git.add-ideas.de/GovOPlaN/govoplan/issues/27) and
|
||||||
|
[GovOPlaN #37](https://git.add-ideas.de/GovOPlaN/govoplan/issues/37). The
|
||||||
|
repository can render, inspect and sign evidence for a target, but it cannot
|
||||||
|
manufacture an independent failure domain or an independent approval authority.
|
||||||
|
|
||||||
|
## GovOPlaN #27: real two-node target
|
||||||
|
|
||||||
|
The bounded acceptance target is two independently schedulable worker nodes.
|
||||||
|
The API and WebUI must each have ready replicas on both nodes, all Deployments
|
||||||
|
must be available, the active module composition and software versions must be
|
||||||
|
consistent, every configured queue must have a worker, and the database
|
||||||
|
connection budget must pass. The validation then deletes one ready API pod and
|
||||||
|
requires replacement without an observed readiness outage.
|
||||||
|
|
||||||
|
Two virtual machines on different physical hosts or availability zones meet the
|
||||||
|
failure-domain intent. Two containers, VMs or Kubernetes nodes on one physical
|
||||||
|
host are useful development targets but do not close #27. A two-worker cluster
|
||||||
|
also does not prove control-plane high availability. For a self-managed
|
||||||
|
production cluster, use three control-plane nodes plus at least two workers; a
|
||||||
|
managed control plane plus two workers is the shorter path.
|
||||||
|
|
||||||
|
### What the target owner must provide
|
||||||
|
|
||||||
|
Provide these through a secure handoff, not an issue, chat message or Git:
|
||||||
|
|
||||||
|
1. A kubeconfig path with access to the target, for example
|
||||||
|
`~/.config/govoplan/targets/<target>.kubeconfig`, mode `0600`.
|
||||||
|
2. A stable installation ID, public HTTPS hostname, namespace, ingress class and
|
||||||
|
TLS-secret or certificate-manager arrangement.
|
||||||
|
3. Two independently schedulable workers and permission to place API and WebUI
|
||||||
|
replicas on both.
|
||||||
|
4. External, logically shared PostgreSQL, Redis and S3 endpoints with trusted
|
||||||
|
CA material and network reachability from every worker. Do not co-locate the
|
||||||
|
only copies of these services on the two workers used for the failure drill.
|
||||||
|
5. The six runtime secret values required by the generated manifest:
|
||||||
|
`MASTER_KEY_B64`, `DATABASE_URL`, `GOVOPLAN_DATABASE_URL_PGTOOLS`,
|
||||||
|
`REDIS_URL`, `FILE_STORAGE_S3_ACCESS_KEY_ID` and
|
||||||
|
`FILE_STORAGE_S3_SECRET_ACCESS_KEY`.
|
||||||
|
6. A short-lived GovOPlaN API key limited to `ops:operations:read`, supplied in
|
||||||
|
`GOVOPLAN_OPS_API_KEY` only for evidence collection.
|
||||||
|
7. An approved drill window and permission to delete one API pod.
|
||||||
|
|
||||||
|
If no Kubernetes target exists, provide hostnames/IP addresses for the machines,
|
||||||
|
an SSH user and key path, the internal/external DNS plan, and the permitted
|
||||||
|
firewall ports. Those inputs are sufficient to provision a k3s target. They are
|
||||||
|
not sufficient to claim control-plane HA unless three control-plane failure
|
||||||
|
domains are present.
|
||||||
|
|
||||||
|
### Separate deployment and evidence authorities
|
||||||
|
|
||||||
|
The deployment identity may create and update the namespace, Secret,
|
||||||
|
ConfigMap, Deployments, Services, Jobs, PodDisruptionBudgets and Ingress. The
|
||||||
|
evidence collector only needs:
|
||||||
|
|
||||||
|
- cluster scope: `get` and `list` for `nodes`;
|
||||||
|
- target namespace: `get` and `list` for `pods` and `deployments`;
|
||||||
|
- target namespace during the approved drill: `delete` for `pods`.
|
||||||
|
|
||||||
|
Use separate kubeconfig contexts or service accounts when the same person does
|
||||||
|
not hold both roles.
|
||||||
|
|
||||||
|
### Render, apply and verify
|
||||||
|
|
||||||
|
Use the signed, digest-pinned installation bundle selected for the target:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
export KUBECONFIG="$HOME/.config/govoplan/targets/<target>.kubeconfig"
|
||||||
|
|
||||||
|
python tools/deployment/govoplan-deploy.py render-kubernetes \
|
||||||
|
--directory /srv/govoplan/<installation-id> \
|
||||||
|
--namespace govoplan \
|
||||||
|
--secret-name govoplan-runtime \
|
||||||
|
--tls-secret-name govoplan-tls \
|
||||||
|
--ingress-class-name nginx \
|
||||||
|
--output /srv/govoplan/<installation-id>/kubernetes.json
|
||||||
|
|
||||||
|
kubectl apply -f /srv/govoplan/<installation-id>/kubernetes.json
|
||||||
|
kubectl -n govoplan wait --for=condition=available deployment --all --timeout=10m
|
||||||
|
|
||||||
|
export GOVOPLAN_OPS_API_KEY="$(cat /run/secrets/govoplan-ops-evidence-key)"
|
||||||
|
python tools/deployment/govoplan-deploy.py verify-kubernetes \
|
||||||
|
--directory /srv/govoplan/<installation-id> \
|
||||||
|
--namespace govoplan \
|
||||||
|
--exercise-api-pod-loss \
|
||||||
|
--output /srv/govoplan/<installation-id>/evidence/kubernetes-multi-host.json
|
||||||
|
unset GOVOPLAN_OPS_API_KEY
|
||||||
|
```
|
||||||
|
|
||||||
|
The verifier emits sanitized JSON and exits nonzero if the topology, runtime,
|
||||||
|
queue, connection-budget or pod-loss checks fail. Preserve the private cluster
|
||||||
|
logs and manifest alongside the sanitized result in the controlled evidence
|
||||||
|
store.
|
||||||
|
|
||||||
|
## GovOPlaN #37: controlled signed target evidence
|
||||||
|
|
||||||
|
Yes, collection, review and signing can run in containers. A container provides
|
||||||
|
repeatability and process isolation; it does not create independent authority.
|
||||||
|
The production approver must control a different private key from the target
|
||||||
|
operator/assessor and must review the evidence before signing the
|
||||||
|
`production_approval` scope.
|
||||||
|
|
||||||
|
Use at least these three key boundaries:
|
||||||
|
|
||||||
|
1. **Installer authority:** signs installed-release-origin receipts only.
|
||||||
|
2. **Target assessment authority:** signs the permitted target, accessibility,
|
||||||
|
privacy, security, operations and recovery scopes.
|
||||||
|
3. **Production approval authority:** independently signs only
|
||||||
|
`production_approval` after reviewing the other evidence.
|
||||||
|
|
||||||
|
Do not reuse release-catalog keys for any of these roles. Keep private Ed25519
|
||||||
|
keys outside Git, Gitea, GovOPlaN application storage and chat. Publish only the
|
||||||
|
public keyrings. The proof issuer already rejects key reuse across release,
|
||||||
|
installer and proof trust domains.
|
||||||
|
|
||||||
|
### Generate independently held keys
|
||||||
|
|
||||||
|
Each authority runs this command in its own `0700` directory. The generator
|
||||||
|
refuses existing output paths and writes both files as `0600`:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
install -d -m 0700 "$HOME/.config/govoplan/authority-keys"
|
||||||
|
|
||||||
|
python tools/assessments/generate-authority-keypair.py \
|
||||||
|
--purpose proof \
|
||||||
|
--key-id authority:target-2026 \
|
||||||
|
--scope target_environment \
|
||||||
|
--scope accessibility \
|
||||||
|
--scope privacy \
|
||||||
|
--scope security \
|
||||||
|
--scope operations \
|
||||||
|
--scope recovery \
|
||||||
|
--private-key "$HOME/.config/govoplan/authority-keys/target-2026.pem" \
|
||||||
|
--keyring "$HOME/.config/govoplan/authority-keys/target-2026-public.json"
|
||||||
|
```
|
||||||
|
|
||||||
|
The independent production approver generates another key with only
|
||||||
|
`--scope production_approval`. An installer authority uses `--purpose installer`
|
||||||
|
and no `--scope`. Merge public key entries into the separately controlled
|
||||||
|
keyrings only after the responsible authorities verify fingerprints out of
|
||||||
|
band.
|
||||||
|
|
||||||
|
### Container boundary
|
||||||
|
|
||||||
|
Use two one-shot jobs or containers:
|
||||||
|
|
||||||
|
- **Collector/assessor:** network access, read-only source and trust mounts,
|
||||||
|
read/write private evidence output, and the narrowly scoped kubeconfig. It
|
||||||
|
must not receive the production-approval private key.
|
||||||
|
- **Production approver:** `--network none`, read-only assessment/evidence/trust
|
||||||
|
mounts, a read-only secret mount containing only the approval key, and a
|
||||||
|
separate output mount. It must not receive deployment credentials.
|
||||||
|
|
||||||
|
Build or select the assessment image by digest and record that digest in the
|
||||||
|
evidence log. A representative runtime shape is:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run --rm --network none --read-only --tmpfs /tmp \
|
||||||
|
--user "$(id -u):$(id -g)" \
|
||||||
|
--mount type=bind,src="$PWD/evidence",dst=/evidence,readonly \
|
||||||
|
--mount type=bind,src="$PWD/trust",dst=/trust,readonly \
|
||||||
|
--mount type=bind,src="$HOME/.config/govoplan/authority-keys",dst=/run/keys,readonly \
|
||||||
|
--mount type=bind,src="$PWD/approved",dst=/output \
|
||||||
|
<assessment-image>@sha256:<digest> \
|
||||||
|
<assessment command>
|
||||||
|
```
|
||||||
|
|
||||||
|
The current evidence commands and required scopes are documented in
|
||||||
|
[`TARGET_MATURITY_EVIDENCE_RUNBOOK.md`](TARGET_MATURITY_EVIDENCE_RUNBOOK.md).
|
||||||
|
The final proof must cover `target_environment`, `accessibility`, `privacy`,
|
||||||
|
`security`, `operations`, `recovery` and independent `production_approval`, and
|
||||||
|
must bind to the verified installed composition and installer receipt.
|
||||||
|
|
||||||
|
## Completion boundary
|
||||||
|
|
||||||
|
#27 can close after the real target produces a passing pod-loss result. #37 can
|
||||||
|
close after an independently approved, schema-valid proof is generated for that
|
||||||
|
same installed composition and the public authority keyrings, proof and private
|
||||||
|
evidence custody references are recorded. Neither issue should close from a
|
||||||
|
single-host simulation or a self-approved signature.
|
||||||
@@ -76,6 +76,13 @@ one place. If a deployment profile later needs pinned SHAs for every repository,
|
|||||||
generate that lock as a release artifact instead of making day-to-day
|
generate that lock as a release artifact instead of making day-to-day
|
||||||
development depend on submodule updates.
|
development depend on submodule updates.
|
||||||
|
|
||||||
|
Module release tags also publish wheels and WebUI tarballs to the organization
|
||||||
|
PyPI/npm registries. The meta release resolves exact versions into a hash-bound
|
||||||
|
package lock before producing the signed OCI runtime. See
|
||||||
|
`docs/PACKAGE_REGISTRY_RELEASES.md`. Git tags remain source provenance; package
|
||||||
|
registries are reusable artifact transport; the signed runtime manifest and
|
||||||
|
digest-pinned images remain production authority.
|
||||||
|
|
||||||
## Docker Placement
|
## Docker Placement
|
||||||
|
|
||||||
Whole-product Docker and production-like deployment composition belongs in
|
Whole-product Docker and production-like deployment composition belongs in
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
# Scaling And Multi-Host Deployment
|
# Scaling And Multi-Host Deployment
|
||||||
|
|
||||||
|
For the exact external handoff, least-privilege collector permissions and live
|
||||||
|
two-node acceptance procedure, see
|
||||||
|
[`PRODUCTION_TARGET_HANDOFF.md`](PRODUCTION_TARGET_HANDOFF.md).
|
||||||
|
|
||||||
## Implemented Contract
|
## Implemented Contract
|
||||||
|
|
||||||
GovOPlaN now supports a stateless application tier backed by logically shared
|
GovOPlaN now supports a stateless application tier backed by logically shared
|
||||||
|
|||||||
@@ -141,12 +141,16 @@ The canonical backlog item is
|
|||||||
|
|
||||||
Implementation status as of the current source tree:
|
Implementation status as of the current source tree:
|
||||||
|
|
||||||
- Slice 1 now has the source-controlled production artifact boundary: offline
|
- Slice 1 has a published production-artifact baseline. Immutable
|
||||||
per-architecture wheel resolution, non-root API/Web image definitions,
|
[`v0.1.14`](https://git.add-ideas.de/GovOPlaN/govoplan/releases/tag/v0.1.14)
|
||||||
multi-architecture OCI publication, signed composition/SBOM/provenance,
|
binds source commit `1f039dd39c1ce2672f4978c8abc6dff862ef1445`, a signed
|
||||||
immutable Gitea assets, a signed one-file deployer, and fail-closed manifest
|
one-file deployer, exact API/Web and managed-dependency image digests,
|
||||||
adoption. The first real published release and cross-architecture runtime
|
composition, SBOMs, and provenance. Runtime Distribution
|
||||||
evidence remain release-operator work rather than source-code claims.
|
[run #459](https://git.add-ideas.de/GovOPlaN/govoplan/actions/runs/459)
|
||||||
|
passed migrations, schema checks, non-root API/Web readiness, and worker
|
||||||
|
delivery/shutdown on both amd64 and arm64. Each future release must renew the
|
||||||
|
evidence, and a real installation must still produce topology-specific
|
||||||
|
ingress, failover, backup, and recovery receipts.
|
||||||
- Slice 6 has a working application-tier foundation: state profiles, shared
|
- Slice 6 has a working application-tier foundation: state profiles, shared
|
||||||
object storage, runtime node registration/heartbeats/drain, fenced scheduler,
|
object storage, runtime node registration/heartbeats/drain, fenced scheduler,
|
||||||
migration serialization, exact-head startup waiting, Ops visibility, and a
|
migration serialization, exact-head startup waiting, Ops visibility, and a
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
# Target Maturity Evidence Runbook
|
# Target Maturity Evidence Runbook
|
||||||
|
|
||||||
|
For authority-key generation, container isolation and the concrete inputs that
|
||||||
|
must be supplied by the target owner and independent production approver, see
|
||||||
|
[`PRODUCTION_TARGET_HANDOFF.md`](PRODUCTION_TARGET_HANDOFF.md).
|
||||||
|
|
||||||
This runbook turns retained target-environment results into a sanitized,
|
This runbook turns retained target-environment results into a sanitized,
|
||||||
signed GovOPlaN capability-fit proof. It does not make a deployment suitable,
|
signed GovOPlaN capability-fit proof. It does not make a deployment suitable,
|
||||||
certified, supported, or production-approved by itself. The proof records what
|
certified, supported, or production-approved by itself. The proof records what
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
"expires_at",
|
"expires_at",
|
||||||
"revoked",
|
"revoked",
|
||||||
"deployer",
|
"deployer",
|
||||||
|
"package_lock",
|
||||||
"images",
|
"images",
|
||||||
"dependencies",
|
"dependencies",
|
||||||
"composition",
|
"composition",
|
||||||
@@ -27,6 +28,7 @@
|
|||||||
"expires_at": { "type": "string", "format": "date-time" },
|
"expires_at": { "type": "string", "format": "date-time" },
|
||||||
"revoked": { "const": false },
|
"revoked": { "const": false },
|
||||||
"deployer": { "$ref": "#/$defs/artifact" },
|
"deployer": { "$ref": "#/$defs/artifact" },
|
||||||
|
"package_lock": { "$ref": "#/$defs/artifact" },
|
||||||
"images": {
|
"images": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
# GovOPlaN developer meta-package
|
||||||
|
|
||||||
|
`govoplan` is an optional convenience package for local development and
|
||||||
|
composition tests. The default dependency set matches the reviewed runtime
|
||||||
|
release roots; `govoplan[full]` adds every packageable module present in the
|
||||||
|
workspace at generation time.
|
||||||
|
|
||||||
|
This package is not a production deployment artifact. Production installations
|
||||||
|
consume the signed runtime distribution manifest and digest-pinned OCI images.
|
||||||
|
The package does not enable modules, apply migrations, choose infrastructure,
|
||||||
|
or replace installation and recovery evidence.
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
[build-system]
|
||||||
|
requires = ["setuptools>=69", "wheel"]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
|
[project]
|
||||||
|
name = "govoplan"
|
||||||
|
version = "0.1.15"
|
||||||
|
description = "Developer convenience package for a versioned GovOPlaN composition"
|
||||||
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.12"
|
||||||
|
license = { text = "AGPL-3.0-or-later" }
|
||||||
|
dependencies = [
|
||||||
|
"govoplan-core[server]==0.1.15",
|
||||||
|
"govoplan-tenancy==0.1.15",
|
||||||
|
"govoplan-organizations==0.1.15",
|
||||||
|
"govoplan-identity==0.1.15",
|
||||||
|
"govoplan-idm==0.1.15",
|
||||||
|
"govoplan-access==0.1.15",
|
||||||
|
"govoplan-admin==0.1.15",
|
||||||
|
"govoplan-policy==0.1.15",
|
||||||
|
"govoplan-audit==0.1.15",
|
||||||
|
"govoplan-dashboard==0.1.15",
|
||||||
|
"govoplan-files==0.1.15",
|
||||||
|
"govoplan-mail==0.1.15",
|
||||||
|
"govoplan-campaign==0.1.15",
|
||||||
|
"govoplan-calendar==0.1.15",
|
||||||
|
"govoplan-docs==0.1.15",
|
||||||
|
"govoplan-ops==0.1.15",
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.optional-dependencies]
|
||||||
|
full = [
|
||||||
|
"govoplan-addresses==0.1.15",
|
||||||
|
"govoplan-approvals==0.1.15",
|
||||||
|
"govoplan-assets==0.1.15",
|
||||||
|
"govoplan-booking==0.1.15",
|
||||||
|
"govoplan-cases==0.1.15",
|
||||||
|
"govoplan-certificates==0.1.15",
|
||||||
|
"govoplan-committee==0.1.15",
|
||||||
|
"govoplan-connectors==0.1.15",
|
||||||
|
"govoplan-consultation==0.1.15",
|
||||||
|
"govoplan-contracts==0.1.15",
|
||||||
|
"govoplan-dataflow==0.1.15",
|
||||||
|
"govoplan-datasources==0.1.15",
|
||||||
|
"govoplan-decisions==0.1.15",
|
||||||
|
"govoplan-dist-lists==0.1.15",
|
||||||
|
"govoplan-encryption==0.1.15",
|
||||||
|
"govoplan-evaluation==0.1.15",
|
||||||
|
"govoplan-facilities==0.1.15",
|
||||||
|
"govoplan-forms==0.1.15",
|
||||||
|
"govoplan-forms-runtime==0.1.15",
|
||||||
|
"govoplan-grants==0.1.15",
|
||||||
|
"govoplan-helpdesk==0.1.15",
|
||||||
|
"govoplan-identity-trust==0.1.15",
|
||||||
|
"govoplan-inspections==0.1.15",
|
||||||
|
"govoplan-learning==0.1.15",
|
||||||
|
"govoplan-mandates==0.1.15",
|
||||||
|
"govoplan-notifications==0.1.15",
|
||||||
|
"govoplan-parties==0.1.15",
|
||||||
|
"govoplan-permits==0.1.15",
|
||||||
|
"govoplan-poll==0.1.15",
|
||||||
|
"govoplan-portal==0.1.15",
|
||||||
|
"govoplan-postbox==0.1.15",
|
||||||
|
"govoplan-procurement==0.1.15",
|
||||||
|
"govoplan-projects==0.1.15",
|
||||||
|
"govoplan-records==0.1.15",
|
||||||
|
"govoplan-reporting==0.1.15",
|
||||||
|
"govoplan-resources==0.1.15",
|
||||||
|
"govoplan-rest==0.1.15",
|
||||||
|
"govoplan-risk-compliance==0.1.15",
|
||||||
|
"govoplan-scheduling==0.1.15",
|
||||||
|
"govoplan-search==0.1.15",
|
||||||
|
"govoplan-services==0.1.15",
|
||||||
|
"govoplan-soap==0.1.15",
|
||||||
|
"govoplan-templates==0.1.15",
|
||||||
|
"govoplan-tickets==0.1.15",
|
||||||
|
"govoplan-transparency==0.1.15",
|
||||||
|
"govoplan-views==0.1.15",
|
||||||
|
"govoplan-voting==0.1.15",
|
||||||
|
"govoplan-wiki==0.1.15",
|
||||||
|
"govoplan-workflow==0.1.15",
|
||||||
|
"govoplan-workflow-engine==0.1.15",
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.urls]
|
||||||
|
Repository = "https://git.add-ideas.de/GovOPlaN/govoplan"
|
||||||
|
Documentation = "https://govoplan.add-ideas.de"
|
||||||
|
|
||||||
|
[tool.setuptools.packages.find]
|
||||||
|
where = ["src"]
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
"""Metadata helpers for the optional GovOPlaN developer composition."""
|
||||||
|
|
||||||
|
from importlib.metadata import PackageNotFoundError, version
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
__version__ = version("govoplan")
|
||||||
|
except PackageNotFoundError: # pragma: no cover - source checkout only
|
||||||
|
__version__ = "0+unknown"
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ["__version__"]
|
||||||
+15
-15
@@ -1,18 +1,18 @@
|
|||||||
# Whole-product release install from immutable, independently versioned module tags.
|
# Whole-product release install from immutable, independently versioned module tags.
|
||||||
# Only add a module after its referenced tag has been published.
|
# Only add a module after its referenced tag has been published.
|
||||||
../govoplan-core[server]
|
../govoplan-core[server]
|
||||||
govoplan-tenancy @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-tenancy.git@v0.1.8
|
govoplan-tenancy @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-tenancy.git@v0.1.15
|
||||||
govoplan-organizations @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-organizations.git@v0.1.8
|
govoplan-organizations @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-organizations.git@v0.1.15
|
||||||
govoplan-identity @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-identity.git@v0.1.8
|
govoplan-identity @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-identity.git@v0.1.15
|
||||||
govoplan-idm @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-idm.git@v0.1.8
|
govoplan-idm @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-idm.git@v0.1.15
|
||||||
govoplan-access @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-access.git@v0.1.8
|
govoplan-access @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-access.git@v0.1.15
|
||||||
govoplan-admin @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-admin.git@v0.1.8
|
govoplan-admin @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-admin.git@v0.1.15
|
||||||
govoplan-policy @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-policy.git@v0.1.8
|
govoplan-policy @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-policy.git@v0.1.15
|
||||||
govoplan-audit @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-audit.git@v0.1.8
|
govoplan-audit @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-audit.git@v0.1.15
|
||||||
govoplan-dashboard @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-dashboard.git@v0.1.8
|
govoplan-dashboard @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-dashboard.git@v0.1.15
|
||||||
govoplan-files @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-files.git@v0.1.8
|
govoplan-files @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-files.git@v0.1.15
|
||||||
govoplan-mail @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-mail.git@v0.1.10
|
govoplan-mail @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-mail.git@v0.1.15
|
||||||
govoplan-campaign @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-campaign.git@v0.1.11
|
govoplan-campaign @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-campaign.git@v0.1.15
|
||||||
govoplan-calendar @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-calendar.git@v0.1.8
|
govoplan-calendar @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-calendar.git@v0.1.15
|
||||||
govoplan-docs @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-docs.git@v0.1.8
|
govoplan-docs @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-docs.git@v0.1.15
|
||||||
govoplan-ops @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-ops.git@v0.1.8
|
govoplan-ops @ git+ssh://git@git.add-ideas.de/GovOPlaN/govoplan-ops.git@v0.1.15
|
||||||
|
|||||||
@@ -0,0 +1,120 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import base64
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import stat
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
import tempfile
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
from cryptography.hazmat.primitives import serialization
|
||||||
|
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKey
|
||||||
|
from jsonschema import Draft202012Validator, FormatChecker
|
||||||
|
|
||||||
|
|
||||||
|
META_ROOT = Path(__file__).resolve().parents[1]
|
||||||
|
GENERATOR = META_ROOT / "tools" / "assessments" / "generate-authority-keypair.py"
|
||||||
|
|
||||||
|
|
||||||
|
class AssessmentAuthorityKeypairTests(unittest.TestCase):
|
||||||
|
def test_generates_schema_valid_scoped_proof_authority(self) -> None:
|
||||||
|
with tempfile.TemporaryDirectory() as temp_dir:
|
||||||
|
output_dir = Path(temp_dir)
|
||||||
|
output_dir.chmod(0o700)
|
||||||
|
private_path = output_dir / "target.pem"
|
||||||
|
keyring_path = output_dir / "target.json"
|
||||||
|
|
||||||
|
result = subprocess.run(
|
||||||
|
(
|
||||||
|
sys.executable,
|
||||||
|
str(GENERATOR),
|
||||||
|
"--purpose",
|
||||||
|
"proof",
|
||||||
|
"--key-id",
|
||||||
|
"authority:target-2026",
|
||||||
|
"--scope",
|
||||||
|
"target_environment",
|
||||||
|
"--scope",
|
||||||
|
"operations",
|
||||||
|
"--private-key",
|
||||||
|
str(private_path),
|
||||||
|
"--keyring",
|
||||||
|
str(keyring_path),
|
||||||
|
),
|
||||||
|
check=False,
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(0, result.returncode, result.stderr)
|
||||||
|
self.assertEqual(0o600, stat.S_IMODE(private_path.stat().st_mode))
|
||||||
|
self.assertEqual(0o600, stat.S_IMODE(keyring_path.stat().st_mode))
|
||||||
|
keyring = json.loads(keyring_path.read_text(encoding="utf-8"))
|
||||||
|
schema = json.loads(
|
||||||
|
(
|
||||||
|
META_ROOT
|
||||||
|
/ "docs"
|
||||||
|
/ "capability-fit-proof-authority-keyring.schema.json"
|
||||||
|
).read_text(encoding="utf-8")
|
||||||
|
)
|
||||||
|
errors = tuple(
|
||||||
|
Draft202012Validator(
|
||||||
|
schema, format_checker=FormatChecker()
|
||||||
|
).iter_errors(keyring)
|
||||||
|
)
|
||||||
|
self.assertEqual((), errors)
|
||||||
|
self.assertEqual(
|
||||||
|
["target_environment", "operations"],
|
||||||
|
keyring["keys"][0]["allowed_scopes"],
|
||||||
|
)
|
||||||
|
private_key = serialization.load_pem_private_key(
|
||||||
|
private_path.read_bytes(), password=None
|
||||||
|
)
|
||||||
|
self.assertIsInstance(private_key, Ed25519PrivateKey)
|
||||||
|
public_key = base64.b64encode(
|
||||||
|
private_key.public_key().public_bytes(
|
||||||
|
encoding=serialization.Encoding.Raw,
|
||||||
|
format=serialization.PublicFormat.Raw,
|
||||||
|
)
|
||||||
|
).decode("ascii")
|
||||||
|
self.assertEqual(public_key, keyring["keys"][0]["public_key"])
|
||||||
|
|
||||||
|
def test_installer_authority_uses_fixed_scope_and_refuses_overwrite(self) -> None:
|
||||||
|
with tempfile.TemporaryDirectory() as temp_dir:
|
||||||
|
output_dir = Path(temp_dir)
|
||||||
|
output_dir.chmod(0o700)
|
||||||
|
private_path = output_dir / "installer.pem"
|
||||||
|
keyring_path = output_dir / "installer.json"
|
||||||
|
command = (
|
||||||
|
sys.executable,
|
||||||
|
str(GENERATOR),
|
||||||
|
"--purpose",
|
||||||
|
"installer",
|
||||||
|
"--key-id",
|
||||||
|
"authority:installer-2026",
|
||||||
|
"--private-key",
|
||||||
|
str(private_path),
|
||||||
|
"--keyring",
|
||||||
|
str(keyring_path),
|
||||||
|
)
|
||||||
|
|
||||||
|
first = subprocess.run(
|
||||||
|
command, check=False, capture_output=True, text=True
|
||||||
|
)
|
||||||
|
second = subprocess.run(
|
||||||
|
command, check=False, capture_output=True, text=True
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(0, first.returncode, first.stderr)
|
||||||
|
self.assertNotEqual(0, second.returncode)
|
||||||
|
keyring = json.loads(keyring_path.read_text(encoding="utf-8"))
|
||||||
|
self.assertEqual(
|
||||||
|
["installed_release_origin"],
|
||||||
|
keyring["keys"][0]["allowed_scopes"],
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -0,0 +1,113 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
import tempfile
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
|
META_ROOT = Path(__file__).resolve().parents[1]
|
||||||
|
|
||||||
|
|
||||||
|
class ModulePackageWorkflowTests(unittest.TestCase):
|
||||||
|
def test_template_enforces_tag_version_hash_and_registry_contract(self) -> None:
|
||||||
|
workflow = (
|
||||||
|
META_ROOT / "tools/repo/templates/module-package-release.yml"
|
||||||
|
).read_text(encoding="utf-8")
|
||||||
|
|
||||||
|
self.assertIn("GITEA_REPOSITORY: ${{ gitea.repository }}", workflow)
|
||||||
|
self.assertNotIn("tag_protections", workflow)
|
||||||
|
self.assertNotIn("secrets.GITEA_TOKEN", workflow)
|
||||||
|
self.assertIn("git merge-base --is-ancestor", workflow)
|
||||||
|
self.assertIn("does not match", workflow)
|
||||||
|
self.assertIn("package-artifacts.json", workflow)
|
||||||
|
self.assertIn("api/packages/GovOPlaN/pypi", workflow)
|
||||||
|
self.assertIn("api/packages/GovOPlaN/npm", workflow)
|
||||||
|
self.assertIn('npm publish "./${webui_packages[0]}"', workflow)
|
||||||
|
self.assertIn("Check immutable registry state", workflow)
|
||||||
|
self.assertIn('files[0].get("sha256") != expected_sha256', workflow)
|
||||||
|
self.assertIn('if [[ "$PUBLISH_PYPI" == 1 ]]', workflow)
|
||||||
|
self.assertIn('[[ "$PUBLISH_NPM" == 1 ]]', workflow)
|
||||||
|
self.assertIn("GOVOPLAN_PACKAGE_TOKEN", workflow)
|
||||||
|
self.assertIn("must resolve to an exact registry version", workflow)
|
||||||
|
self.assertIn("git\\\\.add-ideas\\\\.de/(?:GovOPlaN|add-ideas)", workflow)
|
||||||
|
self.assertIn("release package identity does not match", workflow)
|
||||||
|
self.assertNotIn("Generic", workflow)
|
||||||
|
|
||||||
|
@unittest.skipUnless(shutil.which("node"), "Node.js is required")
|
||||||
|
def test_webui_publication_normalizes_internal_git_dependencies(self) -> None:
|
||||||
|
workflow = (
|
||||||
|
META_ROOT / "tools/repo/templates/module-package-release.yml"
|
||||||
|
).read_text(encoding="utf-8")
|
||||||
|
marker = " node <<'NODE'\n"
|
||||||
|
script = workflow.split(marker, 1)[1].split("\n NODE", 1)[0]
|
||||||
|
|
||||||
|
with tempfile.TemporaryDirectory() as temporary:
|
||||||
|
root = Path(temporary)
|
||||||
|
package_dir = root / ".package-webui"
|
||||||
|
package_dir.mkdir()
|
||||||
|
package_path = package_dir / "package.json"
|
||||||
|
package_path.write_text(
|
||||||
|
json.dumps(
|
||||||
|
{
|
||||||
|
"name": "@govoplan/core-webui",
|
||||||
|
"version": "0.1.14",
|
||||||
|
"private": True,
|
||||||
|
"dependencies": {
|
||||||
|
"@govoplan/access-webui": (
|
||||||
|
"git+ssh://git@git.add-ideas.de/GovOPlaN/"
|
||||||
|
"govoplan-access.git#v0.1.11"
|
||||||
|
),
|
||||||
|
"@govoplan/admin-webui": (
|
||||||
|
"git+ssh://git@git.add-ideas.de/add-ideas/"
|
||||||
|
"govoplan-admin.git#v0.1.8"
|
||||||
|
)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
),
|
||||||
|
encoding="utf-8",
|
||||||
|
)
|
||||||
|
|
||||||
|
subprocess.run(
|
||||||
|
["node"],
|
||||||
|
input=script,
|
||||||
|
cwd=root,
|
||||||
|
check=True,
|
||||||
|
text=True,
|
||||||
|
capture_output=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
package = json.loads(package_path.read_text(encoding="utf-8"))
|
||||||
|
self.assertNotIn("private", package)
|
||||||
|
self.assertEqual(
|
||||||
|
"0.1.11", package["dependencies"]["@govoplan/access-webui"]
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
"0.1.8", package["dependencies"]["@govoplan/admin-webui"]
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_sync_script_only_targets_packageable_govoplan_repositories(self) -> None:
|
||||||
|
namespace: dict[str, object] = {
|
||||||
|
"__file__": str(META_ROOT / "tools/repo/sync-module-package-workflows.py"),
|
||||||
|
"__name__": "test_sync_module_package_workflows",
|
||||||
|
}
|
||||||
|
script = (META_ROOT / "tools/repo/sync-module-package-workflows.py").read_text(
|
||||||
|
encoding="utf-8"
|
||||||
|
)
|
||||||
|
exec(compile(script, str(namespace["__file__"]), "exec"), namespace)
|
||||||
|
|
||||||
|
with tempfile.TemporaryDirectory() as temporary:
|
||||||
|
parent = Path(temporary)
|
||||||
|
package_repositories = namespace["package_repositories"]
|
||||||
|
# The production inventory is authoritative, so a temporary parent
|
||||||
|
# only exposes matching paths that are present in that inventory.
|
||||||
|
known = parent / "govoplan-core"
|
||||||
|
known.mkdir()
|
||||||
|
(known / "pyproject.toml").write_text("[project]\n", encoding="utf-8")
|
||||||
|
self.assertEqual(package_repositories(parent), (known,))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -0,0 +1,167 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from io import BytesIO
|
||||||
|
import importlib.util
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import sys
|
||||||
|
import tarfile
|
||||||
|
import tempfile
|
||||||
|
import tomllib
|
||||||
|
import unittest
|
||||||
|
import zipfile
|
||||||
|
|
||||||
|
|
||||||
|
ROOT = Path(__file__).resolve().parents[1]
|
||||||
|
|
||||||
|
|
||||||
|
def _load(name: str, path: Path):
|
||||||
|
spec = importlib.util.spec_from_file_location(name, path)
|
||||||
|
assert spec is not None and spec.loader is not None
|
||||||
|
module = importlib.util.module_from_spec(spec)
|
||||||
|
sys.modules[name] = module
|
||||||
|
spec.loader.exec_module(module)
|
||||||
|
return module
|
||||||
|
|
||||||
|
|
||||||
|
PACKAGE_SET = _load(
|
||||||
|
"generate_release_package_set",
|
||||||
|
ROOT / "tools/release/generate-release-package-set.py",
|
||||||
|
)
|
||||||
|
ARTIFACTS = _load(
|
||||||
|
"resolve_package_artifacts",
|
||||||
|
ROOT / "tools/release/resolve-package-artifacts.py",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class PackageRegistryReleaseTests(unittest.TestCase):
|
||||||
|
def test_current_release_sources_form_a_hash_bound_package_set(self) -> None:
|
||||||
|
core_version = tomllib.loads(
|
||||||
|
(ROOT.parent / "govoplan-core/pyproject.toml").read_text(encoding="utf-8")
|
||||||
|
)["project"]["version"]
|
||||||
|
payload = PACKAGE_SET.generate_package_set(
|
||||||
|
core_version=core_version,
|
||||||
|
requirements=ROOT / "requirements-release.txt",
|
||||||
|
workspace=ROOT.parent,
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual("1", payload["schema_version"])
|
||||||
|
self.assertEqual("govoplan-core", payload["python"][0]["name"])
|
||||||
|
self.assertIn(
|
||||||
|
"@govoplan/core-webui",
|
||||||
|
{item["name"] for item in payload["webui"]},
|
||||||
|
)
|
||||||
|
unsigned = dict(payload)
|
||||||
|
digest = unsigned.pop("package_set_sha256")
|
||||||
|
self.assertEqual(ARTIFACTS._canonical_sha256(unsigned), digest)
|
||||||
|
|
||||||
|
def test_wheel_and_webui_artifacts_are_verified_by_embedded_identity(self) -> None:
|
||||||
|
with tempfile.TemporaryDirectory(prefix="govoplan-package-artifacts-") as value:
|
||||||
|
root = Path(value)
|
||||||
|
wheels = root / "wheels"
|
||||||
|
webui = root / "webui"
|
||||||
|
wheels.mkdir()
|
||||||
|
webui.mkdir()
|
||||||
|
wheel = wheels / "govoplan_demo-1.2.3-py3-none-any.whl"
|
||||||
|
with zipfile.ZipFile(wheel, "w") as archive:
|
||||||
|
archive.writestr(
|
||||||
|
"govoplan_demo-1.2.3.dist-info/METADATA",
|
||||||
|
"Metadata-Version: 2.1\nName: govoplan-demo\nVersion: 1.2.3\n",
|
||||||
|
)
|
||||||
|
package_json = json.dumps(
|
||||||
|
{"name": "@govoplan/demo-webui", "version": "1.2.3"}
|
||||||
|
).encode("utf-8")
|
||||||
|
npm = webui / "govoplan-demo-webui-1.2.3.tgz"
|
||||||
|
with tarfile.open(npm, "w:gz") as archive:
|
||||||
|
member = tarfile.TarInfo("package/package.json")
|
||||||
|
member.size = len(package_json)
|
||||||
|
archive.addfile(member, BytesIO(package_json))
|
||||||
|
source = {
|
||||||
|
"version": "1.2.3",
|
||||||
|
"repository": "govoplan-demo",
|
||||||
|
"tag": "v1.2.3",
|
||||||
|
"commit": "1" * 40,
|
||||||
|
}
|
||||||
|
|
||||||
|
python_rows = ARTIFACTS._verify_wheels(
|
||||||
|
({"name": "govoplan-demo", "extras": ["server"], **source},), wheels
|
||||||
|
)
|
||||||
|
webui_rows = ARTIFACTS._verify_webui(
|
||||||
|
({"name": "@govoplan/demo-webui", **source},), webui
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual("govoplan-demo", python_rows[0]["name"])
|
||||||
|
self.assertEqual(["server"], python_rows[0]["extras"])
|
||||||
|
self.assertEqual("@govoplan/demo-webui", webui_rows[0]["name"])
|
||||||
|
self.assertTrue(str(webui_rows[0]["integrity"]).startswith("sha512-"))
|
||||||
|
|
||||||
|
def test_package_set_rejects_argument_shaped_package_names(self) -> None:
|
||||||
|
payload = {
|
||||||
|
"schema_version": "1",
|
||||||
|
"release_version": "1.2.3",
|
||||||
|
"registries": {
|
||||||
|
"python": "https://packages.example.test/pypi/simple",
|
||||||
|
"npm": "https://packages.example.test/npm/",
|
||||||
|
},
|
||||||
|
"python": [
|
||||||
|
{
|
||||||
|
"name": "--index-url",
|
||||||
|
"version": "1.2.3",
|
||||||
|
"repository": "govoplan-demo",
|
||||||
|
"extras": [],
|
||||||
|
"tag": "v1.2.3",
|
||||||
|
"commit": "1" * 40,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"webui": [
|
||||||
|
{
|
||||||
|
"name": "@govoplan/demo-webui",
|
||||||
|
"version": "1.2.3",
|
||||||
|
"repository": "govoplan-demo",
|
||||||
|
"tag": "v1.2.3",
|
||||||
|
"commit": "1" * 40,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
}
|
||||||
|
payload["package_set_sha256"] = ARTIFACTS._canonical_sha256(payload)
|
||||||
|
with tempfile.TemporaryDirectory() as value:
|
||||||
|
path = Path(value) / "packages.json"
|
||||||
|
path.write_text(json.dumps(payload), encoding="utf-8")
|
||||||
|
with self.assertRaisesRegex(
|
||||||
|
ARTIFACTS.PackageArtifactError, "invalid identity"
|
||||||
|
):
|
||||||
|
ARTIFACTS._load_package_set(path)
|
||||||
|
|
||||||
|
def test_runtime_workflow_consumes_registry_artifacts_and_publishes_lock(self) -> None:
|
||||||
|
workflow = (ROOT / ".gitea/workflows/runtime-distribution.yml").read_text(
|
||||||
|
encoding="utf-8"
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertIn("resolve-package-artifacts.py", workflow)
|
||||||
|
self.assertIn("package-artifacts.lock.json", workflow)
|
||||||
|
self.assertIn(
|
||||||
|
"--package-lock runtime-output/package-artifacts.lock.json",
|
||||||
|
workflow,
|
||||||
|
)
|
||||||
|
self.assertNotIn(
|
||||||
|
"pip wheel --no-deps --wheel-dir runtime-output/local-wheels",
|
||||||
|
workflow,
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_developer_meta_package_matches_workspace_versions(self) -> None:
|
||||||
|
script = _load(
|
||||||
|
"generate_developer_meta_package",
|
||||||
|
ROOT / "tools/release/generate-developer-meta-package.py",
|
||||||
|
)
|
||||||
|
expected = script.render(
|
||||||
|
workspace=ROOT.parent,
|
||||||
|
requirements=ROOT / "requirements-release.txt",
|
||||||
|
)
|
||||||
|
actual = (ROOT / "packages/govoplan-meta/pyproject.toml").read_text(
|
||||||
|
encoding="utf-8"
|
||||||
|
)
|
||||||
|
self.assertEqual(expected, actual)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import importlib.util
|
||||||
|
from pathlib import Path
|
||||||
|
import sys
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
|
META_ROOT = Path(__file__).resolve().parents[1]
|
||||||
|
TOOLS_ROOT = META_ROOT / "tools" / "gitea"
|
||||||
|
if str(TOOLS_ROOT) not in sys.path:
|
||||||
|
sys.path.insert(0, str(TOOLS_ROOT))
|
||||||
|
SCRIPT = TOOLS_ROOT / "gitea-dispatch-package-set.py"
|
||||||
|
SPEC = importlib.util.spec_from_file_location("gitea_dispatch_package_set", SCRIPT)
|
||||||
|
assert SPEC is not None and SPEC.loader is not None
|
||||||
|
MODULE = importlib.util.module_from_spec(SPEC)
|
||||||
|
sys.modules[SPEC.name] = MODULE
|
||||||
|
SPEC.loader.exec_module(MODULE)
|
||||||
|
|
||||||
|
|
||||||
|
class PackageSetDispatchTests(unittest.TestCase):
|
||||||
|
def test_meta_package_resolves_to_exact_tagged_repository_targets(self) -> None:
|
||||||
|
targets = MODULE.package_targets()
|
||||||
|
|
||||||
|
self.assertEqual(66, len(targets))
|
||||||
|
self.assertEqual(66, len({target.distribution for target in targets}))
|
||||||
|
by_name = {target.distribution: target for target in targets}
|
||||||
|
self.assertEqual("v0.1.14", by_name["govoplan-core"].tag)
|
||||||
|
self.assertEqual("v0.1.8", by_name["govoplan-access"].tag)
|
||||||
|
self.assertTrue(by_name["govoplan-core"].tag_exists)
|
||||||
|
self.assertTrue(by_name["govoplan-access"].has_webui)
|
||||||
|
self.assertEqual(
|
||||||
|
"@govoplan/access-webui",
|
||||||
|
by_name["govoplan-access"].webui_package,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -141,6 +141,34 @@ class PlatformInterfaceInventoryTests(unittest.TestCase):
|
|||||||
self.assertEqual(1, result["summary"]["stale_endpoint_declarations"])
|
self.assertEqual(1, result["summary"]["stale_endpoint_declarations"])
|
||||||
self.assertIsNone(result["api"]["backend_endpoints"][0]["surface"])
|
self.assertIsNone(result["api"]["backend_endpoints"][0]["surface"])
|
||||||
|
|
||||||
|
def test_endpoint_only_strict_mode_does_not_fail_on_translation_debt(
|
||||||
|
self,
|
||||||
|
) -> None:
|
||||||
|
result = {
|
||||||
|
"translation_health": {"missing_catalog_entries": ["missing.key"]},
|
||||||
|
"api": {
|
||||||
|
"unclassified_endpoints": [],
|
||||||
|
"stale_endpoint_declarations": [],
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
[],
|
||||||
|
inventory._strict_failures(
|
||||||
|
result,
|
||||||
|
check_translations=False,
|
||||||
|
check_endpoints=True,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
["used translation keys are missing from generated catalogs"],
|
||||||
|
inventory._strict_failures(
|
||||||
|
result,
|
||||||
|
check_translations=True,
|
||||||
|
check_endpoints=True,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
def test_fastapi_route_scanner_includes_router_prefix(self) -> None:
|
def test_fastapi_route_scanner_includes_router_prefix(self) -> None:
|
||||||
tree = ast.parse(
|
tree = ast.parse(
|
||||||
"""
|
"""
|
||||||
@@ -171,6 +199,114 @@ def read_item(item_id: str):
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_source_declarations_normalize_stable_control_and_contribution_ids(
|
||||||
|
self,
|
||||||
|
) -> None:
|
||||||
|
webui = {
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"repository": "govoplan-example",
|
||||||
|
"file": "webui/src/Example.tsx",
|
||||||
|
"line": 12,
|
||||||
|
"column": 3,
|
||||||
|
"id": "govoplan-example.field.example.name.abc123",
|
||||||
|
"idSource": "source_anchor",
|
||||||
|
"explicitId": None,
|
||||||
|
"context": "Example",
|
||||||
|
"helpId": "govoplan-example.field.example.name.abc123.help",
|
||||||
|
"helpDynamic": False,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"actions": [],
|
||||||
|
"contributions": [
|
||||||
|
{
|
||||||
|
"repository": "govoplan-example",
|
||||||
|
"file": "webui/src/module.ts",
|
||||||
|
"line": 20,
|
||||||
|
"column": 5,
|
||||||
|
"kind": "frontend_route",
|
||||||
|
"id": "/examples/:exampleId",
|
||||||
|
"path": "/examples/:exampleId",
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"translationCatalog": {"en": {}, "de": {}},
|
||||||
|
}
|
||||||
|
manifests = [{"repository": "govoplan-example", "id": "examples"}]
|
||||||
|
|
||||||
|
declarations = inventory._source_interface_declarations(webui, manifests)
|
||||||
|
keys = {item["key"] for item in declarations}
|
||||||
|
|
||||||
|
self.assertIn("field:examples.field.example.name.abc123", keys)
|
||||||
|
self.assertIn(
|
||||||
|
"help:examples.field.example.name.abc123.help",
|
||||||
|
keys,
|
||||||
|
)
|
||||||
|
self.assertIn(
|
||||||
|
"frontend_route:examples.route.examples.exampleid",
|
||||||
|
keys,
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_declaration_health_rejects_duplicate_and_undeclared_source_ids(
|
||||||
|
self,
|
||||||
|
) -> None:
|
||||||
|
declaration = {
|
||||||
|
"key": "frontend_route:example.route.unlisted",
|
||||||
|
"id": "example.route.unlisted",
|
||||||
|
"module_id": "example",
|
||||||
|
"kind": "frontend_route",
|
||||||
|
"origin": "webui_contribution",
|
||||||
|
}
|
||||||
|
manifests = [
|
||||||
|
{
|
||||||
|
"id": "example",
|
||||||
|
"repository": "govoplan-example",
|
||||||
|
"interface_catalog": {"declarations": []},
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
health = inventory._declaration_health(
|
||||||
|
[declaration, dict(declaration)],
|
||||||
|
manifests,
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(1, len(health["duplicate_ids"]))
|
||||||
|
self.assertEqual(1, len(health["undeclared_source_surfaces"]))
|
||||||
|
|
||||||
|
def test_runtime_snapshot_comparison_accepts_an_installed_subset(self) -> None:
|
||||||
|
manifests = [
|
||||||
|
{
|
||||||
|
"id": "one",
|
||||||
|
"interface_catalog": {
|
||||||
|
"contract_version": "1",
|
||||||
|
"module_id": "one",
|
||||||
|
"module_version": "1.0.0",
|
||||||
|
"digest": "sha256:one",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "two",
|
||||||
|
"interface_catalog": {
|
||||||
|
"contract_version": "1",
|
||||||
|
"module_id": "two",
|
||||||
|
"module_version": "1.0.0",
|
||||||
|
"digest": "sha256:two",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
snapshot = {
|
||||||
|
"contract_version": "1",
|
||||||
|
"modules": [dict(manifests[1]["interface_catalog"])],
|
||||||
|
}
|
||||||
|
|
||||||
|
comparison = inventory._compare_runtime_snapshot(snapshot, manifests)
|
||||||
|
|
||||||
|
self.assertEqual(["two"], comparison["matched_modules"])
|
||||||
|
self.assertEqual([], comparison["mismatches"])
|
||||||
|
|
||||||
|
snapshot["modules"][0]["digest"] = "sha256:changed"
|
||||||
|
comparison = inventory._compare_runtime_snapshot(snapshot, manifests)
|
||||||
|
self.assertEqual("digest_mismatch", comparison["mismatches"][0]["reason"])
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|||||||
@@ -29,17 +29,72 @@ class ReleaseEntrypointGateTests(unittest.TestCase):
|
|||||||
workflow = script[confirm:]
|
workflow = script[confirm:]
|
||||||
|
|
||||||
source_gate = workflow.index("run_version_alignment_gate source")
|
source_gate = workflow.index("run_version_alignment_gate source")
|
||||||
|
baseline = workflow.index("record_migration_release_baseline")
|
||||||
first_commit = workflow.index('run git -C "$repo" commit')
|
first_commit = workflow.index('run git -C "$repo" commit')
|
||||||
lock_generation = workflow.index("generate_release_lock")
|
lock_generation = workflow.index("generate_release_lock")
|
||||||
full_gate = workflow.index("run_version_alignment_gate", source_gate + 1)
|
full_gate = workflow.index("run_version_alignment_gate", source_gate + 1)
|
||||||
first_push = workflow.index('run git -C "$repo" push')
|
first_push = workflow.index('run git -C "$repo" push')
|
||||||
|
|
||||||
|
self.assertLess(baseline, source_gate)
|
||||||
self.assertLess(source_gate, first_commit)
|
self.assertLess(source_gate, first_commit)
|
||||||
self.assertLess(first_commit, lock_generation)
|
self.assertLess(first_commit, lock_generation)
|
||||||
self.assertLess(lock_generation, full_gate)
|
self.assertLess(lock_generation, full_gate)
|
||||||
self.assertLess(full_gate, first_push)
|
self.assertLess(full_gate, first_push)
|
||||||
self.assertLess(manifest_gate, confirm)
|
self.assertLess(manifest_gate, confirm)
|
||||||
|
|
||||||
|
def test_lockstep_release_pushes_meta_package_after_core(self) -> None:
|
||||||
|
script = (META_ROOT / "tools" / "release" / "push-release-tag.sh").read_text()
|
||||||
|
module_push = script.index('for repo in "${MODULE_REPOS[@]}"; do\n run git -C "$repo" push')
|
||||||
|
core_push = script.index('run git -C "$ROOT" push', module_push)
|
||||||
|
support_push = script.index('for repo in "${SUPPORT_REPOS[@]}"; do\n run git -C "$repo" push', core_push)
|
||||||
|
|
||||||
|
self.assertLess(module_push, core_push)
|
||||||
|
self.assertLess(core_push, support_push)
|
||||||
|
|
||||||
|
def test_default_migration_preflight_accepts_new_release_heads(self) -> None:
|
||||||
|
script = (META_ROOT / "tools" / "release" / "push-release-tag.sh").read_text()
|
||||||
|
audit_function = script[
|
||||||
|
script.index("run_migration_release_audit()") :
|
||||||
|
script.index("record_migration_release_baseline()")
|
||||||
|
]
|
||||||
|
|
||||||
|
self.assertNotIn("--strict-if-baseline", audit_function)
|
||||||
|
self.assertIn('command+=("--strict")', audit_function)
|
||||||
|
|
||||||
|
def test_source_gate_does_not_require_tags_before_they_are_created(self) -> None:
|
||||||
|
script = (META_ROOT / "tools" / "release" / "push-release-tag.sh").read_text()
|
||||||
|
gate = script[
|
||||||
|
script.index("run_version_alignment_gate()") :
|
||||||
|
script.index("run_manifest_shape_gate()")
|
||||||
|
]
|
||||||
|
|
||||||
|
self.assertIn('command+=(--source-metadata-only)', gate)
|
||||||
|
self.assertIn('else\n command+=(--release-composition)', gate)
|
||||||
|
|
||||||
|
def test_version_updater_targets_canonical_runtime_declarations(self) -> None:
|
||||||
|
script = (META_ROOT / "tools" / "release" / "push-release-tag.sh").read_text()
|
||||||
|
|
||||||
|
self.assertIn("^manifest\\s*=\\s*ModuleManifest", script)
|
||||||
|
self.assertIn("could not update module version declaration", script)
|
||||||
|
self.assertIn("update_package_init_versions", script)
|
||||||
|
self.assertIn("synchronize-webui-package-metadata.py", script)
|
||||||
|
self.assertIn('"peerDependenciesMeta",', script)
|
||||||
|
self.assertLess(
|
||||||
|
script.index('synchronize-webui-package-metadata.py" --repo "$repo"'),
|
||||||
|
script.index('synchronize_lockfile_root "$package_path"', script.index('synchronize-webui-package-metadata.py" --repo "$repo"')),
|
||||||
|
)
|
||||||
|
self.assertNotIn("could not update ModuleManifest.version", script)
|
||||||
|
|
||||||
|
def test_release_lock_refreshes_candidate_govoplan_metadata(self) -> None:
|
||||||
|
script = (META_ROOT / "tools" / "release" / "generate-release-lock.sh").read_text()
|
||||||
|
|
||||||
|
self.assertEqual(2, script.count('"npm_config_cache=$TMP_DIR/npm-cache"'))
|
||||||
|
self.assertNotIn(
|
||||||
|
'cp "$WEBUI/package-lock.release.json" "$TMP_DIR/package-lock.json"',
|
||||||
|
script,
|
||||||
|
)
|
||||||
|
self.assertIn('cp "$WEBUI/package.release.json" "$TMP_DIR/package.json"', script)
|
||||||
|
|
||||||
def test_source_catalog_generator_enforces_explicit_repo_versions(self) -> None:
|
def test_source_catalog_generator_enforces_explicit_repo_versions(self) -> None:
|
||||||
script = (META_ROOT / "tools" / "release" / "generate-release-catalog.py").read_text()
|
script = (META_ROOT / "tools" / "release" / "generate-release-catalog.py").read_text()
|
||||||
|
|
||||||
|
|||||||
@@ -93,6 +93,14 @@ class RuntimeDistributionTests(unittest.TestCase):
|
|||||||
with self.assertRaisesRegex(DistributionError, "active trusted key"):
|
with self.assertRaisesRegex(DistributionError, "active trusted key"):
|
||||||
verify_manifest(unknown, self.keyring, now=self.now)
|
verify_manifest(unknown, self.keyring, now=self.now)
|
||||||
|
|
||||||
|
with self.assertRaisesRegex(DistributionError, "expected 'candidate'"):
|
||||||
|
verify_manifest(
|
||||||
|
self._manifest(),
|
||||||
|
self.keyring,
|
||||||
|
expected_channel="candidate",
|
||||||
|
now=self.now,
|
||||||
|
)
|
||||||
|
|
||||||
def test_offline_image_index_is_complete_and_digest_bound(self) -> None:
|
def test_offline_image_index_is_complete_and_digest_bound(self) -> None:
|
||||||
with tempfile.TemporaryDirectory(prefix="govoplan-offline-images-") as value:
|
with tempfile.TemporaryDirectory(prefix="govoplan-offline-images-") as value:
|
||||||
root = Path(value)
|
root = Path(value)
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
import hashlib
|
||||||
import importlib.util
|
import importlib.util
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
@@ -298,12 +299,37 @@ class RuntimeDistributionBuildTests(unittest.TestCase):
|
|||||||
(root / "web.json").write_text(json.dumps(web_metadata))
|
(root / "web.json").write_text(json.dumps(web_metadata))
|
||||||
deployer = root / "govoplan-deploy.pyz"
|
deployer = root / "govoplan-deploy.pyz"
|
||||||
deployer.write_bytes(b"zipapp")
|
deployer.write_bytes(b"zipapp")
|
||||||
|
package_lock = root / "package-artifacts.lock.json"
|
||||||
|
package_lock_value = {
|
||||||
|
"schema_version": "1",
|
||||||
|
"release_version": "1.2.3",
|
||||||
|
"python": [
|
||||||
|
{
|
||||||
|
"name": "govoplan-core",
|
||||||
|
"version": "1.2.3",
|
||||||
|
"sha256": "8" * 64,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"webui": [],
|
||||||
|
}
|
||||||
|
package_lock_value["lock_sha256"] = hashlib.sha256(
|
||||||
|
json.dumps(
|
||||||
|
package_lock_value,
|
||||||
|
sort_keys=True,
|
||||||
|
separators=(",", ":"),
|
||||||
|
).encode("utf-8")
|
||||||
|
).hexdigest()
|
||||||
|
package_lock.write_text(
|
||||||
|
json.dumps(package_lock_value) + "\n",
|
||||||
|
encoding="utf-8",
|
||||||
|
)
|
||||||
args = argparse.Namespace(
|
args = argparse.Namespace(
|
||||||
composition=root / "composition.json",
|
composition=root / "composition.json",
|
||||||
api_metadata=root / "api.json",
|
api_metadata=root / "api.json",
|
||||||
web_metadata=root / "web.json",
|
web_metadata=root / "web.json",
|
||||||
deployer=deployer,
|
deployer=deployer,
|
||||||
deployer_url="https://downloads.example/govoplan-deploy.pyz",
|
deployer_url="https://downloads.example/govoplan-deploy.pyz",
|
||||||
|
package_lock=package_lock,
|
||||||
artifact_base_url="https://downloads.example/runtime/v1.2.3",
|
artifact_base_url="https://downloads.example/runtime/v1.2.3",
|
||||||
source_commit="f" * 40,
|
source_commit="f" * 40,
|
||||||
version="1.2.3",
|
version="1.2.3",
|
||||||
@@ -327,6 +353,10 @@ class RuntimeDistributionBuildTests(unittest.TestCase):
|
|||||||
)
|
)
|
||||||
self.assertTrue((root / "evidence/api-sbom.cdx.json").is_file())
|
self.assertTrue((root / "evidence/api-sbom.cdx.json").is_file())
|
||||||
self.assertTrue((root / "evidence/web-provenance.json").is_file())
|
self.assertTrue((root / "evidence/web-provenance.json").is_file())
|
||||||
|
self.assertEqual(
|
||||||
|
hashlib.sha256(package_lock.read_bytes()).hexdigest(),
|
||||||
|
descriptor["package_lock"]["sha256"],
|
||||||
|
)
|
||||||
|
|
||||||
def test_rejects_incomplete_oci_index(self) -> None:
|
def test_rejects_incomplete_oci_index(self) -> None:
|
||||||
with self.assertRaisesRegex(ValueError, "linux/amd64 and linux/arm64"):
|
with self.assertRaisesRegex(ValueError, "linux/amd64 and linux/arm64"):
|
||||||
|
|||||||
@@ -0,0 +1,71 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
import tempfile
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
|
META_ROOT = Path(__file__).resolve().parents[1]
|
||||||
|
SCRIPT = META_ROOT / "tools" / "release" / "synchronize-webui-package-metadata.py"
|
||||||
|
|
||||||
|
|
||||||
|
class SynchronizeWebuiPackageMetadataTests(unittest.TestCase):
|
||||||
|
def test_copies_peer_contract_without_changing_publish_paths(self) -> None:
|
||||||
|
with tempfile.TemporaryDirectory() as directory:
|
||||||
|
repo = Path(directory)
|
||||||
|
(repo / "webui").mkdir()
|
||||||
|
(repo / "package.json").write_text(
|
||||||
|
json.dumps(
|
||||||
|
{
|
||||||
|
"name": "@govoplan/example-webui",
|
||||||
|
"exports": {".": "./webui/src/index.ts"},
|
||||||
|
"peerDependencies": {"vite": "^6"},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(repo / "webui" / "package.json").write_text(
|
||||||
|
json.dumps(
|
||||||
|
{
|
||||||
|
"name": "@govoplan/example-webui",
|
||||||
|
"peerDependencies": {"vite": "^7"},
|
||||||
|
"peerDependenciesMeta": {"vite": {"optional": True}},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
subprocess.run(
|
||||||
|
[sys.executable, str(SCRIPT), "--repo", str(repo)],
|
||||||
|
check=True,
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
package = json.loads((repo / "package.json").read_text())
|
||||||
|
self.assertEqual({"vite": "^7"}, package["peerDependencies"])
|
||||||
|
self.assertEqual({"vite": {"optional": True}}, package["peerDependenciesMeta"])
|
||||||
|
self.assertEqual({".": "./webui/src/index.ts"}, package["exports"])
|
||||||
|
|
||||||
|
def test_leaves_distinct_root_and_webui_packages_separate(self) -> None:
|
||||||
|
with tempfile.TemporaryDirectory() as directory:
|
||||||
|
repo = Path(directory)
|
||||||
|
(repo / "webui").mkdir()
|
||||||
|
(repo / "package.json").write_text(json.dumps({"name": "@govoplan/one"}))
|
||||||
|
(repo / "webui" / "package.json").write_text(json.dumps({"name": "@govoplan/two"}))
|
||||||
|
|
||||||
|
subprocess.run(
|
||||||
|
[sys.executable, str(SCRIPT), "--repo", str(repo)],
|
||||||
|
check=True,
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
root = json.loads((repo / "package.json").read_text())
|
||||||
|
self.assertEqual("@govoplan/one", root["name"])
|
||||||
|
self.assertNotIn("peerDependencies", root)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -0,0 +1,194 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Generate an independently held Ed25519 assessment-authority keypair."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import base64
|
||||||
|
from datetime import UTC, datetime, timedelta
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
from pathlib import Path
|
||||||
|
import re
|
||||||
|
import stat
|
||||||
|
|
||||||
|
from cryptography.hazmat.primitives import serialization
|
||||||
|
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKey
|
||||||
|
|
||||||
|
|
||||||
|
KEY_ID_PATTERN = re.compile(r"^[A-Za-z0-9][A-Za-z0-9._:-]{0,159}$")
|
||||||
|
PROOF_SCOPES = (
|
||||||
|
"target_environment",
|
||||||
|
"external_providers",
|
||||||
|
"accessibility",
|
||||||
|
"privacy",
|
||||||
|
"security",
|
||||||
|
"operations",
|
||||||
|
"recovery",
|
||||||
|
"production_approval",
|
||||||
|
)
|
||||||
|
PURPOSES = {
|
||||||
|
"proof": (
|
||||||
|
"govoplan.capability-fit-proof-authorities",
|
||||||
|
"./capability-fit-proof-authority-keyring.schema.json",
|
||||||
|
),
|
||||||
|
"installer": (
|
||||||
|
"govoplan.installer-receipt-authorities",
|
||||||
|
"./installer-receipt-authority-keyring.schema.json",
|
||||||
|
),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def main(argv: list[str] | None = None) -> int:
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
parser.add_argument("--purpose", choices=tuple(PURPOSES), required=True)
|
||||||
|
parser.add_argument("--key-id", required=True)
|
||||||
|
parser.add_argument(
|
||||||
|
"--scope",
|
||||||
|
action="append",
|
||||||
|
choices=PROOF_SCOPES,
|
||||||
|
default=[],
|
||||||
|
help="Authorized proof scope; repeat as needed. Not used for installer keys.",
|
||||||
|
)
|
||||||
|
parser.add_argument("--private-key", type=Path, required=True)
|
||||||
|
parser.add_argument("--keyring", type=Path, required=True)
|
||||||
|
parser.add_argument(
|
||||||
|
"--valid-days",
|
||||||
|
type=int,
|
||||||
|
default=365,
|
||||||
|
help="Validity from generation time (default: 365 days).",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--status",
|
||||||
|
choices=("active", "next"),
|
||||||
|
default="active",
|
||||||
|
)
|
||||||
|
args = parser.parse_args(argv)
|
||||||
|
|
||||||
|
if not KEY_ID_PATTERN.fullmatch(args.key_id):
|
||||||
|
parser.error("--key-id must be a valid opaque identifier")
|
||||||
|
if args.valid_days < 1 or args.valid_days > 3660:
|
||||||
|
parser.error("--valid-days must be between 1 and 3660")
|
||||||
|
scopes = _resolve_scopes(parser, purpose=args.purpose, scopes=args.scope)
|
||||||
|
|
||||||
|
private_path = args.private_key.expanduser().resolve()
|
||||||
|
keyring_path = args.keyring.expanduser().resolve()
|
||||||
|
_require_fresh_output(parser, private_path, label="private key")
|
||||||
|
_require_fresh_output(parser, keyring_path, label="keyring")
|
||||||
|
_require_private_directory(parser, private_path.parent)
|
||||||
|
_require_output_directory(parser, keyring_path.parent)
|
||||||
|
|
||||||
|
private_key = Ed25519PrivateKey.generate()
|
||||||
|
private_bytes = private_key.private_bytes(
|
||||||
|
encoding=serialization.Encoding.PEM,
|
||||||
|
format=serialization.PrivateFormat.PKCS8,
|
||||||
|
encryption_algorithm=serialization.NoEncryption(),
|
||||||
|
)
|
||||||
|
public_bytes = private_key.public_key().public_bytes(
|
||||||
|
encoding=serialization.Encoding.Raw,
|
||||||
|
format=serialization.PublicFormat.Raw,
|
||||||
|
)
|
||||||
|
public_base64 = base64.b64encode(public_bytes).decode("ascii")
|
||||||
|
now = datetime.now(UTC).replace(microsecond=0)
|
||||||
|
not_after = now + timedelta(days=args.valid_days)
|
||||||
|
purpose, schema = PURPOSES[args.purpose]
|
||||||
|
keyring = {
|
||||||
|
"$schema": schema,
|
||||||
|
"schema_version": "0.1.0",
|
||||||
|
"purpose": purpose,
|
||||||
|
"keys": [
|
||||||
|
{
|
||||||
|
"key_id": args.key_id,
|
||||||
|
"status": args.status,
|
||||||
|
"public_key": public_base64,
|
||||||
|
"allowed_scopes": scopes,
|
||||||
|
"not_before": _rfc3339(now),
|
||||||
|
"not_after": _rfc3339(not_after),
|
||||||
|
}
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
_write_new_private_file(private_path, private_bytes)
|
||||||
|
try:
|
||||||
|
_write_new_private_file(
|
||||||
|
keyring_path,
|
||||||
|
(json.dumps(keyring, indent=2, sort_keys=True) + "\n").encode("utf-8"),
|
||||||
|
)
|
||||||
|
except BaseException:
|
||||||
|
private_path.unlink(missing_ok=True)
|
||||||
|
keyring_path.unlink(missing_ok=True)
|
||||||
|
raise
|
||||||
|
|
||||||
|
print(f"private_key={private_path}")
|
||||||
|
print(f"keyring={keyring_path}")
|
||||||
|
print(f"key_id={args.key_id}")
|
||||||
|
print(f"allowed_scopes={','.join(scopes)}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
def _resolve_scopes(
|
||||||
|
parser: argparse.ArgumentParser, *, purpose: str, scopes: list[str]
|
||||||
|
) -> list[str]:
|
||||||
|
if purpose == "installer":
|
||||||
|
if scopes:
|
||||||
|
parser.error("installer authorities do not accept --scope")
|
||||||
|
return ["installed_release_origin"]
|
||||||
|
unique = list(dict.fromkeys(scopes))
|
||||||
|
if not unique:
|
||||||
|
parser.error("proof authorities require at least one --scope")
|
||||||
|
return unique
|
||||||
|
|
||||||
|
|
||||||
|
def _require_fresh_output(
|
||||||
|
parser: argparse.ArgumentParser, path: Path, *, label: str
|
||||||
|
) -> None:
|
||||||
|
if path.exists() or path.is_symlink():
|
||||||
|
parser.error(f"{label.capitalize()} output already exists: {path}")
|
||||||
|
|
||||||
|
|
||||||
|
def _require_private_directory(
|
||||||
|
parser: argparse.ArgumentParser, directory: Path
|
||||||
|
) -> None:
|
||||||
|
_require_output_directory(parser, directory)
|
||||||
|
mode = stat.S_IMODE(directory.stat().st_mode)
|
||||||
|
if mode & (stat.S_IRWXG | stat.S_IRWXO):
|
||||||
|
parser.error(
|
||||||
|
"Private-key parent directory must not be accessible by group or others"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _require_output_directory(
|
||||||
|
parser: argparse.ArgumentParser, directory: Path
|
||||||
|
) -> None:
|
||||||
|
try:
|
||||||
|
metadata = directory.lstat()
|
||||||
|
except OSError as exc:
|
||||||
|
parser.error(f"Output parent directory is unavailable: {directory}")
|
||||||
|
raise AssertionError from exc
|
||||||
|
if stat.S_ISLNK(metadata.st_mode) or not stat.S_ISDIR(metadata.st_mode):
|
||||||
|
parser.error(f"Output parent must be a real directory: {directory}")
|
||||||
|
|
||||||
|
|
||||||
|
def _write_new_private_file(path: Path, payload: bytes) -> None:
|
||||||
|
flags = os.O_WRONLY | os.O_CREAT | os.O_EXCL
|
||||||
|
if hasattr(os, "O_NOFOLLOW"):
|
||||||
|
flags |= os.O_NOFOLLOW
|
||||||
|
descriptor = os.open(path, flags, 0o600)
|
||||||
|
try:
|
||||||
|
with os.fdopen(descriptor, "wb", closefd=False) as handle:
|
||||||
|
handle.write(payload)
|
||||||
|
handle.flush()
|
||||||
|
os.fsync(handle.fileno())
|
||||||
|
metadata = os.fstat(descriptor)
|
||||||
|
if not stat.S_ISREG(metadata.st_mode) or stat.S_IMODE(metadata.st_mode) != 0o600:
|
||||||
|
raise OSError("Authority output could not be secured")
|
||||||
|
finally:
|
||||||
|
os.close(descriptor)
|
||||||
|
|
||||||
|
|
||||||
|
def _rfc3339(value: datetime) -> str:
|
||||||
|
return value.isoformat().replace("+00:00", "Z")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
@@ -15,6 +15,7 @@ from govoplan_core.core.dataflows import (
|
|||||||
dataflow_run_lifecycle,
|
dataflow_run_lifecycle,
|
||||||
)
|
)
|
||||||
from govoplan_core.core.automation import AutomationPrincipalResolution
|
from govoplan_core.core.automation import AutomationPrincipalResolution
|
||||||
|
from govoplan_core.core.change_sequence import ChangeSequenceEntry
|
||||||
from govoplan_core.core.access import (
|
from govoplan_core.core.access import (
|
||||||
CAPABILITY_AUTH_AUTOMATION_PRINCIPAL_PROVIDER,
|
CAPABILITY_AUTH_AUTOMATION_PRINCIPAL_PROVIDER,
|
||||||
)
|
)
|
||||||
@@ -79,6 +80,7 @@ def main() -> int:
|
|||||||
Base.metadata.create_all(
|
Base.metadata.create_all(
|
||||||
engine,
|
engine,
|
||||||
tables=[
|
tables=[
|
||||||
|
ChangeSequenceEntry.__table__,
|
||||||
DistributedLease.__table__,
|
DistributedLease.__table__,
|
||||||
RecoveryOperation.__table__,
|
RecoveryOperation.__table__,
|
||||||
RecoveryCheckpoint.__table__,
|
RecoveryCheckpoint.__table__,
|
||||||
|
|||||||
@@ -40,6 +40,10 @@ GOVOPLAN_CORE_ROOT="$ROOT" PYTHON="$PYTHON" CHECK_TESTCLIENT_DEPRECATIONS=1 bash
|
|||||||
PYTHONDONTWRITEBYTECODE=1 "$PYTHON" "$META_ROOT/tools/checks/check-manifest-shapes.py" --require-architecture
|
PYTHONDONTWRITEBYTECODE=1 "$PYTHON" "$META_ROOT/tools/checks/check-manifest-shapes.py" --require-architecture
|
||||||
|
|
||||||
cd "$META_ROOT"
|
cd "$META_ROOT"
|
||||||
|
"$PYTHON" tools/inventory/platform-interface-inventory.py --strict-declarations --strict-endpoints
|
||||||
|
"$PYTHON" tools/repo/sync-module-package-workflows.py --check
|
||||||
|
"$PYTHON" tools/release/generate-developer-meta-package.py --check
|
||||||
|
"$PYTHON" -m unittest tests.test_module_package_workflows tests.test_package_registry_release
|
||||||
"$PYTHON" -m unittest tests.test_deployment_installer
|
"$PYTHON" -m unittest tests.test_deployment_installer
|
||||||
"$PYTHON" -m unittest tests.test_capability_fit_evidence
|
"$PYTHON" -m unittest tests.test_capability_fit_evidence
|
||||||
"$PYTHON" -m unittest tests.test_configuration_package_artifacts
|
"$PYTHON" -m unittest tests.test_configuration_package_artifacts
|
||||||
|
|||||||
@@ -182,6 +182,11 @@ run_step "Validate installed module manifests and registry"
|
|||||||
"$PYTHON" "$META_ROOT/tools/checks/release_integration.py" artifacts \
|
"$PYTHON" "$META_ROOT/tools/checks/release_integration.py" artifacts \
|
||||||
--requirements "$META_ROOT/requirements-release.txt"
|
--requirements "$META_ROOT/requirements-release.txt"
|
||||||
|
|
||||||
|
run_step "Validate platform interface and endpoint declarations"
|
||||||
|
"$PYTHON" "$META_ROOT/tools/inventory/platform-interface-inventory.py" \
|
||||||
|
--strict-declarations \
|
||||||
|
--strict-endpoints
|
||||||
|
|
||||||
run_step "Generate release dependency provenance"
|
run_step "Generate release dependency provenance"
|
||||||
"$PYTHON" "$META_ROOT/tools/release/generate-release-sbom.py" \
|
"$PYTHON" "$META_ROOT/tools/release/generate-release-sbom.py" \
|
||||||
--python "$PYTHON" \
|
--python "$PYTHON" \
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ def validate_manifest(
|
|||||||
"composition",
|
"composition",
|
||||||
"signatures",
|
"signatures",
|
||||||
},
|
},
|
||||||
|
optional={"package_lock"},
|
||||||
label="distribution manifest",
|
label="distribution manifest",
|
||||||
)
|
)
|
||||||
if payload.get("schema_version") != "1":
|
if payload.get("schema_version") != "1":
|
||||||
@@ -200,6 +201,12 @@ def validate_manifest(
|
|||||||
_https_url(deployer.get("url"), "deployer.url")
|
_https_url(deployer.get("url"), "deployer.url")
|
||||||
_sha256(deployer.get("sha256"), "deployer.sha256")
|
_sha256(deployer.get("sha256"), "deployer.sha256")
|
||||||
|
|
||||||
|
if "package_lock" in payload:
|
||||||
|
package_lock = _object(payload.get("package_lock"), "package_lock")
|
||||||
|
_exact_keys(package_lock, required={"url", "sha256"}, label="package_lock")
|
||||||
|
_https_url(package_lock.get("url"), "package_lock.url")
|
||||||
|
_sha256(package_lock.get("sha256"), "package_lock.sha256")
|
||||||
|
|
||||||
images = _object(payload.get("images"), "images")
|
images = _object(payload.get("images"), "images")
|
||||||
if set(images) != {"api", "web"}:
|
if set(images) != {"api", "web"}:
|
||||||
raise DistributionError("images must contain exactly api and web")
|
raise DistributionError("images must contain exactly api and web")
|
||||||
@@ -630,10 +637,12 @@ def _exact_keys(
|
|||||||
value: Mapping[str, Any],
|
value: Mapping[str, Any],
|
||||||
*,
|
*,
|
||||||
required: set[str],
|
required: set[str],
|
||||||
|
optional: set[str] | None = None,
|
||||||
label: str,
|
label: str,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
optional = optional or set()
|
||||||
missing = sorted(required - set(value))
|
missing = sorted(required - set(value))
|
||||||
extra = sorted(set(value) - required)
|
extra = sorted(set(value) - required - optional)
|
||||||
if missing or extra:
|
if missing or extra:
|
||||||
detail = []
|
detail = []
|
||||||
if missing:
|
if missing:
|
||||||
|
|||||||
@@ -0,0 +1,141 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Configure and verify protected GovOPlaN package-release boundaries."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from gitea_common import (
|
||||||
|
GiteaClient,
|
||||||
|
GiteaError,
|
||||||
|
RepoTarget,
|
||||||
|
load_dotenv,
|
||||||
|
org_path,
|
||||||
|
quote_path,
|
||||||
|
repo_path,
|
||||||
|
require_token,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
META_ROOT = Path(__file__).resolve().parents[2]
|
||||||
|
REQUIRED_SECRETS = {"GOVOPLAN_PACKAGE_USERNAME", "GOVOPLAN_PACKAGE_TOKEN"}
|
||||||
|
|
||||||
|
|
||||||
|
def build_parser() -> argparse.ArgumentParser:
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
parser.add_argument("--url", default="https://git.add-ideas.de")
|
||||||
|
parser.add_argument("--owner", default="GovOPlaN")
|
||||||
|
parser.add_argument("--team", default="Owners")
|
||||||
|
parser.add_argument("--pattern", default="v*")
|
||||||
|
parser.add_argument("--env-file", type=Path)
|
||||||
|
parser.add_argument("--apply", action="store_true")
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
|
def package_repositories() -> tuple[str, ...]:
|
||||||
|
inventory = json.loads((META_ROOT / "repositories.json").read_text(encoding="utf-8"))
|
||||||
|
values = ["govoplan"]
|
||||||
|
for item in inventory["repositories"]:
|
||||||
|
name = str(item["name"])
|
||||||
|
repository = META_ROOT.parent / str(item["path"])
|
||||||
|
if name.startswith("govoplan-") and (repository / "pyproject.toml").is_file():
|
||||||
|
values.append(name)
|
||||||
|
return tuple(sorted(set(values)))
|
||||||
|
|
||||||
|
|
||||||
|
def configure(
|
||||||
|
client: GiteaClient,
|
||||||
|
*,
|
||||||
|
owner: str,
|
||||||
|
team: str,
|
||||||
|
pattern: str,
|
||||||
|
apply: bool,
|
||||||
|
) -> tuple[str, ...]:
|
||||||
|
missing: list[str] = []
|
||||||
|
expected = {
|
||||||
|
"name_pattern": pattern,
|
||||||
|
"whitelist_teams": [team],
|
||||||
|
"whitelist_usernames": [],
|
||||||
|
}
|
||||||
|
for repository in package_repositories():
|
||||||
|
path = repo_path(owner, repository, "/tag_protections")
|
||||||
|
protections = client.request_json("GET", path)
|
||||||
|
matching = [
|
||||||
|
item
|
||||||
|
for item in protections
|
||||||
|
if isinstance(item, dict) and item.get("name_pattern") == pattern
|
||||||
|
]
|
||||||
|
if len(matching) == 1 and _matches(matching[0], expected):
|
||||||
|
print(f"protected {repository}:{pattern}")
|
||||||
|
continue
|
||||||
|
missing.append(repository)
|
||||||
|
if not apply:
|
||||||
|
print(f"would protect {repository}:{pattern}")
|
||||||
|
continue
|
||||||
|
if len(matching) == 1:
|
||||||
|
protection_id = matching[0].get("id")
|
||||||
|
client.request_json(
|
||||||
|
"PATCH",
|
||||||
|
f"{path}/{quote_path(str(protection_id))}",
|
||||||
|
body=expected,
|
||||||
|
)
|
||||||
|
print(f"updated {repository}:{pattern}")
|
||||||
|
elif not matching:
|
||||||
|
client.request_json("POST", path, body=expected)
|
||||||
|
print(f"created {repository}:{pattern}")
|
||||||
|
else:
|
||||||
|
raise GiteaError(f"{repository} has duplicate {pattern!r} tag protections")
|
||||||
|
return tuple(missing)
|
||||||
|
|
||||||
|
|
||||||
|
def _matches(value: dict[str, object], expected: dict[str, object]) -> bool:
|
||||||
|
return (
|
||||||
|
value.get("name_pattern") == expected["name_pattern"]
|
||||||
|
and sorted(value.get("whitelist_teams") or []) == expected["whitelist_teams"]
|
||||||
|
and sorted(value.get("whitelist_usernames") or []) == expected["whitelist_usernames"]
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
args = build_parser().parse_args()
|
||||||
|
try:
|
||||||
|
load_dotenv(args.env_file)
|
||||||
|
token = require_token()
|
||||||
|
target = RepoTarget(base_url=args.url, owner=args.owner, repo="govoplan")
|
||||||
|
with GiteaClient(target, token) as client:
|
||||||
|
mismatches = configure(
|
||||||
|
client,
|
||||||
|
owner=args.owner,
|
||||||
|
team=args.team,
|
||||||
|
pattern=args.pattern,
|
||||||
|
apply=args.apply,
|
||||||
|
)
|
||||||
|
secrets = client.request_json(
|
||||||
|
"GET", org_path(args.owner, "/actions/secrets"), query={"limit": 50}
|
||||||
|
)
|
||||||
|
names = {
|
||||||
|
str(item.get("name") or "")
|
||||||
|
for item in secrets
|
||||||
|
if isinstance(item, dict)
|
||||||
|
}
|
||||||
|
missing_secrets = sorted(REQUIRED_SECRETS - names)
|
||||||
|
if missing_secrets:
|
||||||
|
print(
|
||||||
|
"Missing organization Actions secrets: " + ", ".join(missing_secrets),
|
||||||
|
file=sys.stderr,
|
||||||
|
)
|
||||||
|
unresolved = (bool(mismatches) and not args.apply) or bool(missing_secrets)
|
||||||
|
if unresolved:
|
||||||
|
return 1
|
||||||
|
print("Package release protection and credential names are configured.")
|
||||||
|
return 0
|
||||||
|
except (GiteaError, OSError, ValueError, json.JSONDecodeError) as exc:
|
||||||
|
print(f"error: {exc}", file=sys.stderr)
|
||||||
|
return 1
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
@@ -0,0 +1,302 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Dispatch protected package releases required by the govoplan meta-package."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
from dataclasses import dataclass
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import re
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
import tomllib
|
||||||
|
|
||||||
|
from gitea_common import (
|
||||||
|
GiteaClient,
|
||||||
|
GiteaError,
|
||||||
|
RepoTarget,
|
||||||
|
load_dotenv,
|
||||||
|
org_path,
|
||||||
|
quote_path,
|
||||||
|
repo_path,
|
||||||
|
require_token,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
META_ROOT = Path(__file__).resolve().parents[2]
|
||||||
|
META_PROJECT = META_ROOT / "packages" / "govoplan-meta" / "pyproject.toml"
|
||||||
|
WORKFLOW_ID = "module-package-release.yml"
|
||||||
|
EXACT_REQUIREMENT = re.compile(
|
||||||
|
r"^(?P<name>govoplan-[a-z0-9-]+)(?:\[[a-z0-9_,.-]+\])?==(?P<version>[0-9]+\.[0-9]+\.[0-9]+)$"
|
||||||
|
)
|
||||||
|
ACTIVE_STATES = {"queued", "waiting", "in_progress", "running"}
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, slots=True)
|
||||||
|
class PackageTarget:
|
||||||
|
distribution: str
|
||||||
|
version: str
|
||||||
|
repository: str
|
||||||
|
tag_exists: bool
|
||||||
|
has_webui: bool
|
||||||
|
|
||||||
|
@property
|
||||||
|
def tag(self) -> str:
|
||||||
|
return f"v{self.version}"
|
||||||
|
|
||||||
|
@property
|
||||||
|
def webui_package(self) -> str | None:
|
||||||
|
if not self.has_webui:
|
||||||
|
return None
|
||||||
|
return f"@govoplan/{self.distribution.removeprefix('govoplan-')}-webui"
|
||||||
|
|
||||||
|
|
||||||
|
def build_parser() -> argparse.ArgumentParser:
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
parser.add_argument("--url", default="https://git.add-ideas.de")
|
||||||
|
parser.add_argument("--owner", default="GovOPlaN")
|
||||||
|
parser.add_argument("--env-file", type=Path)
|
||||||
|
parser.add_argument(
|
||||||
|
"--repository",
|
||||||
|
action="append",
|
||||||
|
default=[],
|
||||||
|
help="Limit dispatch to one repository; repeat as needed.",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--verify-existing",
|
||||||
|
action="store_true",
|
||||||
|
help="Also rerun exact versions already present in both registries.",
|
||||||
|
)
|
||||||
|
parser.add_argument("--apply", action="store_true")
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
|
def package_targets(project_path: Path = META_PROJECT) -> tuple[PackageTarget, ...]:
|
||||||
|
project = tomllib.loads(project_path.read_text(encoding="utf-8"))["project"]
|
||||||
|
requirements = list(project.get("dependencies") or [])
|
||||||
|
requirements.extend(project.get("optional-dependencies", {}).get("full") or [])
|
||||||
|
parsed: dict[str, str] = {}
|
||||||
|
for requirement in requirements:
|
||||||
|
match = EXACT_REQUIREMENT.fullmatch(str(requirement))
|
||||||
|
if match is None:
|
||||||
|
raise ValueError(
|
||||||
|
f"Meta-package requirement is not an exact GovOPlaN version: {requirement!r}"
|
||||||
|
)
|
||||||
|
name = match.group("name")
|
||||||
|
version = match.group("version")
|
||||||
|
previous = parsed.setdefault(name, version)
|
||||||
|
if previous != version:
|
||||||
|
raise ValueError(f"Meta-package selects conflicting versions for {name}")
|
||||||
|
|
||||||
|
targets: list[PackageTarget] = []
|
||||||
|
for distribution, version in sorted(parsed.items()):
|
||||||
|
repository = distribution
|
||||||
|
repository_root = META_ROOT.parent / repository
|
||||||
|
if not (repository_root / ".git").is_dir():
|
||||||
|
raise ValueError(f"Package repository is not checked out: {repository}")
|
||||||
|
tag = f"v{version}"
|
||||||
|
tag_exists = _tag_exists(repository_root, tag)
|
||||||
|
has_webui = (
|
||||||
|
_tag_has_path(repository_root, tag, "webui/package.json")
|
||||||
|
if tag_exists
|
||||||
|
else False
|
||||||
|
)
|
||||||
|
targets.append(
|
||||||
|
PackageTarget(
|
||||||
|
distribution=distribution,
|
||||||
|
version=version,
|
||||||
|
repository=repository,
|
||||||
|
tag_exists=tag_exists,
|
||||||
|
has_webui=has_webui,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
return tuple(targets)
|
||||||
|
|
||||||
|
|
||||||
|
def _tag_exists(repository: Path, tag: str) -> bool:
|
||||||
|
result = subprocess.run(
|
||||||
|
(
|
||||||
|
"git",
|
||||||
|
"-C",
|
||||||
|
str(repository),
|
||||||
|
"rev-parse",
|
||||||
|
"--verify",
|
||||||
|
"--quiet",
|
||||||
|
f"refs/tags/{tag}",
|
||||||
|
),
|
||||||
|
check=False,
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
)
|
||||||
|
if result.returncode not in {0, 1}:
|
||||||
|
raise ValueError(
|
||||||
|
f"Could not inspect {repository.name}:{tag}: {result.stderr.strip()}"
|
||||||
|
)
|
||||||
|
return result.returncode == 0
|
||||||
|
|
||||||
|
|
||||||
|
def _tag_has_path(repository: Path, tag: str, path: str) -> bool:
|
||||||
|
result = subprocess.run(
|
||||||
|
("git", "-C", str(repository), "cat-file", "-e", f"{tag}:{path}"),
|
||||||
|
check=False,
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
)
|
||||||
|
if result.returncode not in {0, 128}:
|
||||||
|
raise ValueError(
|
||||||
|
f"Could not inspect {repository.name}:{tag}:{path}: {result.stderr.strip()}"
|
||||||
|
)
|
||||||
|
return result.returncode == 0
|
||||||
|
|
||||||
|
|
||||||
|
def _published_packages(
|
||||||
|
client: GiteaClient, *, owner: str, package_type: str
|
||||||
|
) -> set[tuple[str, str]]:
|
||||||
|
values = client.paginate(
|
||||||
|
f"/packages/{quote_path(owner)}",
|
||||||
|
query={"type": package_type, "q": "govoplan"},
|
||||||
|
)
|
||||||
|
return {
|
||||||
|
(str(item.get("name") or ""), str(item.get("version") or ""))
|
||||||
|
for item in values
|
||||||
|
if item.get("type") == package_type
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def _has_active_run(
|
||||||
|
client: GiteaClient, *, owner: str, repository: str
|
||||||
|
) -> bool:
|
||||||
|
payload = client.request_json(
|
||||||
|
"GET",
|
||||||
|
repo_path(
|
||||||
|
owner,
|
||||||
|
repository,
|
||||||
|
f"/actions/workflows/{quote_path(WORKFLOW_ID)}/runs",
|
||||||
|
),
|
||||||
|
query={"limit": 10},
|
||||||
|
)
|
||||||
|
runs = payload.get("workflow_runs") if isinstance(payload, dict) else None
|
||||||
|
return isinstance(runs, list) and any(
|
||||||
|
isinstance(run, dict) and str(run.get("status") or "") in ACTIVE_STATES
|
||||||
|
for run in runs
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def dispatch(
|
||||||
|
client: GiteaClient,
|
||||||
|
*,
|
||||||
|
owner: str,
|
||||||
|
targets: tuple[PackageTarget, ...],
|
||||||
|
published_pypi: set[tuple[str, str]],
|
||||||
|
published_npm: set[tuple[str, str]],
|
||||||
|
verify_existing: bool,
|
||||||
|
apply: bool,
|
||||||
|
) -> tuple[int, int, int]:
|
||||||
|
dispatched = 0
|
||||||
|
active = 0
|
||||||
|
complete = 0
|
||||||
|
for target in targets:
|
||||||
|
wheel_exists = (target.distribution, target.version) in published_pypi
|
||||||
|
npm_exists = target.webui_package is None or (
|
||||||
|
target.webui_package,
|
||||||
|
target.version,
|
||||||
|
) in published_npm
|
||||||
|
if wheel_exists and npm_exists and not verify_existing:
|
||||||
|
complete += 1
|
||||||
|
print(f"complete {target.repository}:{target.tag}")
|
||||||
|
continue
|
||||||
|
if _has_active_run(client, owner=owner, repository=target.repository):
|
||||||
|
active += 1
|
||||||
|
print(f"active {target.repository}:{target.tag}")
|
||||||
|
continue
|
||||||
|
|
||||||
|
action = "dispatching" if apply else "would dispatch"
|
||||||
|
print(
|
||||||
|
f"{action} {target.repository}:{target.tag} "
|
||||||
|
f"(wheel={'present' if wheel_exists else 'missing'}, "
|
||||||
|
f"webui={'present' if npm_exists else 'missing'})"
|
||||||
|
)
|
||||||
|
if apply:
|
||||||
|
client.request_json(
|
||||||
|
"POST",
|
||||||
|
repo_path(
|
||||||
|
owner,
|
||||||
|
target.repository,
|
||||||
|
f"/actions/workflows/{quote_path(WORKFLOW_ID)}/dispatches",
|
||||||
|
),
|
||||||
|
body={"ref": "main", "inputs": {"release_tag": target.tag}},
|
||||||
|
)
|
||||||
|
dispatched += 1
|
||||||
|
return dispatched, active, complete
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
args = build_parser().parse_args()
|
||||||
|
try:
|
||||||
|
load_dotenv(args.env_file)
|
||||||
|
token = require_token()
|
||||||
|
targets = package_targets()
|
||||||
|
selected = set(args.repository)
|
||||||
|
if selected:
|
||||||
|
known = {target.repository for target in targets}
|
||||||
|
unknown = sorted(selected - known)
|
||||||
|
if unknown:
|
||||||
|
raise ValueError(
|
||||||
|
"Unknown meta-package repositories: " + ", ".join(unknown)
|
||||||
|
)
|
||||||
|
targets = tuple(
|
||||||
|
target for target in targets if target.repository in selected
|
||||||
|
)
|
||||||
|
missing_tags = [
|
||||||
|
f"{target.repository}:{target.tag}"
|
||||||
|
for target in targets
|
||||||
|
if not target.tag_exists
|
||||||
|
]
|
||||||
|
if missing_tags:
|
||||||
|
raise ValueError(
|
||||||
|
"Meta-package release tags are missing: " + ", ".join(missing_tags)
|
||||||
|
)
|
||||||
|
target = RepoTarget(base_url=args.url, owner=args.owner, repo="govoplan")
|
||||||
|
with GiteaClient(target, token) as client:
|
||||||
|
secrets = client.request_json(
|
||||||
|
"GET", org_path(args.owner, "/actions/secrets"), query={"limit": 50}
|
||||||
|
)
|
||||||
|
secret_names = {
|
||||||
|
str(item.get("name") or "")
|
||||||
|
for item in secrets
|
||||||
|
if isinstance(item, dict)
|
||||||
|
}
|
||||||
|
required = {"GOVOPLAN_PACKAGE_USERNAME", "GOVOPLAN_PACKAGE_TOKEN"}
|
||||||
|
if not required <= secret_names:
|
||||||
|
raise ValueError(
|
||||||
|
"Organization package publisher secrets are not configured"
|
||||||
|
)
|
||||||
|
published_pypi = _published_packages(
|
||||||
|
client, owner=args.owner, package_type="pypi"
|
||||||
|
)
|
||||||
|
published_npm = _published_packages(
|
||||||
|
client, owner=args.owner, package_type="npm"
|
||||||
|
)
|
||||||
|
counts = dispatch(
|
||||||
|
client,
|
||||||
|
owner=args.owner,
|
||||||
|
targets=targets,
|
||||||
|
published_pypi=published_pypi,
|
||||||
|
published_npm=published_npm,
|
||||||
|
verify_existing=args.verify_existing,
|
||||||
|
apply=args.apply,
|
||||||
|
)
|
||||||
|
action = "dispatched" if args.apply else "planned"
|
||||||
|
print(
|
||||||
|
f"Package set {action}: {counts[0]}; active: {counts[1]}; "
|
||||||
|
f"already complete: {counts[2]}."
|
||||||
|
)
|
||||||
|
return 0
|
||||||
|
except (GiteaError, OSError, ValueError, json.JSONDecodeError) as exc:
|
||||||
|
print(f"error: {exc}", file=sys.stderr)
|
||||||
|
return 1
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
@@ -155,44 +155,39 @@
|
|||||||
"repository": "govoplan-access"
|
"repository": "govoplan-access"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
"path": "/admin/service-accounts",
|
"path": "/admin/service-accounts",
|
||||||
"rationale": "Service-account lifecycle is implemented but its administration UI is tracked separately.",
|
"rationale": "Access administration lists service accounts and opens their lifecycle and credential manager.",
|
||||||
"repository": "govoplan-access",
|
"repository": "govoplan-access"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-access/issues/18"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/admin/service-accounts",
|
"path": "/admin/service-accounts",
|
||||||
"rationale": "Service-account lifecycle is implemented but its administration UI is tracked separately.",
|
"rationale": "Access administration creates service accounts through the governed editor.",
|
||||||
"repository": "govoplan-access",
|
"repository": "govoplan-access"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-access/issues/18"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
"path": "/admin/service-accounts/{}",
|
"path": "/admin/service-accounts/{}",
|
||||||
"rationale": "Service-account lifecycle is implemented but its administration UI is tracked separately.",
|
"rationale": "Access administration refreshes service-account state before governed mutations.",
|
||||||
"repository": "govoplan-access",
|
"repository": "govoplan-access"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-access/issues/18"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "PATCH",
|
"method": "PATCH",
|
||||||
"path": "/admin/service-accounts/{}",
|
"path": "/admin/service-accounts/{}",
|
||||||
"rationale": "Service-account lifecycle is implemented but its administration UI is tracked separately.",
|
"rationale": "Access administration edits, activates, and deactivates service accounts with revision checks.",
|
||||||
"repository": "govoplan-access",
|
"repository": "govoplan-access"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-access/issues/18"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/admin/service-accounts/{}/retire",
|
"path": "/admin/service-accounts/{}/retire",
|
||||||
"rationale": "Service-account lifecycle is implemented but its administration UI is tracked separately.",
|
"rationale": "Access administration exposes separately confirmed retirement and credential revocation.",
|
||||||
"repository": "govoplan-access",
|
"repository": "govoplan-access"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-access/issues/18"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "intentionally_headless",
|
"category": "intentionally_headless",
|
||||||
@@ -237,44 +232,39 @@
|
|||||||
"repository": "govoplan-admin"
|
"repository": "govoplan-admin"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
"path": "/approvals/templates",
|
"path": "/approvals/templates",
|
||||||
"rationale": "Approval-template and escalation administration UI is tracked separately.",
|
"rationale": "Approval administration lists immutable template revisions.",
|
||||||
"repository": "govoplan-approvals",
|
"repository": "govoplan-approvals"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-approvals/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/approvals/templates",
|
"path": "/approvals/templates",
|
||||||
"rationale": "Approval-template and escalation administration UI is tracked separately.",
|
"rationale": "Approval administration creates validated draft templates.",
|
||||||
"repository": "govoplan-approvals",
|
"repository": "govoplan-approvals"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-approvals/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "PUT",
|
"method": "PUT",
|
||||||
"path": "/approvals/templates/{}",
|
"path": "/approvals/templates/{}",
|
||||||
"rationale": "Approval-template and escalation administration UI is tracked separately.",
|
"rationale": "Approval administration revises templates through optimistic immutable revisions.",
|
||||||
"repository": "govoplan-approvals",
|
"repository": "govoplan-approvals"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-approvals/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/approvals/templates/{}/publish",
|
"path": "/approvals/templates/{}/publish",
|
||||||
"rationale": "Approval-template and escalation administration UI is tracked separately.",
|
"rationale": "Approval administration publishes a draft only after an explicit confirmation.",
|
||||||
"repository": "govoplan-approvals",
|
"repository": "govoplan-approvals"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-approvals/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/approvals/{}/escalate",
|
"path": "/approvals/{}/escalate",
|
||||||
"rationale": "Approval-template and escalation administration UI is tracked separately.",
|
"rationale": "The request dialog exposes escalation only for due pending requests and authorized administrators.",
|
||||||
"repository": "govoplan-approvals",
|
"repository": "govoplan-approvals"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-approvals/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "ui_reachable",
|
"category": "ui_reachable",
|
||||||
@@ -353,6 +343,20 @@
|
|||||||
"rationale": "Published integration, interoperability, public-participant, or health endpoint.",
|
"rationale": "Published integration, interoperability, public-participant, or health endpoint.",
|
||||||
"repository": "govoplan-calendar"
|
"repository": "govoplan-calendar"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"category": "intentionally_headless",
|
||||||
|
"method": "POST",
|
||||||
|
"path": "/bootstrap/first-admin",
|
||||||
|
"rationale": "The restricted first-run endpoint is consumed by the local bootstrap handoff and can only create the first durable administrator.",
|
||||||
|
"repository": "govoplan-core"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"category": "intentionally_headless",
|
||||||
|
"method": "GET",
|
||||||
|
"path": "/bootstrap/status",
|
||||||
|
"rationale": "The local bootstrap handoff reads only minimum first-run readiness before a normal authenticated shell exists.",
|
||||||
|
"repository": "govoplan-core"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"category": "public_integration",
|
"category": "public_integration",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
@@ -368,12 +372,11 @@
|
|||||||
"repository": "govoplan-calendar"
|
"repository": "govoplan-calendar"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/campaigns/{}/archive",
|
"path": "/campaigns/{}/archive",
|
||||||
"rationale": "Campaign archive lifecycle UI remains tracked by the archive policy issue.",
|
"rationale": "The Campaign overview exposes the governed archive action with permission checks and an evidence-retention confirmation.",
|
||||||
"repository": "govoplan-campaign",
|
"repository": "govoplan-campaign"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-campaign/issues/26"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "intentionally_headless",
|
"category": "intentionally_headless",
|
||||||
@@ -389,6 +392,13 @@
|
|||||||
"rationale": "Campaign delivery diagnostic/status API is retained for bounded support and automation consumers.",
|
"rationale": "Campaign delivery diagnostic/status API is retained for bounded support and automation consumers.",
|
||||||
"repository": "govoplan-campaign"
|
"repository": "govoplan-campaign"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"category": "worker_internal",
|
||||||
|
"method": "POST",
|
||||||
|
"path": "/campaigns/operations/artifacts/reconcile",
|
||||||
|
"rationale": "Privileged, bounded artifact recovery operation used by operators and recovery automation rather than an end-user surface.",
|
||||||
|
"repository": "govoplan-campaign"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"category": "ui_reachable",
|
"category": "ui_reachable",
|
||||||
"method": "PUT",
|
"method": "PUT",
|
||||||
@@ -571,6 +581,13 @@
|
|||||||
"rationale": "The shared ownership UI uses a dynamic transfer-action path that the static string scan cannot resolve.",
|
"rationale": "The shared ownership UI uses a dynamic transfer-action path that the static string scan cannot resolve.",
|
||||||
"repository": "govoplan-core"
|
"repository": "govoplan-core"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"category": "intentionally_headless",
|
||||||
|
"method": "GET",
|
||||||
|
"path": "/platform/interface-catalog",
|
||||||
|
"rationale": "Authorized module and system administrators consume the read-only control-plane inventory directly or through Ops/Docs projections.",
|
||||||
|
"repository": "govoplan-core"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"category": "compatibility",
|
"category": "compatibility",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
@@ -656,156 +673,172 @@
|
|||||||
"repository": "govoplan-docs"
|
"repository": "govoplan-docs"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
"path": "/encryption/disable-preflight",
|
"path": "/encryption/disable-preflight",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "The Encryption administration panel displays disable readiness and bounded blocking envelope references.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "intentionally_headless",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/envelopes",
|
"path": "/encryption/envelopes",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "Feature modules register envelopes while retaining content ownership; the operator UI must not construct feature content envelopes.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
|
"method": "GET",
|
||||||
|
"path": "/encryption/envelopes",
|
||||||
|
"rationale": "The Encryption administration panel consumes the bounded, secret-free envelope summary contract.",
|
||||||
|
"repository": "govoplan-encryption"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"category": "intentionally_headless",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
"path": "/encryption/envelopes/{}",
|
"path": "/encryption/envelopes/{}",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "Owning modules resolve a specific full envelope through the capability/API contract; the operator UI uses the secret-free summary projection.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
|
"method": "GET",
|
||||||
|
"path": "/encryption/migrations",
|
||||||
|
"rationale": "The Encryption administration panel displays bounded migration state and evidence counts.",
|
||||||
|
"repository": "govoplan-encryption"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/migrations",
|
"path": "/encryption/migrations",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "Encryption custodians can authorize a two-phase migration from a bounded envelope summary.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "intentionally_headless",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/migrations/{}/outcome",
|
"path": "/encryption/migrations/{}/outcome",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "Only the owning module or governed worker can attest the durable content outcome and exact target envelope.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
|
"method": "POST",
|
||||||
|
"path": "/encryption/migrations/{}/reconcile",
|
||||||
|
"rationale": "Encryption custodians can re-read recorded provider migration state without declaring an outcome.",
|
||||||
|
"repository": "govoplan-encryption"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"category": "ui_reachable",
|
||||||
|
"method": "GET",
|
||||||
|
"path": "/encryption/recoveries",
|
||||||
|
"rationale": "The Encryption administration panel displays bounded recovery requests, quorum, expiry, and state.",
|
||||||
|
"repository": "govoplan-encryption"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/recoveries",
|
"path": "/encryption/recoveries",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "Authorized custodians can request an expiring high-assurance recovery ceremony.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/recoveries/{}/decision",
|
"path": "/encryption/recoveries/{}/decision",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "The recovery table exposes explicit approve/reject decisions with assurance, reason, and optimistic revision.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
|
"method": "GET",
|
||||||
|
"path": "/encryption/vaults",
|
||||||
|
"rationale": "The Encryption administration panel consumes the bounded, secret-free vault summary contract.",
|
||||||
|
"repository": "govoplan-encryption"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/vaults",
|
"path": "/encryption/vaults",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "Encryption custodians can create a governed vault without entering or receiving raw key material.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "intentionally_headless",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
"path": "/encryption/vaults/{}",
|
"path": "/encryption/vaults/{}",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "Capability consumers may resolve the complete vault reference; the operator UI uses the secret-free summary projection.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/vaults/{}/destruction",
|
"path": "/encryption/vaults/{}/destruction",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "The vault action group schedules destructive key lifecycle operations with explicit consequences.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/vaults/{}/reconcile",
|
"path": "/encryption/vaults/{}/reconcile",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "The vault action group reconciles an outcome-unknown provider operation.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/vaults/{}/revoke",
|
"path": "/encryption/vaults/{}/revoke",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "The vault action group revokes the current key with policy, assurance, reason, and revision evidence.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/encryption/vaults/{}/rotate",
|
"path": "/encryption/vaults/{}/rotate",
|
||||||
"rationale": "Encryption custodian, lifecycle, and recovery administration UI is tracked separately.",
|
"rationale": "The vault action group rotates the current key with policy, assurance, reason, and revision evidence.",
|
||||||
"repository": "govoplan-encryption",
|
"repository": "govoplan-encryption"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-encryption/issues/4"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/files/integrity/findings/{}/cleanup",
|
"path": "/files/integrity/findings/{}/cleanup",
|
||||||
"rationale": "File-integrity operations UI is tracked separately.",
|
"rationale": "The Files integrity panel requires a dry-run preview and separate confirmation before cleanup.",
|
||||||
"repository": "govoplan-files",
|
"repository": "govoplan-files"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-files/issues/40"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/files/integrity/findings/{}/recheck",
|
"path": "/files/integrity/findings/{}/recheck",
|
||||||
"rationale": "File-integrity operations UI is tracked separately.",
|
"rationale": "The Files integrity panel rechecks findings against their displayed revision.",
|
||||||
"repository": "govoplan-files",
|
"repository": "govoplan-files"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-files/issues/40"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
"path": "/files/integrity/scans",
|
"path": "/files/integrity/scans",
|
||||||
"rationale": "File-integrity operations UI is tracked separately.",
|
"rationale": "The Files integrity administration panel lists bounded reconciliation scans.",
|
||||||
"repository": "govoplan-files",
|
"repository": "govoplan-files"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-files/issues/40"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/files/integrity/scans",
|
"path": "/files/integrity/scans",
|
||||||
"rationale": "File-integrity operations UI is tracked separately.",
|
"rationale": "Authorized Files operators can create a bounded integrity scan from administration.",
|
||||||
"repository": "govoplan-files",
|
"repository": "govoplan-files"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-files/issues/40"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
"path": "/files/integrity/scans/{}/findings",
|
"path": "/files/integrity/scans/{}/findings",
|
||||||
"rationale": "File-integrity operations UI is tracked separately.",
|
"rationale": "The Files integrity panel displays findings and blocker evidence for the selected scan.",
|
||||||
"repository": "govoplan-files",
|
"repository": "govoplan-files"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-files/issues/40"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/files/integrity/scans/{}/run",
|
"path": "/files/integrity/scans/{}/run",
|
||||||
"rationale": "File-integrity operations UI is tracked separately.",
|
"rationale": "The Files integrity panel runs and resumes bounded batches with stale-action protection.",
|
||||||
"repository": "govoplan-files",
|
"repository": "govoplan-files"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-files/issues/40"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "compatibility",
|
"category": "compatibility",
|
||||||
@@ -857,60 +890,53 @@
|
|||||||
"repository": "govoplan-identity"
|
"repository": "govoplan-identity"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "intentionally_headless",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/identity-trust/assurance/check",
|
"path": "/identity-trust/assurance/check",
|
||||||
"rationale": "Identity-assurance and device-key administration UI is tracked separately.",
|
"rationale": "Assurance checks are capability operations performed by protected module workflows rather than direct user commands.",
|
||||||
"repository": "govoplan-identity-trust",
|
"repository": "govoplan-identity-trust"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-identity-trust/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "intentionally_headless",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/identity-trust/assurance/evidence",
|
"path": "/identity-trust/assurance/evidence",
|
||||||
"rationale": "Identity-assurance and device-key administration UI is tracked separately.",
|
"rationale": "Trusted assurance providers record evidence through this capability endpoint; users inspect the resulting projection.",
|
||||||
"repository": "govoplan-identity-trust",
|
"repository": "govoplan-identity-trust"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-identity-trust/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "GET",
|
"method": "GET",
|
||||||
"path": "/identity-trust/device-keys",
|
"path": "/identity-trust/device-keys",
|
||||||
"rationale": "Identity-assurance and device-key administration UI is tracked separately.",
|
"rationale": "Identity Trust settings and administration list permission-filtered public device keys.",
|
||||||
"repository": "govoplan-identity-trust",
|
"repository": "govoplan-identity-trust"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-identity-trust/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "intentionally_headless",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/identity-trust/device-keys",
|
"path": "/identity-trust/device-keys",
|
||||||
"rationale": "Identity-assurance and device-key administration UI is tracked separately.",
|
"rationale": "Device onboarding registers public key material through the trust capability; the UI manages registered keys without handling private material.",
|
||||||
"repository": "govoplan-identity-trust",
|
"repository": "govoplan-identity-trust"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-identity-trust/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/identity-trust/device-keys/{}/revoke",
|
"path": "/identity-trust/device-keys/{}/revoke",
|
||||||
"rationale": "Identity-assurance and device-key administration UI is tracked separately.",
|
"rationale": "Authorized users and trust officers revoke public device keys through a consequence-aware confirmation.",
|
||||||
"repository": "govoplan-identity-trust",
|
"repository": "govoplan-identity-trust"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-identity-trust/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "ui_reachable",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/identity-trust/epochs/rotate",
|
"path": "/identity-trust/epochs/rotate",
|
||||||
"rationale": "Identity-assurance and device-key administration UI is tracked separately.",
|
"rationale": "Identity Trust administration exposes governed epoch rotation with history and consequence explanations.",
|
||||||
"repository": "govoplan-identity-trust",
|
"repository": "govoplan-identity-trust"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-identity-trust/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "missing_ui",
|
"category": "intentionally_headless",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"path": "/identity-trust/key-access/decide",
|
"path": "/identity-trust/key-access/decide",
|
||||||
"rationale": "Identity-assurance and device-key administration UI is tracked separately.",
|
"rationale": "Protected modules request immutable key-access decisions through the capability; trust officers inspect the resulting decision projection.",
|
||||||
"repository": "govoplan-identity-trust",
|
"repository": "govoplan-identity-trust"
|
||||||
"tracking_issue": "https://git.add-ideas.de/GovOPlaN/govoplan-identity-trust/issues/2"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"category": "ui_reachable",
|
"category": "ui_reachable",
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import fs from "node:fs";
|
import fs from "node:fs";
|
||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
|
import { createHash } from "node:crypto";
|
||||||
import { pathToFileURL } from "node:url";
|
import { pathToFileURL } from "node:url";
|
||||||
|
|
||||||
const [metaRootArgument] = process.argv.slice(2);
|
const [metaRootArgument] = process.argv.slice(2);
|
||||||
@@ -60,9 +61,19 @@ const helpAttributes = new Set([
|
|||||||
"helperText",
|
"helperText",
|
||||||
"helpText"
|
"helpText"
|
||||||
]);
|
]);
|
||||||
|
const actionComponentPattern = /(?:Action|Button|Link)$/;
|
||||||
|
const contributionTypes = new Map([
|
||||||
|
["AdminSectionsUiCapability", "admin_section"],
|
||||||
|
["DashboardWidgetsUiCapability", "widget"],
|
||||||
|
["OrganizationFunctionActionsUiCapability", "action"],
|
||||||
|
["SearchContextsUiCapability", "search_object"],
|
||||||
|
["SettingsSectionsUiCapability", "setting"],
|
||||||
|
["WizardDirectoriesUiCapability", "workflow_directory"]
|
||||||
|
]);
|
||||||
|
|
||||||
const result = {
|
const result = {
|
||||||
fields: [],
|
fields: [],
|
||||||
|
actions: [],
|
||||||
labels: [],
|
labels: [],
|
||||||
visibleText: [],
|
visibleText: [],
|
||||||
translationCatalog: {},
|
translationCatalog: {},
|
||||||
@@ -71,7 +82,8 @@ const result = {
|
|||||||
routes: [],
|
routes: [],
|
||||||
navigation: [],
|
navigation: [],
|
||||||
frontendApiReferences: [],
|
frontendApiReferences: [],
|
||||||
uiCapabilities: []
|
uiCapabilities: [],
|
||||||
|
contributions: []
|
||||||
};
|
};
|
||||||
|
|
||||||
for (const repository of repositoryCatalog.repositories) {
|
for (const repository of repositoryCatalog.repositories) {
|
||||||
@@ -115,6 +127,7 @@ function inspectSource(repository, sourceRoot, sourcePath) {
|
|||||||
sourcePath.endsWith(".tsx") ? ts.ScriptKind.TSX : ts.ScriptKind.TS
|
sourcePath.endsWith(".tsx") ? ts.ScriptKind.TSX : ts.ScriptKind.TS
|
||||||
);
|
);
|
||||||
const relativeFile = path.relative(path.join(workspaceRoot, repository), sourcePath);
|
const relativeFile = path.relative(path.join(workspaceRoot, repository), sourcePath);
|
||||||
|
const identityCounters = new Map();
|
||||||
|
|
||||||
function location(node) {
|
function location(node) {
|
||||||
const position = sourceFile.getLineAndCharacterOfPosition(node.getStart(sourceFile));
|
const position = sourceFile.getLineAndCharacterOfPosition(node.getStart(sourceFile));
|
||||||
@@ -178,6 +191,7 @@ function inspectSource(repository, sourceRoot, sourcePath) {
|
|||||||
const isField =
|
const isField =
|
||||||
fieldComponents.has(component) ||
|
fieldComponents.has(component) ||
|
||||||
(fieldComponentPattern.test(component) && component !== "FormField");
|
(fieldComponentPattern.test(component) && component !== "FormField");
|
||||||
|
inspectAction(node, component, attributes, locate);
|
||||||
if (!isField) return;
|
if (!isField) return;
|
||||||
|
|
||||||
const parentFormField = nearestFormField(node);
|
const parentFormField = nearestFormField(node);
|
||||||
@@ -191,8 +205,25 @@ function inspectSource(repository, sourceRoot, sourcePath) {
|
|||||||
null;
|
null;
|
||||||
const help = firstAttribute(attributes, helpAttributes) ??
|
const help = firstAttribute(attributes, helpAttributes) ??
|
||||||
firstAttribute(parentAttributes, helpAttributes);
|
firstAttribute(parentAttributes, helpAttributes);
|
||||||
|
const hasHelp = hasAnyAttribute(attributes, helpAttributes) ||
|
||||||
|
hasAnyAttribute(parentAttributes, helpAttributes);
|
||||||
|
const explicitId = firstAttribute(
|
||||||
|
attributes,
|
||||||
|
new Set(["interfaceId", "data-interface-id", "id", "name", "field"])
|
||||||
|
);
|
||||||
|
const context = nearestNamedContext(node);
|
||||||
|
const stableId = sourceIdentity(
|
||||||
|
"field",
|
||||||
|
node,
|
||||||
|
component,
|
||||||
|
explicitId ?? label ?? attributes.get("placeholder") ?? "field"
|
||||||
|
);
|
||||||
result.fields.push({
|
result.fields.push({
|
||||||
...locate(node),
|
...locate(node),
|
||||||
|
id: stableId,
|
||||||
|
explicitId,
|
||||||
|
idSource: explicitId === null ? "source_anchor" : "explicit",
|
||||||
|
context,
|
||||||
component,
|
component,
|
||||||
name:
|
name:
|
||||||
attributes.get("name") ??
|
attributes.get("name") ??
|
||||||
@@ -202,8 +233,102 @@ function inspectSource(repository, sourceRoot, sourcePath) {
|
|||||||
label,
|
label,
|
||||||
placeholder: attributes.get("placeholder") ?? null,
|
placeholder: attributes.get("placeholder") ?? null,
|
||||||
help: help ?? null,
|
help: help ?? null,
|
||||||
helpCandidate: help === null
|
helpId: hasHelp ? `${stableId}.help` : null,
|
||||||
|
helpDynamic: hasHelp && help === null,
|
||||||
|
helpCandidate: !hasHelp
|
||||||
});
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function inspectAction(node, component, attributes, locate) {
|
||||||
|
const lowerComponent = component.toLowerCase();
|
||||||
|
const inputType = attributes.get("type")?.toLowerCase();
|
||||||
|
const isAction = lowerComponent === "button" ||
|
||||||
|
lowerComponent === "a" ||
|
||||||
|
actionComponentPattern.test(component) ||
|
||||||
|
(lowerComponent === "input" && ["button", "reset", "submit"].includes(inputType));
|
||||||
|
if (!isAction) return;
|
||||||
|
|
||||||
|
const label = attributes.get("aria-label") ??
|
||||||
|
attributes.get("title") ??
|
||||||
|
attributes.get("label") ??
|
||||||
|
staticJsxChildText(node) ??
|
||||||
|
null;
|
||||||
|
const explicitId = firstAttribute(
|
||||||
|
attributes,
|
||||||
|
new Set(["interfaceId", "data-interface-id", "id", "name"])
|
||||||
|
);
|
||||||
|
const context = nearestNamedContext(node);
|
||||||
|
result.actions.push({
|
||||||
|
...locate(node),
|
||||||
|
id: sourceIdentity(
|
||||||
|
"action",
|
||||||
|
node,
|
||||||
|
component,
|
||||||
|
explicitId ?? label ?? "action"
|
||||||
|
),
|
||||||
|
explicitId,
|
||||||
|
idSource: explicitId === null ? "source_anchor" : "explicit",
|
||||||
|
context,
|
||||||
|
component,
|
||||||
|
label
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function nearestNamedContext(node) {
|
||||||
|
let current = node.parent;
|
||||||
|
while (current) {
|
||||||
|
if (ts.isFunctionDeclaration(current) && current.name) {
|
||||||
|
return current.name.text;
|
||||||
|
}
|
||||||
|
if (ts.isMethodDeclaration(current) && current.name) {
|
||||||
|
return current.name.getText(sourceFile);
|
||||||
|
}
|
||||||
|
if (
|
||||||
|
(ts.isArrowFunction(current) || ts.isFunctionExpression(current)) &&
|
||||||
|
ts.isVariableDeclaration(current.parent) &&
|
||||||
|
ts.isIdentifier(current.parent.name)
|
||||||
|
) {
|
||||||
|
return current.parent.name.text;
|
||||||
|
}
|
||||||
|
if (
|
||||||
|
(ts.isArrowFunction(current) || ts.isFunctionExpression(current)) &&
|
||||||
|
ts.isPropertyAssignment(current.parent)
|
||||||
|
) {
|
||||||
|
return propertyNameText(current.parent.name) ?? "anonymous";
|
||||||
|
}
|
||||||
|
current = current.parent;
|
||||||
|
}
|
||||||
|
return path.basename(relativeFile).replace(/\.[^.]+$/, "");
|
||||||
|
}
|
||||||
|
|
||||||
|
function sourceIdentity(kind, node, component, semantic) {
|
||||||
|
const context = nearestNamedContext(node);
|
||||||
|
const normalizedSemantic = slug(String(semantic));
|
||||||
|
const counterKey = `${kind}:${context}:${component}:${normalizedSemantic}`;
|
||||||
|
const occurrence = (identityCounters.get(counterKey) ?? 0) + 1;
|
||||||
|
identityCounters.set(counterKey, occurrence);
|
||||||
|
const anchor = [relativeFile, context, component, normalizedSemantic, occurrence].join(":");
|
||||||
|
const digest = createHash("sha256").update(anchor).digest("hex").slice(0, 12);
|
||||||
|
return `${repository}.${kind}.${slug(context)}.${normalizedSemantic}.${digest}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function staticJsxChildText(node) {
|
||||||
|
if (!ts.isJsxOpeningElement(node) || !ts.isJsxElement(node.parent)) return null;
|
||||||
|
const values = [];
|
||||||
|
for (const child of node.parent.children) {
|
||||||
|
if (ts.isJsxText(child)) {
|
||||||
|
const value = child.getText(sourceFile).replace(/\s+/g, " ").trim();
|
||||||
|
if (value) values.push(value);
|
||||||
|
} else if (
|
||||||
|
ts.isJsxExpression(child) &&
|
||||||
|
child.expression &&
|
||||||
|
ts.isStringLiteralLike(child.expression)
|
||||||
|
) {
|
||||||
|
values.push(child.expression.text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return values.length > 0 ? values.join(" ") : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
function nearestFormField(node) {
|
function nearestFormField(node) {
|
||||||
@@ -275,22 +400,103 @@ function inspectSource(repository, sourceRoot, sourcePath) {
|
|||||||
|
|
||||||
function inspectProperty(node, locate) {
|
function inspectProperty(node, locate) {
|
||||||
const propertyName = propertyNameText(node.name);
|
const propertyName = propertyNameText(node.name);
|
||||||
|
if (isDirectUiCapabilityProperty(node) && typeof propertyName === "string") {
|
||||||
|
result.uiCapabilities.push({ ...locate(node), name: propertyName });
|
||||||
|
result.contributions.push({
|
||||||
|
...locate(node),
|
||||||
|
kind: "ui_capability",
|
||||||
|
id: propertyName
|
||||||
|
});
|
||||||
|
}
|
||||||
const value = staticExpressionText(node.initializer);
|
const value = staticExpressionText(node.initializer);
|
||||||
if (value === null) return;
|
if (value === null) return;
|
||||||
if (propertyName === "path" && value.startsWith("/") && !value.includes("/api/")) {
|
if (propertyName === "path" && value.startsWith("/") && !value.includes("/api/")) {
|
||||||
result.routes.push({ ...locate(node), path: value });
|
result.routes.push({ ...locate(node), path: value });
|
||||||
|
const routeCollection = nearestCollectionProperty(node);
|
||||||
|
if (routeCollection === "routes" || routeCollection === "publicRoutes") {
|
||||||
|
result.contributions.push({
|
||||||
|
...locate(node),
|
||||||
|
kind: routeCollection === "publicRoutes" ? "public_route" : "frontend_route",
|
||||||
|
id: value,
|
||||||
|
path: value
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (propertyName === "to" && value.startsWith("/")) {
|
if (propertyName === "to" && value.startsWith("/")) {
|
||||||
result.navigation.push({ ...locate(node), path: value });
|
result.navigation.push({ ...locate(node), path: value });
|
||||||
|
if (nearestCollectionProperty(node) === "navItems") {
|
||||||
|
result.contributions.push({
|
||||||
|
...locate(node),
|
||||||
|
kind: "navigation",
|
||||||
|
id: value,
|
||||||
|
path: value
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (
|
if (propertyName === "id") {
|
||||||
ancestorPropertyName(node, "uiCapabilities") &&
|
const contributionKind = contributionKindFor(node);
|
||||||
typeof propertyName === "string"
|
if (contributionKind !== null) {
|
||||||
) {
|
result.contributions.push({
|
||||||
result.uiCapabilities.push({ ...locate(node), name: propertyName });
|
...locate(node),
|
||||||
|
kind: contributionKind,
|
||||||
|
id: value
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function contributionKindFor(node) {
|
||||||
|
const collection = nearestCollectionProperty(node);
|
||||||
|
if (collection === "viewSurfaces") return "view_surface";
|
||||||
|
if (collection === "widgets") return "widget";
|
||||||
|
if (collection === "contexts") return "search_object";
|
||||||
|
if (collection === "actions") return "action";
|
||||||
|
if (collection === "directories") return "workflow_directory";
|
||||||
|
if (collection !== "sections") return null;
|
||||||
|
const variableType = nearestVariableType(node);
|
||||||
|
for (const [typeName, kind] of contributionTypes) {
|
||||||
|
if (variableType.includes(typeName)) return kind;
|
||||||
|
}
|
||||||
|
return ancestorPropertyName(node, "admin.sections")
|
||||||
|
? "admin_section"
|
||||||
|
: ancestorPropertyName(node, "settings.sections")
|
||||||
|
? "setting"
|
||||||
|
: "section";
|
||||||
|
}
|
||||||
|
|
||||||
|
function nearestCollectionProperty(node) {
|
||||||
|
let current = node.parent;
|
||||||
|
while (current) {
|
||||||
|
if (
|
||||||
|
ts.isArrayLiteralExpression(current) &&
|
||||||
|
ts.isPropertyAssignment(current.parent)
|
||||||
|
) {
|
||||||
|
return propertyNameText(current.parent.name);
|
||||||
|
}
|
||||||
|
current = current.parent;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function nearestVariableType(node) {
|
||||||
|
let current = node.parent;
|
||||||
|
while (current) {
|
||||||
|
if (ts.isVariableDeclaration(current)) {
|
||||||
|
return current.type?.getText(sourceFile) ?? "";
|
||||||
|
}
|
||||||
|
current = current.parent;
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
function isDirectUiCapabilityProperty(node) {
|
||||||
|
const parent = node.parent;
|
||||||
|
const uiCapabilities = parent?.parent;
|
||||||
|
return ts.isObjectLiteralExpression(parent) &&
|
||||||
|
ts.isPropertyAssignment(uiCapabilities) &&
|
||||||
|
propertyNameText(uiCapabilities.name) === "uiCapabilities";
|
||||||
|
}
|
||||||
|
|
||||||
function inspectTranslationProperty(node, locate) {
|
function inspectTranslationProperty(node, locate) {
|
||||||
const key = propertyNameText(node.name);
|
const key = propertyNameText(node.name);
|
||||||
if (!key?.startsWith("i18n:")) return;
|
if (!key?.startsWith("i18n:")) return;
|
||||||
@@ -343,6 +549,23 @@ function firstAttribute(attributes, names) {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function hasAnyAttribute(attributes, names) {
|
||||||
|
for (const name of names) {
|
||||||
|
if (attributes.has(name)) return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function slug(value) {
|
||||||
|
const normalized = value
|
||||||
|
.toLowerCase()
|
||||||
|
.replace(/^i18n:/, "")
|
||||||
|
.replace(/\.[a-f0-9]{8}$/, "")
|
||||||
|
.replace(/[^a-z0-9]+/g, ".")
|
||||||
|
.replace(/^\.+|\.+$/g, "");
|
||||||
|
return (normalized || "unnamed").slice(0, 72);
|
||||||
|
}
|
||||||
|
|
||||||
function propertyNameText(name) {
|
function propertyNameText(name) {
|
||||||
if (
|
if (
|
||||||
ts.isIdentifier(name) ||
|
ts.isIdentifier(name) ||
|
||||||
|
|||||||
@@ -45,6 +45,28 @@ def main() -> int:
|
|||||||
action="store_true",
|
action="store_true",
|
||||||
help="Fail on missing translations or incomplete endpoint-surface declarations.",
|
help="Fail on missing translations or incomplete endpoint-surface declarations.",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--strict-endpoints",
|
||||||
|
action="store_true",
|
||||||
|
help="Fail only on incomplete or stale endpoint-surface declarations.",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--strict-declarations",
|
||||||
|
action="store_true",
|
||||||
|
help=(
|
||||||
|
"Fail on duplicate stable IDs, WebUI surfaces absent from runtime "
|
||||||
|
"metadata, or stale runtime route declarations."
|
||||||
|
),
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--runtime-snapshot",
|
||||||
|
type=Path,
|
||||||
|
help=(
|
||||||
|
"Compare a saved /api/v1/platform/interface-catalog response with "
|
||||||
|
"the static manifest inventory. Any installed module combination "
|
||||||
|
"is accepted; every module present in the snapshot must match."
|
||||||
|
),
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--endpoint-declarations",
|
"--endpoint-declarations",
|
||||||
type=Path,
|
type=Path,
|
||||||
@@ -66,6 +88,11 @@ def main() -> int:
|
|||||||
backend_endpoints=backend_endpoints,
|
backend_endpoints=backend_endpoints,
|
||||||
manifests=manifests,
|
manifests=manifests,
|
||||||
endpoint_declarations=endpoint_declarations,
|
endpoint_declarations=endpoint_declarations,
|
||||||
|
runtime_snapshot=(
|
||||||
|
_load_runtime_snapshot(args.runtime_snapshot.resolve())
|
||||||
|
if args.runtime_snapshot is not None
|
||||||
|
else None
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
output_dir = args.output_dir.resolve()
|
output_dir = args.output_dir.resolve()
|
||||||
@@ -80,20 +107,13 @@ def main() -> int:
|
|||||||
print(f"Platform inventory JSON: {json_path}")
|
print(f"Platform inventory JSON: {json_path}")
|
||||||
print(f"Platform inventory summary: {markdown_path}")
|
print(f"Platform inventory summary: {markdown_path}")
|
||||||
|
|
||||||
if args.strict:
|
if args.strict or args.strict_endpoints or args.strict_declarations:
|
||||||
failures: list[str] = []
|
failures = _strict_failures(
|
||||||
if inventory["translation_health"]["missing_catalog_entries"]:
|
inventory,
|
||||||
failures.append("used translation keys are missing from generated catalogs")
|
check_translations=args.strict,
|
||||||
if inventory["api"]["unclassified_endpoints"]:
|
check_endpoints=args.strict or args.strict_endpoints,
|
||||||
failures.append(
|
check_declarations=args.strict or args.strict_declarations,
|
||||||
f"{len(inventory['api']['unclassified_endpoints'])} backend "
|
)
|
||||||
"endpoints have no WebUI evidence or surface declaration"
|
|
||||||
)
|
|
||||||
if inventory["api"]["stale_endpoint_declarations"]:
|
|
||||||
failures.append(
|
|
||||||
f"{len(inventory['api']['stale_endpoint_declarations'])} "
|
|
||||||
"endpoint declarations do not match a backend endpoint"
|
|
||||||
)
|
|
||||||
if failures:
|
if failures:
|
||||||
print(
|
print(
|
||||||
"Strict platform inventory failed: " + "; ".join(failures) + ".",
|
"Strict platform inventory failed: " + "; ".join(failures) + ".",
|
||||||
@@ -103,6 +123,58 @@ def main() -> int:
|
|||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
def _strict_failures(
|
||||||
|
inventory: dict[str, Any],
|
||||||
|
*,
|
||||||
|
check_translations: bool,
|
||||||
|
check_endpoints: bool,
|
||||||
|
check_declarations: bool = False,
|
||||||
|
) -> list[str]:
|
||||||
|
failures: list[str] = []
|
||||||
|
if (
|
||||||
|
check_translations
|
||||||
|
and inventory["translation_health"]["missing_catalog_entries"]
|
||||||
|
):
|
||||||
|
failures.append("used translation keys are missing from generated catalogs")
|
||||||
|
if check_endpoints and inventory["api"]["unclassified_endpoints"]:
|
||||||
|
failures.append(
|
||||||
|
f"{len(inventory['api']['unclassified_endpoints'])} backend "
|
||||||
|
"endpoints have no WebUI evidence or surface declaration"
|
||||||
|
)
|
||||||
|
if check_endpoints and inventory["api"]["stale_endpoint_declarations"]:
|
||||||
|
failures.append(
|
||||||
|
f"{len(inventory['api']['stale_endpoint_declarations'])} "
|
||||||
|
"endpoint declarations do not match a backend endpoint"
|
||||||
|
)
|
||||||
|
declaration_health = inventory.get("declaration_health", {})
|
||||||
|
if check_declarations and declaration_health.get("duplicate_ids"):
|
||||||
|
failures.append(
|
||||||
|
f"{len(declaration_health['duplicate_ids'])} platform interface "
|
||||||
|
"IDs are declared more than once"
|
||||||
|
)
|
||||||
|
if check_declarations and declaration_health.get("undeclared_source_surfaces"):
|
||||||
|
failures.append(
|
||||||
|
f"{len(declaration_health['undeclared_source_surfaces'])} public "
|
||||||
|
"WebUI surfaces have no runtime manifest declaration"
|
||||||
|
)
|
||||||
|
if check_declarations and declaration_health.get("stale_runtime_routes"):
|
||||||
|
failures.append(
|
||||||
|
f"{len(declaration_health['stale_runtime_routes'])} runtime route "
|
||||||
|
"declarations have no WebUI implementation"
|
||||||
|
)
|
||||||
|
runtime_comparison = inventory.get("runtime_comparison")
|
||||||
|
if (
|
||||||
|
check_declarations
|
||||||
|
and runtime_comparison is not None
|
||||||
|
and runtime_comparison.get("mismatches")
|
||||||
|
):
|
||||||
|
failures.append(
|
||||||
|
f"{len(runtime_comparison['mismatches'])} runtime catalog entries "
|
||||||
|
"do not match the release inventory"
|
||||||
|
)
|
||||||
|
return failures
|
||||||
|
|
||||||
|
|
||||||
def _resolve_workspace_root(catalog: dict[str, Any]) -> Path:
|
def _resolve_workspace_root(catalog: dict[str, Any]) -> Path:
|
||||||
sibling_root = META_ROOT.parent.resolve()
|
sibling_root = META_ROOT.parent.resolve()
|
||||||
configured_root = Path(str(catalog["default_parent"])).expanduser().resolve()
|
configured_root = Path(str(catalog["default_parent"])).expanduser().resolve()
|
||||||
@@ -243,6 +315,10 @@ def _extract_manifests(
|
|||||||
if (workspace_root / repository["path"] / "src").is_dir()
|
if (workspace_root / repository["path"] / "src").is_dir()
|
||||||
]
|
]
|
||||||
sys.path[:0] = [str(path) for path in source_roots]
|
sys.path[:0] = [str(path) for path in source_roots]
|
||||||
|
from govoplan_core.core.platform_interfaces import ( # noqa: PLC0415
|
||||||
|
manifest_interface_catalog,
|
||||||
|
)
|
||||||
|
|
||||||
manifests: list[dict[str, Any]] = []
|
manifests: list[dict[str, Any]] = []
|
||||||
for repository in catalog["repositories"]:
|
for repository in catalog["repositories"]:
|
||||||
source_root = workspace_root / repository["path"] / "src"
|
source_root = workspace_root / repository["path"] / "src"
|
||||||
@@ -277,15 +353,24 @@ def _extract_manifests(
|
|||||||
}
|
}
|
||||||
for permission in manifest.permissions
|
for permission in manifest.permissions
|
||||||
],
|
],
|
||||||
|
"interface_catalog": manifest_interface_catalog(manifest),
|
||||||
"frontend": (
|
"frontend": (
|
||||||
{
|
{
|
||||||
"package": frontend.package_name,
|
"package": frontend.package_name,
|
||||||
"routes": [
|
"routes": [
|
||||||
_plain_value(route) for route in frontend.routes
|
_plain_value(route) for route in frontend.routes
|
||||||
],
|
],
|
||||||
|
"public_routes": [
|
||||||
|
_plain_value(route)
|
||||||
|
for route in frontend.public_routes
|
||||||
|
],
|
||||||
"nav_items": [
|
"nav_items": [
|
||||||
_plain_value(item) for item in frontend.nav_items
|
_plain_value(item) for item in frontend.nav_items
|
||||||
],
|
],
|
||||||
|
"settings_routes": [
|
||||||
|
_plain_value(route)
|
||||||
|
for route in frontend.settings_routes
|
||||||
|
],
|
||||||
"view_surfaces": [
|
"view_surfaces": [
|
||||||
_plain_value(surface)
|
_plain_value(surface)
|
||||||
for surface in frontend.view_surfaces
|
for surface in frontend.view_surfaces
|
||||||
@@ -305,6 +390,7 @@ def _assemble_inventory(
|
|||||||
backend_endpoints: list[dict[str, Any]],
|
backend_endpoints: list[dict[str, Any]],
|
||||||
manifests: list[dict[str, Any]],
|
manifests: list[dict[str, Any]],
|
||||||
endpoint_declarations: dict[tuple[str, str, str], dict[str, Any]],
|
endpoint_declarations: dict[tuple[str, str, str], dict[str, Any]],
|
||||||
|
runtime_snapshot: dict[str, Any] | None = None,
|
||||||
) -> dict[str, Any]:
|
) -> dict[str, Any]:
|
||||||
frontend_refs = webui["frontendApiReferences"]
|
frontend_refs = webui["frontendApiReferences"]
|
||||||
frontend_paths = {
|
frontend_paths = {
|
||||||
@@ -374,25 +460,40 @@ def _assemble_inventory(
|
|||||||
]
|
]
|
||||||
fields = webui["fields"]
|
fields = webui["fields"]
|
||||||
help_candidates = [field for field in fields if field["helpCandidate"]]
|
help_candidates = [field for field in fields if field["helpCandidate"]]
|
||||||
|
dynamic_help = [field for field in fields if field.get("helpDynamic")]
|
||||||
|
source_declarations = _source_interface_declarations(webui, manifests)
|
||||||
|
declaration_health = _declaration_health(source_declarations, manifests)
|
||||||
|
runtime_comparison = (
|
||||||
|
_compare_runtime_snapshot(runtime_snapshot, manifests)
|
||||||
|
if runtime_snapshot is not None
|
||||||
|
else None
|
||||||
|
)
|
||||||
return {
|
return {
|
||||||
"schema_version": 1,
|
"schema_version": 2,
|
||||||
"scope": {
|
"scope": {
|
||||||
"source": "local GovOPlaN repository catalog",
|
"source": "local GovOPlaN repository catalog",
|
||||||
"limitations": [
|
"limitations": [
|
||||||
"Static extraction cannot resolve runtime-computed labels, routes, or API paths.",
|
"Static extraction cannot resolve runtime-computed labels, routes, or API paths.",
|
||||||
"A backend endpoint without a static WebUI reference may intentionally serve public clients, workers, connectors, or external integrations.",
|
"A backend endpoint without a static WebUI reference may intentionally serve public clients, workers, connectors, or external integrations.",
|
||||||
"A field marked as a help candidate may receive contextual help from a surrounding dynamic component.",
|
"A field marked as a help candidate may receive contextual help from a surrounding dynamic component.",
|
||||||
|
"Low-level field and action IDs use line-independent source anchors unless an explicit interfaceId, DOM id, or name is declared.",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
"modules": manifests,
|
"modules": manifests,
|
||||||
|
"interface_declarations": source_declarations,
|
||||||
|
"declaration_health": declaration_health,
|
||||||
|
"runtime_comparison": runtime_comparison,
|
||||||
"ui": {
|
"ui": {
|
||||||
"fields": fields,
|
"fields": fields,
|
||||||
|
"actions": webui.get("actions", []),
|
||||||
"labels": webui["labels"],
|
"labels": webui["labels"],
|
||||||
"visible_text": webui["visibleText"],
|
"visible_text": webui["visibleText"],
|
||||||
"routes": webui["routes"],
|
"routes": webui["routes"],
|
||||||
"navigation": webui["navigation"],
|
"navigation": webui["navigation"],
|
||||||
"ui_capabilities": webui["uiCapabilities"],
|
"ui_capabilities": webui["uiCapabilities"],
|
||||||
"help_candidates": help_candidates,
|
"help_candidates": help_candidates,
|
||||||
|
"dynamic_help": dynamic_help,
|
||||||
|
"contributions": webui.get("contributions", []),
|
||||||
},
|
},
|
||||||
"translations": {
|
"translations": {
|
||||||
"catalog": catalogs,
|
"catalog": catalogs,
|
||||||
@@ -417,6 +518,16 @@ def _assemble_inventory(
|
|||||||
"ui_fields": len(fields),
|
"ui_fields": len(fields),
|
||||||
"ui_fields_with_static_help": len(fields) - len(help_candidates),
|
"ui_fields_with_static_help": len(fields) - len(help_candidates),
|
||||||
"help_review_candidates": len(help_candidates),
|
"help_review_candidates": len(help_candidates),
|
||||||
|
"dynamic_help_references": len(dynamic_help),
|
||||||
|
"ui_actions": len(webui.get("actions", [])),
|
||||||
|
"interface_declarations": len(source_declarations),
|
||||||
|
"duplicate_interface_ids": len(declaration_health["duplicate_ids"]),
|
||||||
|
"undeclared_source_surfaces": len(
|
||||||
|
declaration_health["undeclared_source_surfaces"]
|
||||||
|
),
|
||||||
|
"stale_runtime_routes": len(
|
||||||
|
declaration_health["stale_runtime_routes"]
|
||||||
|
),
|
||||||
"label_attributes": len(webui["labels"]),
|
"label_attributes": len(webui["labels"]),
|
||||||
"visible_text_nodes": len(webui["visibleText"]),
|
"visible_text_nodes": len(webui["visibleText"]),
|
||||||
"frontend_routes": len(webui["routes"]),
|
"frontend_routes": len(webui["routes"]),
|
||||||
@@ -429,6 +540,299 @@ def _assemble_inventory(
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def _source_interface_declarations(
|
||||||
|
webui: dict[str, Any],
|
||||||
|
manifests: list[dict[str, Any]],
|
||||||
|
) -> list[dict[str, Any]]:
|
||||||
|
module_by_repository = {
|
||||||
|
str(manifest["repository"]): str(manifest["id"])
|
||||||
|
for manifest in manifests
|
||||||
|
}
|
||||||
|
declarations: list[dict[str, Any]] = []
|
||||||
|
|
||||||
|
def module_id(repository: str) -> str:
|
||||||
|
if repository in module_by_repository:
|
||||||
|
return module_by_repository[repository]
|
||||||
|
if repository == "govoplan-core":
|
||||||
|
return "core"
|
||||||
|
return repository.removeprefix("govoplan-").replace("-", "_")
|
||||||
|
|
||||||
|
def source_evidence(item: dict[str, Any]) -> dict[str, Any]:
|
||||||
|
return {
|
||||||
|
key: item[key]
|
||||||
|
for key in ("repository", "file", "line", "column")
|
||||||
|
if key in item
|
||||||
|
}
|
||||||
|
|
||||||
|
for kind, items in (
|
||||||
|
("field", webui["fields"]),
|
||||||
|
("action", webui.get("actions", [])),
|
||||||
|
):
|
||||||
|
for item in items:
|
||||||
|
repository = str(item["repository"])
|
||||||
|
owner = module_id(repository)
|
||||||
|
raw_id = str(item["id"])
|
||||||
|
stable_id = (
|
||||||
|
f"{owner}.{raw_id[len(repository) + 1:]}"
|
||||||
|
if raw_id.startswith(f"{repository}.")
|
||||||
|
else _namespaced_interface_id(owner, kind, raw_id)
|
||||||
|
)
|
||||||
|
declarations.append(
|
||||||
|
{
|
||||||
|
"key": f"{kind}:{stable_id}",
|
||||||
|
"id": stable_id,
|
||||||
|
"module_id": owner,
|
||||||
|
"kind": kind,
|
||||||
|
"origin": "webui_source",
|
||||||
|
"id_source": item.get("idSource", "source_anchor"),
|
||||||
|
"explicit_id": item.get("explicitId"),
|
||||||
|
"context": item.get("context"),
|
||||||
|
**source_evidence(item),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
if kind == "field" and item.get("helpId"):
|
||||||
|
help_raw_id = str(item["helpId"])
|
||||||
|
help_id = (
|
||||||
|
f"{owner}.{help_raw_id[len(repository) + 1:]}"
|
||||||
|
if help_raw_id.startswith(f"{repository}.")
|
||||||
|
else _namespaced_interface_id(owner, "help", help_raw_id)
|
||||||
|
)
|
||||||
|
declarations.append(
|
||||||
|
{
|
||||||
|
"key": f"help:{help_id}",
|
||||||
|
"id": help_id,
|
||||||
|
"module_id": owner,
|
||||||
|
"kind": "help",
|
||||||
|
"origin": "webui_source",
|
||||||
|
"field_id": stable_id,
|
||||||
|
"dynamic": bool(item.get("helpDynamic")),
|
||||||
|
**source_evidence(item),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
for item in webui.get("contributions", []):
|
||||||
|
repository = str(item["repository"])
|
||||||
|
owner = module_id(repository)
|
||||||
|
kind = str(item["kind"])
|
||||||
|
raw_id = str(item["id"])
|
||||||
|
path = item.get("path")
|
||||||
|
if kind == "frontend_route" and isinstance(path, str):
|
||||||
|
stable_id = f"{owner}.route.{_surface_slug(path)}"
|
||||||
|
elif kind == "public_route" and isinstance(path, str):
|
||||||
|
stable_id = f"{owner}.public.{_surface_slug(path)}"
|
||||||
|
elif kind == "navigation" and isinstance(path, str):
|
||||||
|
stable_id = f"{owner}.nav.{_surface_slug(path)}"
|
||||||
|
else:
|
||||||
|
stable_id = _namespaced_interface_id(owner, kind, raw_id)
|
||||||
|
declarations.append(
|
||||||
|
{
|
||||||
|
"key": f"{kind}:{stable_id}",
|
||||||
|
"id": stable_id,
|
||||||
|
"module_id": owner,
|
||||||
|
"kind": kind,
|
||||||
|
"origin": "webui_contribution",
|
||||||
|
"declared_value": raw_id,
|
||||||
|
**({"path": path} if isinstance(path, str) else {}),
|
||||||
|
**source_evidence(item),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
translation_entries: dict[tuple[str, str], dict[str, Any]] = {}
|
||||||
|
for locale, entries in webui["translationCatalog"].items():
|
||||||
|
for key, item in entries.items():
|
||||||
|
repository = str(item["repository"])
|
||||||
|
owner = module_id(repository)
|
||||||
|
declaration_key = (owner, str(key))
|
||||||
|
declaration = translation_entries.setdefault(
|
||||||
|
declaration_key,
|
||||||
|
{
|
||||||
|
"key": f"translation:{key}",
|
||||||
|
"id": key,
|
||||||
|
"module_id": owner,
|
||||||
|
"kind": "translation",
|
||||||
|
"origin": "translation_catalog",
|
||||||
|
"locales": [],
|
||||||
|
**source_evidence(item),
|
||||||
|
},
|
||||||
|
)
|
||||||
|
declaration["locales"].append(locale)
|
||||||
|
declarations.extend(translation_entries.values())
|
||||||
|
|
||||||
|
return sorted(
|
||||||
|
declarations,
|
||||||
|
key=lambda item: (
|
||||||
|
item["module_id"],
|
||||||
|
item["kind"],
|
||||||
|
item["id"],
|
||||||
|
item.get("file", ""),
|
||||||
|
item.get("line", 0),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _declaration_health(
|
||||||
|
source_declarations: list[dict[str, Any]],
|
||||||
|
manifests: list[dict[str, Any]],
|
||||||
|
) -> dict[str, Any]:
|
||||||
|
grouped: dict[tuple[str, str, str], list[dict[str, Any]]] = {}
|
||||||
|
for declaration in source_declarations:
|
||||||
|
key = (
|
||||||
|
str(declaration["module_id"]),
|
||||||
|
str(declaration["kind"]),
|
||||||
|
str(declaration["id"]),
|
||||||
|
)
|
||||||
|
grouped.setdefault(key, []).append(declaration)
|
||||||
|
duplicate_ids = [
|
||||||
|
{
|
||||||
|
"module_id": key[0],
|
||||||
|
"kind": key[1],
|
||||||
|
"id": key[2],
|
||||||
|
"evidence": values,
|
||||||
|
}
|
||||||
|
for key, values in sorted(grouped.items())
|
||||||
|
if len(values) > 1
|
||||||
|
]
|
||||||
|
|
||||||
|
comparable_kinds = {
|
||||||
|
"frontend_route",
|
||||||
|
"navigation",
|
||||||
|
"public_route",
|
||||||
|
"view_surface",
|
||||||
|
}
|
||||||
|
source_surfaces = {
|
||||||
|
(str(item["module_id"]), str(item["kind"]), str(item["id"])): item
|
||||||
|
for item in source_declarations
|
||||||
|
if item["origin"] == "webui_contribution"
|
||||||
|
and item["kind"] in comparable_kinds
|
||||||
|
}
|
||||||
|
runtime_surfaces: dict[tuple[str, str, str], dict[str, Any]] = {}
|
||||||
|
for manifest in manifests:
|
||||||
|
catalog = manifest["interface_catalog"]
|
||||||
|
for declaration in catalog["declarations"]:
|
||||||
|
if declaration["kind"] not in comparable_kinds:
|
||||||
|
continue
|
||||||
|
key = (
|
||||||
|
str(manifest["id"]),
|
||||||
|
str(declaration["kind"]),
|
||||||
|
str(declaration["id"]),
|
||||||
|
)
|
||||||
|
runtime_surfaces[key] = {
|
||||||
|
"repository": manifest["repository"],
|
||||||
|
**declaration,
|
||||||
|
}
|
||||||
|
surface_id = declaration.get("metadata", {}).get("surface_id")
|
||||||
|
if (
|
||||||
|
declaration["kind"]
|
||||||
|
in {"frontend_route", "navigation", "settings_route"}
|
||||||
|
and isinstance(surface_id, str)
|
||||||
|
and surface_id
|
||||||
|
):
|
||||||
|
runtime_surfaces[
|
||||||
|
(str(manifest["id"]), "view_surface", surface_id)
|
||||||
|
] = {
|
||||||
|
"repository": manifest["repository"],
|
||||||
|
"key": f"view_surface:{surface_id}",
|
||||||
|
"id": surface_id,
|
||||||
|
"module_id": manifest["id"],
|
||||||
|
"kind": "view_surface",
|
||||||
|
"metadata": {
|
||||||
|
"derived_from": declaration["kind"],
|
||||||
|
"path": declaration.get("path"),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
undeclared_source_surfaces = [
|
||||||
|
source_surfaces[key]
|
||||||
|
for key in sorted(source_surfaces.keys() - runtime_surfaces.keys())
|
||||||
|
]
|
||||||
|
route_kinds = {"frontend_route", "public_route"}
|
||||||
|
stale_runtime_routes = [
|
||||||
|
runtime_surfaces[key]
|
||||||
|
for key in sorted(runtime_surfaces.keys() - source_surfaces.keys())
|
||||||
|
if key[1] in route_kinds
|
||||||
|
]
|
||||||
|
return {
|
||||||
|
"duplicate_ids": duplicate_ids,
|
||||||
|
"undeclared_source_surfaces": undeclared_source_surfaces,
|
||||||
|
"stale_runtime_routes": stale_runtime_routes,
|
||||||
|
"source_declaration_count": len(source_declarations),
|
||||||
|
"runtime_declaration_count": sum(
|
||||||
|
len(manifest["interface_catalog"]["declarations"])
|
||||||
|
for manifest in manifests
|
||||||
|
),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def _compare_runtime_snapshot(
|
||||||
|
snapshot: dict[str, Any],
|
||||||
|
manifests: list[dict[str, Any]],
|
||||||
|
) -> dict[str, Any]:
|
||||||
|
static_by_module = {
|
||||||
|
str(manifest["id"]): manifest["interface_catalog"]
|
||||||
|
for manifest in manifests
|
||||||
|
}
|
||||||
|
modules = snapshot.get("modules")
|
||||||
|
if not isinstance(modules, list):
|
||||||
|
raise ValueError("Runtime interface snapshot must contain a modules list.")
|
||||||
|
mismatches: list[dict[str, Any]] = []
|
||||||
|
seen: set[str] = set()
|
||||||
|
matched: list[str] = []
|
||||||
|
for item in modules:
|
||||||
|
if not isinstance(item, dict) or not isinstance(item.get("module_id"), str):
|
||||||
|
raise ValueError("Runtime interface snapshot has an invalid module entry.")
|
||||||
|
module_id = item["module_id"]
|
||||||
|
if module_id in seen:
|
||||||
|
mismatches.append({"module_id": module_id, "reason": "duplicate_module"})
|
||||||
|
continue
|
||||||
|
seen.add(module_id)
|
||||||
|
expected = static_by_module.get(module_id)
|
||||||
|
if expected is None:
|
||||||
|
mismatches.append({"module_id": module_id, "reason": "unknown_module"})
|
||||||
|
continue
|
||||||
|
for field in ("contract_version", "module_version", "digest"):
|
||||||
|
if item.get(field) != expected.get(field):
|
||||||
|
mismatches.append(
|
||||||
|
{
|
||||||
|
"module_id": module_id,
|
||||||
|
"reason": f"{field}_mismatch",
|
||||||
|
"expected": expected.get(field),
|
||||||
|
"actual": item.get(field),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
if not any(
|
||||||
|
mismatch["module_id"] == module_id for mismatch in mismatches
|
||||||
|
):
|
||||||
|
matched.append(module_id)
|
||||||
|
return {
|
||||||
|
"contract_version": snapshot.get("contract_version"),
|
||||||
|
"matched_modules": sorted(matched),
|
||||||
|
"mismatches": mismatches,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def _load_runtime_snapshot(path: Path) -> dict[str, Any]:
|
||||||
|
try:
|
||||||
|
payload = json.loads(path.read_text(encoding="utf-8"))
|
||||||
|
except FileNotFoundError as exc:
|
||||||
|
raise ValueError(f"Runtime interface snapshot does not exist: {path}") from exc
|
||||||
|
except json.JSONDecodeError as exc:
|
||||||
|
raise ValueError(f"Runtime interface snapshot is invalid JSON: {exc}") from exc
|
||||||
|
if not isinstance(payload, dict):
|
||||||
|
raise ValueError("Runtime interface snapshot must be a JSON object.")
|
||||||
|
return payload
|
||||||
|
|
||||||
|
|
||||||
|
def _namespaced_interface_id(module_id: str, kind: str, value: str) -> str:
|
||||||
|
if value.startswith(f"{module_id}."):
|
||||||
|
return value
|
||||||
|
return f"{module_id}.{kind}.{_surface_slug(value)}"
|
||||||
|
|
||||||
|
|
||||||
|
def _surface_slug(value: str) -> str:
|
||||||
|
normalized = re.sub(r"[^a-z0-9]+", ".", value.strip().lower()).strip(".")
|
||||||
|
return normalized or "root"
|
||||||
|
|
||||||
|
|
||||||
def _render_markdown(inventory: dict[str, Any]) -> str:
|
def _render_markdown(inventory: dict[str, Any]) -> str:
|
||||||
summary = inventory["summary"]
|
summary = inventory["summary"]
|
||||||
missing = inventory["translation_health"]["missing_catalog_entries"]
|
missing = inventory["translation_health"]["missing_catalog_entries"]
|
||||||
@@ -450,8 +854,14 @@ def _render_markdown(inventory: dict[str, Any]) -> str:
|
|||||||
"",
|
"",
|
||||||
f"- Modules: {summary['modules']}",
|
f"- Modules: {summary['modules']}",
|
||||||
f"- UI fields: {summary['ui_fields']}",
|
f"- UI fields: {summary['ui_fields']}",
|
||||||
|
f"- UI actions: {summary['ui_actions']}",
|
||||||
f"- Fields with statically associated help: {summary['ui_fields_with_static_help']}",
|
f"- Fields with statically associated help: {summary['ui_fields_with_static_help']}",
|
||||||
|
f"- Fields with dynamic help references: {summary['dynamic_help_references']}",
|
||||||
f"- Help review candidates: {summary['help_review_candidates']}",
|
f"- Help review candidates: {summary['help_review_candidates']}",
|
||||||
|
f"- Stable interface declarations: {summary['interface_declarations']}",
|
||||||
|
f"- Duplicate interface IDs: {summary['duplicate_interface_ids']}",
|
||||||
|
f"- WebUI surfaces missing runtime declarations: {summary['undeclared_source_surfaces']}",
|
||||||
|
f"- Runtime routes missing WebUI implementations: {summary['stale_runtime_routes']}",
|
||||||
f"- Label attributes: {summary['label_attributes']}",
|
f"- Label attributes: {summary['label_attributes']}",
|
||||||
f"- Frontend routes: {summary['frontend_routes']}",
|
f"- Frontend routes: {summary['frontend_routes']}",
|
||||||
f"- Backend endpoints: {summary['backend_endpoints']}",
|
f"- Backend endpoints: {summary['backend_endpoints']}",
|
||||||
@@ -505,13 +915,24 @@ def _render_markdown(inventory: dict[str, Any]) -> str:
|
|||||||
)
|
)
|
||||||
lines.extend(
|
lines.extend(
|
||||||
[
|
[
|
||||||
|
"",
|
||||||
|
"## Declaration Reconciliation",
|
||||||
|
"",
|
||||||
|
"Routes, navigation, View surfaces, fields, actions, help references,",
|
||||||
|
"translations, settings, widgets, search objects, and backend",
|
||||||
|
"capabilities use normalized stable IDs. CI rejects duplicate IDs,",
|
||||||
|
"WebUI public surfaces absent from runtime metadata, and runtime routes",
|
||||||
|
"without a WebUI implementation.",
|
||||||
|
"",
|
||||||
"",
|
"",
|
||||||
"## Interpretation",
|
"## Interpretation",
|
||||||
"",
|
"",
|
||||||
"Use the JSON artifact for exact file and line evidence. Missing help is",
|
"Use the JSON artifact for exact file and line evidence. Missing help is",
|
||||||
"a triage list, not an automatic defect. Endpoint coverage requires an",
|
"a triage list, not an automatic defect. Endpoint coverage requires an",
|
||||||
"owner classification before enforcement. Runtime-computed structures",
|
"owner classification before enforcement. Runtime-computed structures",
|
||||||
"need explicit manifest metadata to become canonically visible.",
|
"need explicit manifest or typed PlatformWebModule metadata to become",
|
||||||
|
"canonically visible. The generated files are release evidence, not an",
|
||||||
|
"editable source of platform behavior.",
|
||||||
"",
|
"",
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ def build_parser() -> argparse.ArgumentParser:
|
|||||||
parser.add_argument("--web-metadata", type=Path, required=True)
|
parser.add_argument("--web-metadata", type=Path, required=True)
|
||||||
parser.add_argument("--deployer", type=Path, required=True)
|
parser.add_argument("--deployer", type=Path, required=True)
|
||||||
parser.add_argument("--deployer-url", required=True)
|
parser.add_argument("--deployer-url", required=True)
|
||||||
|
parser.add_argument("--package-lock", type=Path, required=True)
|
||||||
parser.add_argument("--artifact-base-url", required=True)
|
parser.add_argument("--artifact-base-url", required=True)
|
||||||
parser.add_argument("--source-commit", required=True)
|
parser.add_argument("--source-commit", required=True)
|
||||||
parser.add_argument("--version", required=True)
|
parser.add_argument("--version", required=True)
|
||||||
@@ -45,6 +46,11 @@ def build_parser() -> argparse.ArgumentParser:
|
|||||||
|
|
||||||
def finalize(args: argparse.Namespace) -> dict[str, Any]:
|
def finalize(args: argparse.Namespace) -> dict[str, Any]:
|
||||||
composition = _json_object(args.composition)
|
composition = _json_object(args.composition)
|
||||||
|
_validate_package_lock(
|
||||||
|
_json_object(args.package_lock),
|
||||||
|
version=args.version,
|
||||||
|
composition=composition,
|
||||||
|
)
|
||||||
api = _image_metadata(_json_object(args.api_metadata), "api")
|
api = _image_metadata(_json_object(args.api_metadata), "api")
|
||||||
web = _image_metadata(_json_object(args.web_metadata), "web")
|
web = _image_metadata(_json_object(args.web_metadata), "web")
|
||||||
dependencies = dict(_dependency(value) for value in args.dependency)
|
dependencies = dict(_dependency(value) for value in args.dependency)
|
||||||
@@ -99,6 +105,10 @@ def finalize(args: argparse.Namespace) -> dict[str, Any]:
|
|||||||
"url": args.deployer_url,
|
"url": args.deployer_url,
|
||||||
"sha256": _sha256_file(args.deployer),
|
"sha256": _sha256_file(args.deployer),
|
||||||
},
|
},
|
||||||
|
"package_lock": {
|
||||||
|
"url": f"{artifact_base}/package-artifacts.lock.json",
|
||||||
|
"sha256": _sha256_file(args.package_lock),
|
||||||
|
},
|
||||||
"images": {
|
"images": {
|
||||||
"api": {
|
"api": {
|
||||||
**api,
|
**api,
|
||||||
@@ -247,6 +257,57 @@ def _json_object(path: Path) -> dict[str, Any]:
|
|||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
||||||
|
def _validate_package_lock(
|
||||||
|
lock: dict[str, Any],
|
||||||
|
*,
|
||||||
|
version: str,
|
||||||
|
composition: dict[str, Any],
|
||||||
|
) -> None:
|
||||||
|
if lock.get("schema_version") != "1" or lock.get("release_version") != version:
|
||||||
|
raise ValueError("package lock schema or release version does not match")
|
||||||
|
unsigned = dict(lock)
|
||||||
|
expected_hash = unsigned.pop("lock_sha256", None)
|
||||||
|
actual_hash = hashlib.sha256(
|
||||||
|
json.dumps(unsigned, sort_keys=True, separators=(",", ":")).encode("utf-8")
|
||||||
|
).hexdigest()
|
||||||
|
if expected_hash != actual_hash:
|
||||||
|
raise ValueError("package lock hash does not match its contents")
|
||||||
|
rows = lock.get("python")
|
||||||
|
if not isinstance(rows, list):
|
||||||
|
raise ValueError("package lock Python artifacts are missing")
|
||||||
|
locked = _package_identities(rows, name_key="name")
|
||||||
|
composed = _package_identities(
|
||||||
|
composition["python"]["packages"],
|
||||||
|
name_key="package",
|
||||||
|
)
|
||||||
|
if locked != composed:
|
||||||
|
raise ValueError("package lock does not match the runtime wheel composition")
|
||||||
|
|
||||||
|
|
||||||
|
def _package_identities(
|
||||||
|
rows: list[object],
|
||||||
|
*,
|
||||||
|
name_key: str,
|
||||||
|
) -> dict[str, tuple[str, str]]:
|
||||||
|
identities: dict[str, tuple[str, str]] = {}
|
||||||
|
for row in rows:
|
||||||
|
if not isinstance(row, dict):
|
||||||
|
raise ValueError("package artifact identity is malformed")
|
||||||
|
name = row.get(name_key)
|
||||||
|
version = row.get("version")
|
||||||
|
digest = row.get("sha256")
|
||||||
|
if (
|
||||||
|
not isinstance(name, str)
|
||||||
|
or not isinstance(version, str)
|
||||||
|
or not isinstance(digest, str)
|
||||||
|
or SHA256.fullmatch(digest) is None
|
||||||
|
or name in identities
|
||||||
|
):
|
||||||
|
raise ValueError("package artifact identity is malformed or duplicated")
|
||||||
|
identities[name] = (version, digest)
|
||||||
|
return identities
|
||||||
|
|
||||||
|
|
||||||
def _https_url(value: str, label: str) -> str:
|
def _https_url(value: str, label: str) -> str:
|
||||||
parsed = urlsplit(value)
|
parsed = urlsplit(value)
|
||||||
if parsed.scheme != "https" or not parsed.netloc or parsed.username or parsed.password:
|
if parsed.scheme != "https" or not parsed.netloc or parsed.username or parsed.password:
|
||||||
|
|||||||
@@ -0,0 +1,125 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Generate the optional GovOPlaN developer convenience meta-package."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import re
|
||||||
|
import tomllib
|
||||||
|
|
||||||
|
|
||||||
|
META_ROOT = Path(__file__).resolve().parents[2]
|
||||||
|
DIRECT = re.compile(r"^(govoplan-[a-z0-9-]+)(?:\[([^]]+)\])?\s+@\s+.*@v([A-Za-z0-9._+!-]+)$")
|
||||||
|
LOCAL_CORE = re.compile(r"^(?:-e\s+)?\.\./govoplan-core(?:\[([^]]+)\])?$")
|
||||||
|
|
||||||
|
|
||||||
|
def build_parser() -> argparse.ArgumentParser:
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
parser.add_argument("--workspace", type=Path, default=META_ROOT.parent)
|
||||||
|
parser.add_argument(
|
||||||
|
"--requirements",
|
||||||
|
type=Path,
|
||||||
|
default=META_ROOT / "requirements-release.txt",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--output",
|
||||||
|
type=Path,
|
||||||
|
default=META_ROOT / "packages" / "govoplan-meta" / "pyproject.toml",
|
||||||
|
)
|
||||||
|
parser.add_argument("--check", action="store_true")
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
|
def render(*, workspace: Path, requirements: Path) -> str:
|
||||||
|
core = tomllib.loads((workspace / "govoplan-core/pyproject.toml").read_text(encoding="utf-8"))["project"]
|
||||||
|
version = str(core["version"])
|
||||||
|
base: list[str] = []
|
||||||
|
for raw in requirements.read_text(encoding="utf-8").splitlines():
|
||||||
|
line = raw.strip()
|
||||||
|
if not line or line.startswith("#"):
|
||||||
|
continue
|
||||||
|
local = LOCAL_CORE.fullmatch(line)
|
||||||
|
if local:
|
||||||
|
extra = f"[{local.group(1)}]" if local.group(1) else ""
|
||||||
|
base.append(f"govoplan-core{extra}=={version}")
|
||||||
|
continue
|
||||||
|
match = DIRECT.fullmatch(line)
|
||||||
|
if match is None:
|
||||||
|
raise ValueError(f"unsupported release requirement: {line!r}")
|
||||||
|
extra = f"[{match.group(2)}]" if match.group(2) else ""
|
||||||
|
base.append(f"{match.group(1)}{extra}=={match.group(3)}")
|
||||||
|
|
||||||
|
base_names = {_requirement_name(item) for item in base}
|
||||||
|
full: list[str] = []
|
||||||
|
for project_path in sorted(workspace.glob("govoplan-*/pyproject.toml")):
|
||||||
|
project = tomllib.loads(project_path.read_text(encoding="utf-8"))["project"]
|
||||||
|
name = str(project.get("name") or "")
|
||||||
|
package_version = str(project.get("version") or "")
|
||||||
|
if name.startswith("govoplan-") and name not in base_names:
|
||||||
|
full.append(f"{name}=={package_version}")
|
||||||
|
|
||||||
|
return "\n".join(
|
||||||
|
[
|
||||||
|
"[build-system]",
|
||||||
|
'requires = ["setuptools>=69", "wheel"]',
|
||||||
|
'build-backend = "setuptools.build_meta"',
|
||||||
|
"",
|
||||||
|
"[project]",
|
||||||
|
'name = "govoplan"',
|
||||||
|
f'version = {json.dumps(version)}',
|
||||||
|
'description = "Developer convenience package for a versioned GovOPlaN composition"',
|
||||||
|
'readme = "README.md"',
|
||||||
|
'requires-python = ">=3.12"',
|
||||||
|
'license = { text = "AGPL-3.0-or-later" }',
|
||||||
|
"dependencies = [",
|
||||||
|
*[f" {json.dumps(item)}," for item in base],
|
||||||
|
"]",
|
||||||
|
"",
|
||||||
|
"[project.optional-dependencies]",
|
||||||
|
"full = [",
|
||||||
|
*[f" {json.dumps(item)}," for item in full],
|
||||||
|
"]",
|
||||||
|
"",
|
||||||
|
"[project.urls]",
|
||||||
|
'Repository = "https://git.add-ideas.de/GovOPlaN/govoplan"',
|
||||||
|
'Documentation = "https://govoplan.add-ideas.de"',
|
||||||
|
"",
|
||||||
|
"[tool.setuptools.packages.find]",
|
||||||
|
'where = ["src"]',
|
||||||
|
"",
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _requirement_name(value: str) -> str:
|
||||||
|
return value.split("[", 1)[0].split("==", 1)[0]
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
args = build_parser().parse_args()
|
||||||
|
try:
|
||||||
|
expected = render(
|
||||||
|
workspace=args.workspace.expanduser().resolve(),
|
||||||
|
requirements=args.requirements.expanduser().resolve(),
|
||||||
|
)
|
||||||
|
except (OSError, KeyError, ValueError, tomllib.TOMLDecodeError) as exc:
|
||||||
|
print(f"error: {exc}")
|
||||||
|
return 1
|
||||||
|
output = args.output.expanduser()
|
||||||
|
current = output.read_text(encoding="utf-8") if output.is_file() else None
|
||||||
|
if args.check:
|
||||||
|
if current != expected:
|
||||||
|
print(f"error: developer meta-package is stale: {output}")
|
||||||
|
return 1
|
||||||
|
print("Developer meta-package is synchronized.")
|
||||||
|
return 0
|
||||||
|
output.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
output.write_text(expected, encoding="utf-8")
|
||||||
|
print(f"Developer meta-package written to {output}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
@@ -94,9 +94,6 @@ cleanup() {
|
|||||||
trap cleanup EXIT
|
trap cleanup EXIT
|
||||||
|
|
||||||
cp "$WEBUI/package.release.json" "$TMP_DIR/package.json"
|
cp "$WEBUI/package.release.json" "$TMP_DIR/package.json"
|
||||||
if [[ -f "$WEBUI/package-lock.release.json" ]]; then
|
|
||||||
cp "$WEBUI/package-lock.release.json" "$TMP_DIR/package-lock.json"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Generating release lockfile from $WEBUI/package.release.json"
|
echo "Generating release lockfile from $WEBUI/package.release.json"
|
||||||
echo "Temporary workspace: $TMP_DIR"
|
echo "Temporary workspace: $TMP_DIR"
|
||||||
@@ -120,7 +117,10 @@ GIT_ENV+=("GIT_CONFIG_COUNT=$git_config_count")
|
|||||||
|
|
||||||
(
|
(
|
||||||
cd "$TMP_DIR"
|
cd "$TMP_DIR"
|
||||||
"${GIT_ENV[@]}" PATH="$(dirname "$NPM_BIN"):$PATH" "$NPM_BIN" install --package-lock-only --ignore-scripts
|
"${GIT_ENV[@]}" \
|
||||||
|
"npm_config_cache=$TMP_DIR/npm-cache" \
|
||||||
|
PATH="$(dirname "$NPM_BIN"):$PATH" \
|
||||||
|
"$NPM_BIN" install --package-lock-only --ignore-scripts
|
||||||
mapfile -t GIT_PACKAGES < <(
|
mapfile -t GIT_PACKAGES < <(
|
||||||
PATH="$(dirname "$NODE_BIN"):$PATH" "$NODE_BIN" <<'NODE'
|
PATH="$(dirname "$NODE_BIN"):$PATH" "$NODE_BIN" <<'NODE'
|
||||||
const fs = require("fs");
|
const fs = require("fs");
|
||||||
@@ -136,7 +136,10 @@ NODE
|
|||||||
)
|
)
|
||||||
if [[ "${#GIT_PACKAGES[@]}" -gt 0 ]]; then
|
if [[ "${#GIT_PACKAGES[@]}" -gt 0 ]]; then
|
||||||
echo "Refreshing git package lock entries: ${GIT_PACKAGES[*]}"
|
echo "Refreshing git package lock entries: ${GIT_PACKAGES[*]}"
|
||||||
"${GIT_ENV[@]}" PATH="$(dirname "$NPM_BIN"):$PATH" "$NPM_BIN" update --package-lock-only --ignore-scripts "${GIT_PACKAGES[@]}"
|
"${GIT_ENV[@]}" \
|
||||||
|
"npm_config_cache=$TMP_DIR/npm-cache" \
|
||||||
|
PATH="$(dirname "$NPM_BIN"):$PATH" \
|
||||||
|
"$NPM_BIN" update --package-lock-only --ignore-scripts "${GIT_PACKAGES[@]}"
|
||||||
fi
|
fi
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,196 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Generate the exact registry package set for a GovOPlaN runtime release."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import hashlib
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import re
|
||||||
|
import subprocess
|
||||||
|
import tomllib
|
||||||
|
|
||||||
|
|
||||||
|
META_ROOT = Path(__file__).resolve().parents[2]
|
||||||
|
NAME = re.compile(r"^govoplan-[a-z0-9-]+$")
|
||||||
|
VERSION = re.compile(r"^[A-Za-z0-9][A-Za-z0-9._+!-]{0,127}$")
|
||||||
|
GIT_REQUIREMENT = re.compile(
|
||||||
|
r"^(?P<package>govoplan-[a-z0-9-]+)(?:\[(?P<extras>[^]]+)\])?\s+@\s+"
|
||||||
|
r"(?P<url>git\+[^\s]+/GovOPlaN/(?P<repo>govoplan-[a-z0-9-]+)\.git@v"
|
||||||
|
r"(?P<version>[A-Za-z0-9._+!-]+))$"
|
||||||
|
)
|
||||||
|
LOCAL_CORE = re.compile(r"^(?:-e\s+)?\.\./govoplan-core(?:\[(?P<extras>[^]]+)\])?$")
|
||||||
|
|
||||||
|
|
||||||
|
class PackageSetError(ValueError):
|
||||||
|
"""Release source references cannot form an immutable package set."""
|
||||||
|
|
||||||
|
|
||||||
|
def build_parser() -> argparse.ArgumentParser:
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
parser.add_argument(
|
||||||
|
"--version",
|
||||||
|
help="Core/meta release version. Defaults to the workspace Core version.",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--requirements",
|
||||||
|
type=Path,
|
||||||
|
default=META_ROOT / "requirements-release.txt",
|
||||||
|
)
|
||||||
|
parser.add_argument("--workspace", type=Path, default=META_ROOT.parent)
|
||||||
|
parser.add_argument("--output", type=Path, required=True)
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
|
def parse_release_requirements(path: Path, *, core_version: str) -> tuple[dict[str, object], ...]:
|
||||||
|
values: list[dict[str, object]] = []
|
||||||
|
for line_number, raw in enumerate(path.read_text(encoding="utf-8").splitlines(), 1):
|
||||||
|
line = raw.strip()
|
||||||
|
if not line or line.startswith("#"):
|
||||||
|
continue
|
||||||
|
local = LOCAL_CORE.fullmatch(line)
|
||||||
|
if local:
|
||||||
|
values.append(
|
||||||
|
{
|
||||||
|
"name": "govoplan-core",
|
||||||
|
"version": core_version.removeprefix("v"),
|
||||||
|
"repository": "govoplan-core",
|
||||||
|
"extras": _extras(local.group("extras")),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
continue
|
||||||
|
match = GIT_REQUIREMENT.fullmatch(line)
|
||||||
|
if match is None:
|
||||||
|
raise PackageSetError(
|
||||||
|
f"unsupported release requirement at {path}:{line_number}: {line!r}"
|
||||||
|
)
|
||||||
|
values.append(
|
||||||
|
{
|
||||||
|
"name": match.group("package"),
|
||||||
|
"version": match.group("version"),
|
||||||
|
"repository": match.group("repo"),
|
||||||
|
"extras": _extras(match.group("extras")),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
names = [str(item["name"]) for item in values]
|
||||||
|
if not values or names.count("govoplan-core") != 1 or len(names) != len(set(names)):
|
||||||
|
raise PackageSetError("release requirements must contain one Core and unique packages")
|
||||||
|
return tuple(values)
|
||||||
|
|
||||||
|
|
||||||
|
def generate_package_set(
|
||||||
|
*,
|
||||||
|
core_version: str,
|
||||||
|
requirements: Path,
|
||||||
|
workspace: Path,
|
||||||
|
) -> dict[str, object]:
|
||||||
|
core_version = core_version.removeprefix("v")
|
||||||
|
if VERSION.fullmatch(core_version) is None:
|
||||||
|
raise PackageSetError("release version is invalid")
|
||||||
|
python_packages: list[dict[str, object]] = []
|
||||||
|
webui_packages: list[dict[str, object]] = []
|
||||||
|
seen_webui: set[str] = set()
|
||||||
|
for requirement in parse_release_requirements(requirements, core_version=core_version):
|
||||||
|
repository = workspace / str(requirement["repository"])
|
||||||
|
tag = f"v{requirement['version']}"
|
||||||
|
if not (repository / ".git").is_dir():
|
||||||
|
raise PackageSetError(f"release repository is missing: {repository}")
|
||||||
|
commit = _git(repository, "rev-list", "-n", "1", tag)
|
||||||
|
if not commit:
|
||||||
|
raise PackageSetError(f"release tag is missing: {repository.name}@{tag}")
|
||||||
|
project = tomllib.loads(_git(repository, "show", f"{tag}:pyproject.toml"))["project"]
|
||||||
|
if project.get("name") != requirement["name"] or project.get("version") != requirement["version"]:
|
||||||
|
raise PackageSetError(f"tag metadata does not match {repository.name}@{tag}")
|
||||||
|
entry = {
|
||||||
|
**requirement,
|
||||||
|
"tag": tag,
|
||||||
|
"commit": commit,
|
||||||
|
}
|
||||||
|
python_packages.append(entry)
|
||||||
|
try:
|
||||||
|
webui_raw = _git(repository, "show", f"{tag}:webui/package.json")
|
||||||
|
except subprocess.CalledProcessError:
|
||||||
|
continue
|
||||||
|
webui = json.loads(webui_raw)
|
||||||
|
webui_name = webui.get("name")
|
||||||
|
if (
|
||||||
|
not isinstance(webui_name, str)
|
||||||
|
or not webui_name.startswith("@govoplan/")
|
||||||
|
or webui.get("version") != requirement["version"]
|
||||||
|
or webui_name in seen_webui
|
||||||
|
):
|
||||||
|
raise PackageSetError(f"WebUI tag metadata does not match {repository.name}@{tag}")
|
||||||
|
seen_webui.add(webui_name)
|
||||||
|
webui_packages.append(
|
||||||
|
{
|
||||||
|
"name": webui_name,
|
||||||
|
"version": requirement["version"],
|
||||||
|
"repository": requirement["repository"],
|
||||||
|
"tag": tag,
|
||||||
|
"commit": commit,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
payload: dict[str, object] = {
|
||||||
|
"schema_version": "1",
|
||||||
|
"release_version": core_version,
|
||||||
|
"registries": {
|
||||||
|
"python": "https://git.add-ideas.de/api/packages/GovOPlaN/pypi/simple",
|
||||||
|
"npm": "https://git.add-ideas.de/api/packages/GovOPlaN/npm/",
|
||||||
|
},
|
||||||
|
"python": python_packages,
|
||||||
|
"webui": webui_packages,
|
||||||
|
}
|
||||||
|
payload["package_set_sha256"] = _canonical_sha256(payload)
|
||||||
|
return payload
|
||||||
|
|
||||||
|
|
||||||
|
def _extras(value: str | None) -> list[str]:
|
||||||
|
if not value:
|
||||||
|
return []
|
||||||
|
extras = sorted({item.strip() for item in value.split(",") if item.strip()})
|
||||||
|
if any(re.fullmatch(r"[a-z][a-z0-9_-]*", item) is None for item in extras):
|
||||||
|
raise PackageSetError("release requirement contains an invalid extra")
|
||||||
|
return extras
|
||||||
|
|
||||||
|
|
||||||
|
def _git(repository: Path, *arguments: str) -> str:
|
||||||
|
return subprocess.check_output(
|
||||||
|
["git", "-C", str(repository), *arguments],
|
||||||
|
text=True,
|
||||||
|
stderr=subprocess.DEVNULL,
|
||||||
|
).strip()
|
||||||
|
|
||||||
|
|
||||||
|
def _canonical_sha256(value: object) -> str:
|
||||||
|
encoded = json.dumps(value, sort_keys=True, separators=(",", ":")).encode("utf-8")
|
||||||
|
return hashlib.sha256(encoded).hexdigest()
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
args = build_parser().parse_args()
|
||||||
|
try:
|
||||||
|
workspace = args.workspace.expanduser().resolve()
|
||||||
|
version = args.version
|
||||||
|
if not version:
|
||||||
|
core = tomllib.loads(
|
||||||
|
(workspace / "govoplan-core/pyproject.toml").read_text(encoding="utf-8")
|
||||||
|
)
|
||||||
|
version = str(core["project"]["version"])
|
||||||
|
payload = generate_package_set(
|
||||||
|
core_version=version,
|
||||||
|
requirements=args.requirements.expanduser().resolve(),
|
||||||
|
workspace=workspace,
|
||||||
|
)
|
||||||
|
except (PackageSetError, OSError, ValueError, subprocess.CalledProcessError) as exc:
|
||||||
|
print(f"error: {exc}")
|
||||||
|
return 1
|
||||||
|
output = args.output.expanduser()
|
||||||
|
output.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
output.write_text(json.dumps(payload, indent=2, sort_keys=True) + "\n", encoding="utf-8")
|
||||||
|
print(f"Release package set written to {output}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
@@ -8,6 +8,9 @@ WEBUI_DIR="${1:-$CORE_ROOT/webui}"
|
|||||||
WORK_ROOT="$(mktemp -d "${TMPDIR:-/tmp}/govoplan-webui-release-deps.XXXXXXXX")"
|
WORK_ROOT="$(mktemp -d "${TMPDIR:-/tmp}/govoplan-webui-release-deps.XXXXXXXX")"
|
||||||
GOVOPLAN_DEPS="$WORK_ROOT/govoplan-webui-deps.tsv"
|
GOVOPLAN_DEPS="$WORK_ROOT/govoplan-webui-deps.tsv"
|
||||||
export GOVOPLAN_DEPS
|
export GOVOPLAN_DEPS
|
||||||
|
PACKAGE_LOCK="${GOVOPLAN_WEBUI_PACKAGE_LOCK:-}"
|
||||||
|
PACKAGE_DIR="${GOVOPLAN_WEBUI_PACKAGE_DIR:-}"
|
||||||
|
PYTHON_BIN="${PYTHON:-python3}"
|
||||||
|
|
||||||
trap 'rm -rf "$WORK_ROOT"' EXIT
|
trap 'rm -rf "$WORK_ROOT"' EXIT
|
||||||
|
|
||||||
@@ -55,9 +58,69 @@ rm -f package-lock.json
|
|||||||
npm cache clean --force
|
npm cache clean --force
|
||||||
retry npm install --prefer-online
|
retry npm install --prefer-online
|
||||||
|
|
||||||
|
if [[ -n "$PACKAGE_LOCK" || -n "$PACKAGE_DIR" ]]; then
|
||||||
|
[[ -n "$PACKAGE_LOCK" && -n "$PACKAGE_DIR" ]] || {
|
||||||
|
echo "GOVOPLAN_WEBUI_PACKAGE_LOCK and GOVOPLAN_WEBUI_PACKAGE_DIR must be set together" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
"$PYTHON_BIN" - "$PACKAGE_LOCK" "$PACKAGE_DIR" "$GOVOPLAN_DEPS" <<'PY'
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import hashlib
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import sys
|
||||||
|
|
||||||
|
lock_path = Path(sys.argv[1]).resolve()
|
||||||
|
package_dir = Path(sys.argv[2]).resolve()
|
||||||
|
output = Path(sys.argv[3])
|
||||||
|
lock = json.loads(lock_path.read_text(encoding="utf-8"))
|
||||||
|
if lock.get("schema_version") != "1" or not isinstance(lock.get("webui"), list):
|
||||||
|
raise SystemExit("WebUI package lock is malformed")
|
||||||
|
unsigned = dict(lock)
|
||||||
|
expected_lock_hash = unsigned.pop("lock_sha256", None)
|
||||||
|
actual_lock_hash = hashlib.sha256(
|
||||||
|
json.dumps(unsigned, sort_keys=True, separators=(",", ":")).encode("utf-8")
|
||||||
|
).hexdigest()
|
||||||
|
if expected_lock_hash != actual_lock_hash:
|
||||||
|
raise SystemExit("WebUI package lock hash does not match its contents")
|
||||||
|
rows = {}
|
||||||
|
for item in lock["webui"]:
|
||||||
|
if not isinstance(item, dict) or not isinstance(item.get("name"), str):
|
||||||
|
raise SystemExit("WebUI package lock contains a malformed artifact")
|
||||||
|
if item["name"] in rows:
|
||||||
|
raise SystemExit(f"WebUI package lock contains duplicate artifact {item['name']}")
|
||||||
|
rows[item["name"]] = item
|
||||||
|
requested = []
|
||||||
|
for line in output.read_text(encoding="utf-8").splitlines():
|
||||||
|
if not line:
|
||||||
|
continue
|
||||||
|
name, _source_ref = line.split("\t", 1)
|
||||||
|
row = rows.get(name)
|
||||||
|
if not isinstance(row, dict):
|
||||||
|
raise SystemExit(f"WebUI package lock has no artifact for {name}")
|
||||||
|
filename = row.get("filename")
|
||||||
|
if not isinstance(filename, str) or Path(filename).name != filename:
|
||||||
|
raise SystemExit(f"WebUI package lock has an invalid filename for {name}")
|
||||||
|
artifact = package_dir / filename
|
||||||
|
if artifact.is_symlink() or not artifact.is_file():
|
||||||
|
raise SystemExit(f"WebUI package artifact is missing for {name}")
|
||||||
|
encoded = artifact.read_bytes()
|
||||||
|
if len(encoded) != row.get("size") or hashlib.sha256(encoded).hexdigest() != row.get("sha256"):
|
||||||
|
raise SystemExit(f"WebUI package artifact hash does not match for {name}")
|
||||||
|
requested.append(f"{name}\tfile:{artifact}")
|
||||||
|
output.write_text("\n".join(requested) + "\n", encoding="utf-8")
|
||||||
|
PY
|
||||||
|
fi
|
||||||
|
|
||||||
module_paths=()
|
module_paths=()
|
||||||
while IFS=$'\t' read -r package_name spec; do
|
while IFS=$'\t' read -r package_name spec; do
|
||||||
[[ -n "${package_name:-}" ]] || continue
|
[[ -n "${package_name:-}" ]] || continue
|
||||||
|
if [[ "$spec" == file:* ]]; then
|
||||||
|
echo "Installing $package_name from verified package artifact"
|
||||||
|
module_paths+=("$spec")
|
||||||
|
continue
|
||||||
|
fi
|
||||||
git_url="${spec%%#*}"
|
git_url="${spec%%#*}"
|
||||||
git_ref="${spec#*#}"
|
git_ref="${spec#*#}"
|
||||||
if [[ "$git_url" == "$spec" || -z "$git_ref" ]]; then
|
if [[ "$git_url" == "$spec" || -z "$git_ref" ]]; then
|
||||||
|
|||||||
@@ -333,20 +333,53 @@ path = pathlib.Path(sys.argv[1])
|
|||||||
new_version = sys.argv[2]
|
new_version = sys.argv[2]
|
||||||
text = path.read_text()
|
text = path.read_text()
|
||||||
text, count = re.subn(
|
text, count = re.subn(
|
||||||
r'(?m)^(\s*version=)["\'][^"\']+["\'](,?\s*)$',
|
r'(?m)^(MODULE_VERSION\s*=\s*)["\'][^"\']+["\'](\s*)$',
|
||||||
rf'\1"{new_version}"\2',
|
rf'\1"{new_version}"\2',
|
||||||
text,
|
text,
|
||||||
count=1,
|
count=1,
|
||||||
)
|
)
|
||||||
if count == 0:
|
if count == 0:
|
||||||
text, count = re.subn(
|
text, count = re.subn(
|
||||||
r'(?m)^(MODULE_VERSION\s*=\s*)["\'][^"\']+["\'](\s*)$',
|
r'(?ms)(^manifest\s*=\s*ModuleManifest\(.*?^\s*version\s*=\s*)["\'][^"\']+["\'](,?\s*)$',
|
||||||
rf'\1"{new_version}"\2',
|
rf'\1"{new_version}"\2',
|
||||||
text,
|
text,
|
||||||
count=1,
|
count=1,
|
||||||
)
|
)
|
||||||
if count != 1:
|
if count != 1:
|
||||||
raise SystemExit(f"could not update ModuleManifest.version in {path}")
|
raise SystemExit(f"could not update module version declaration in {path}")
|
||||||
|
path.write_text(text)
|
||||||
|
PYCODE
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
update_package_init_versions() {
|
||||||
|
local repo="$1"
|
||||||
|
local version="$2"
|
||||||
|
local package_init=""
|
||||||
|
|
||||||
|
for package_init in "$repo"/src/*/__init__.py; do
|
||||||
|
[[ -f "$package_init" ]] || continue
|
||||||
|
if ! grep -q '^__version__\s*=' "$package_init"; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
"$PYTHON" - "$package_init" "$version" <<'PYCODE'
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import pathlib
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
|
||||||
|
path = pathlib.Path(sys.argv[1])
|
||||||
|
new_version = sys.argv[2]
|
||||||
|
text = path.read_text()
|
||||||
|
text, count = re.subn(
|
||||||
|
r'(?m)^(__version__\s*=\s*)["\'][^"\']+["\'](\s*)$',
|
||||||
|
rf'\1"{new_version}"\2',
|
||||||
|
text,
|
||||||
|
count=1,
|
||||||
|
)
|
||||||
|
if count != 1:
|
||||||
|
raise SystemExit(f"could not update __version__ in {path}")
|
||||||
path.write_text(text)
|
path.write_text(text)
|
||||||
PYCODE
|
PYCODE
|
||||||
done
|
done
|
||||||
@@ -380,6 +413,11 @@ if project_name != "govoplan-core":
|
|||||||
peers["@govoplan/core-webui"] = f"^{new_version}"
|
peers["@govoplan/core-webui"] = f"^{new_version}"
|
||||||
path.write_text(json.dumps(data, indent=2) + "\n")
|
path.write_text(json.dumps(data, indent=2) + "\n")
|
||||||
PYCODE
|
PYCODE
|
||||||
|
done
|
||||||
|
|
||||||
|
"$PYTHON" "$META_ROOT/tools/release/synchronize-webui-package-metadata.py" --repo "$repo"
|
||||||
|
for package_path in "$repo/package.json" "$repo/webui/package.json"; do
|
||||||
|
[[ -f "$package_path" ]] || continue
|
||||||
synchronize_lockfile_root "$package_path" "${package_path%package.json}package-lock.json"
|
synchronize_lockfile_root "$package_path" "${package_path%package.json}package-lock.json"
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -428,7 +466,19 @@ if not isinstance(version, str) or not version:
|
|||||||
lock["version"] = version
|
lock["version"] = version
|
||||||
packages = lock.get("packages")
|
packages = lock.get("packages")
|
||||||
if isinstance(packages, dict) and isinstance(packages.get(""), dict):
|
if isinstance(packages, dict) and isinstance(packages.get(""), dict):
|
||||||
packages[""]["version"] = version
|
root = packages[""]
|
||||||
|
root["version"] = version
|
||||||
|
for group in (
|
||||||
|
"dependencies",
|
||||||
|
"devDependencies",
|
||||||
|
"optionalDependencies",
|
||||||
|
"peerDependencies",
|
||||||
|
"peerDependenciesMeta",
|
||||||
|
):
|
||||||
|
if group in package:
|
||||||
|
root[group] = package[group]
|
||||||
|
else:
|
||||||
|
root.pop(group, None)
|
||||||
lock_path.write_text(json.dumps(lock, indent=2) + "\n")
|
lock_path.write_text(json.dumps(lock, indent=2) + "\n")
|
||||||
PYCODE
|
PYCODE
|
||||||
}
|
}
|
||||||
@@ -456,6 +506,13 @@ path.write_text(updated)
|
|||||||
PYCODE
|
PYCODE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
update_developer_meta_package() {
|
||||||
|
"$PYTHON" "$META_ROOT/tools/release/generate-developer-meta-package.py" \
|
||||||
|
--workspace "$PARENT" \
|
||||||
|
--requirements "$META_ROOT/requirements-release.txt" \
|
||||||
|
--output "$META_ROOT/packages/govoplan-meta/pyproject.toml"
|
||||||
|
}
|
||||||
|
|
||||||
update_version_files() {
|
update_version_files() {
|
||||||
local repo="$1"
|
local repo="$1"
|
||||||
local version="$2"
|
local version="$2"
|
||||||
@@ -463,6 +520,7 @@ update_version_files() {
|
|||||||
|
|
||||||
update_pyproject "$repo" "$version"
|
update_pyproject "$repo" "$version"
|
||||||
update_manifest_version "$repo" "$project_name" "$version"
|
update_manifest_version "$repo" "$project_name" "$version"
|
||||||
|
update_package_init_versions "$repo" "$version"
|
||||||
update_webui_package "$repo" "$project_name" "$version"
|
update_webui_package "$repo" "$project_name" "$version"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -493,10 +551,11 @@ run_version_alignment_gate() {
|
|||||||
"$PYTHON"
|
"$PYTHON"
|
||||||
"$META_ROOT/tools/checks/check-version-alignment.py"
|
"$META_ROOT/tools/checks/check-version-alignment.py"
|
||||||
--workspace-root "$PARENT"
|
--workspace-root "$PARENT"
|
||||||
--release-composition
|
|
||||||
)
|
)
|
||||||
if [[ "$mode" == "source" ]]; then
|
if [[ "$mode" == "source" ]]; then
|
||||||
command+=(--source-metadata-only)
|
command+=(--source-metadata-only)
|
||||||
|
else
|
||||||
|
command+=(--release-composition)
|
||||||
fi
|
fi
|
||||||
local repo
|
local repo
|
||||||
for repo in "${PACKAGE_REPOS[@]}"; do
|
for repo in "${PACKAGE_REPOS[@]}"; do
|
||||||
@@ -526,7 +585,8 @@ run_migration_release_audit() {
|
|||||||
command+=("--strict")
|
command+=("--strict")
|
||||||
;;
|
;;
|
||||||
auto)
|
auto)
|
||||||
command+=("--strict-if-baseline")
|
# A coordinated release creates a new baseline after confirmation. The
|
||||||
|
# preflight validates the graph; strictness applies to that new baseline.
|
||||||
;;
|
;;
|
||||||
warn)
|
warn)
|
||||||
;;
|
;;
|
||||||
@@ -539,6 +599,18 @@ run_migration_release_audit() {
|
|||||||
run "${command[@]}"
|
run "${command[@]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
record_migration_release_baseline() {
|
||||||
|
local audit_script="$META_ROOT/tools/release/release-migration-audit.py"
|
||||||
|
|
||||||
|
[[ -f "$audit_script" ]] || fail "missing migration audit helper: $audit_script"
|
||||||
|
run "$PYTHON" "$audit_script" \
|
||||||
|
--track release \
|
||||||
|
--record-release "$TARGET_VERSION"
|
||||||
|
if [[ "$DRY_RUN" -eq 0 ]]; then
|
||||||
|
"$PYTHON" "$audit_script" --track release --strict
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
print_command() {
|
print_command() {
|
||||||
printf '+'
|
printf '+'
|
||||||
printf ' %q' "$@"
|
printf ' %q' "$@"
|
||||||
@@ -865,6 +937,8 @@ run_manifest_shape_gate
|
|||||||
|
|
||||||
confirm_release
|
confirm_release
|
||||||
|
|
||||||
|
record_migration_release_baseline
|
||||||
|
|
||||||
for repo in "${PACKAGE_REPOS[@]}"; do
|
for repo in "${PACKAGE_REPOS[@]}"; do
|
||||||
if [[ "$DRY_RUN" -eq 1 ]]; then
|
if [[ "$DRY_RUN" -eq 1 ]]; then
|
||||||
echo "Would update version files in $repo to $TARGET_VERSION"
|
echo "Would update version files in $repo to $TARGET_VERSION"
|
||||||
@@ -875,8 +949,10 @@ done
|
|||||||
|
|
||||||
if [[ "$DRY_RUN" -eq 1 ]]; then
|
if [[ "$DRY_RUN" -eq 1 ]]; then
|
||||||
echo "Would update $META_ROOT/requirements-release.txt to $TAG"
|
echo "Would update $META_ROOT/requirements-release.txt to $TAG"
|
||||||
|
echo "Would synchronize packages/govoplan-meta/pyproject.toml"
|
||||||
else
|
else
|
||||||
update_release_requirements "$TARGET_VERSION"
|
update_release_requirements "$TARGET_VERSION"
|
||||||
|
update_developer_meta_package
|
||||||
fi
|
fi
|
||||||
|
|
||||||
refresh_development_webui_lock
|
refresh_development_webui_lock
|
||||||
@@ -929,10 +1005,13 @@ fi
|
|||||||
run git -C "$ROOT" commit -m "$COMMIT_MESSAGE"
|
run git -C "$ROOT" commit -m "$COMMIT_MESSAGE"
|
||||||
run git -C "$ROOT" tag -a "$TAG" -m "$TAG_MESSAGE"
|
run git -C "$ROOT" tag -a "$TAG" -m "$TAG_MESSAGE"
|
||||||
|
|
||||||
for repo in "${PRE_CORE_REPOS[@]}"; do
|
for repo in "${MODULE_REPOS[@]}"; do
|
||||||
run git -C "$repo" push --atomic "$REMOTE" "HEAD:refs/heads/${BRANCHES[$repo]}" "refs/tags/$TAG"
|
run git -C "$repo" push --atomic "$REMOTE" "HEAD:refs/heads/${BRANCHES[$repo]}" "refs/tags/$TAG"
|
||||||
done
|
done
|
||||||
run git -C "$ROOT" push --atomic "$REMOTE" "HEAD:refs/heads/${BRANCHES[$ROOT]}" "refs/tags/$TAG"
|
run git -C "$ROOT" push --atomic "$REMOTE" "HEAD:refs/heads/${BRANCHES[$ROOT]}" "refs/tags/$TAG"
|
||||||
|
for repo in "${SUPPORT_REPOS[@]}"; do
|
||||||
|
run git -C "$repo" push --atomic "$REMOTE" "HEAD:refs/heads/${BRANCHES[$repo]}" "refs/tags/$TAG"
|
||||||
|
done
|
||||||
|
|
||||||
if [[ "$PUBLISH_WEB_CATALOG" -eq 1 ]]; then
|
if [[ "$PUBLISH_WEB_CATALOG" -eq 1 ]]; then
|
||||||
CATALOG_ARGS=(
|
CATALOG_ARGS=(
|
||||||
|
|||||||
@@ -0,0 +1,361 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Download, verify, and lock exact GovOPlaN registry package artifacts."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import base64
|
||||||
|
from email.parser import BytesParser
|
||||||
|
from email.policy import compat32
|
||||||
|
import hashlib
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
from pathlib import Path, PurePosixPath
|
||||||
|
import re
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
import tarfile
|
||||||
|
import tempfile
|
||||||
|
from urllib.parse import quote, urlsplit, urlunsplit
|
||||||
|
import zipfile
|
||||||
|
|
||||||
|
|
||||||
|
NAME = re.compile(r"^[a-z0-9]+(?:-[a-z0-9]+)*$")
|
||||||
|
WEBUI_NAME = re.compile(r"^@govoplan/[a-z0-9]+(?:-[a-z0-9]+)*-webui$")
|
||||||
|
VERSION = re.compile(r"^[A-Za-z0-9][A-Za-z0-9._+!-]{0,127}$")
|
||||||
|
COMMIT = re.compile(r"^[0-9a-f]{40}$")
|
||||||
|
MAX_ARTIFACT_BYTES = 512 * 1024 * 1024
|
||||||
|
|
||||||
|
|
||||||
|
class PackageArtifactError(ValueError):
|
||||||
|
"""Registry artifacts do not match the selected package set."""
|
||||||
|
|
||||||
|
|
||||||
|
def build_parser() -> argparse.ArgumentParser:
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
parser.add_argument("--package-set", type=Path, required=True)
|
||||||
|
parser.add_argument("--wheelhouse", type=Path, required=True)
|
||||||
|
parser.add_argument("--webui-packages", type=Path, required=True)
|
||||||
|
parser.add_argument("--lock-output", type=Path, required=True)
|
||||||
|
parser.add_argument("--requirements-output", type=Path)
|
||||||
|
parser.add_argument("--python", default=sys.executable)
|
||||||
|
parser.add_argument("--npm", default="npm")
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
|
def resolve(args: argparse.Namespace) -> dict[str, object]:
|
||||||
|
package_set = _load_package_set(args.package_set)
|
||||||
|
wheelhouse = args.wheelhouse.expanduser().resolve()
|
||||||
|
webui_packages = args.webui_packages.expanduser().resolve()
|
||||||
|
_require_empty_destination(wheelhouse)
|
||||||
|
_require_empty_destination(webui_packages)
|
||||||
|
wheelhouse.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
webui_packages.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
with tempfile.TemporaryDirectory(prefix="govoplan-package-resolution-") as value:
|
||||||
|
temporary = Path(value)
|
||||||
|
wheels = temporary / "wheels"
|
||||||
|
webui = temporary / "webui"
|
||||||
|
wheels.mkdir()
|
||||||
|
webui.mkdir()
|
||||||
|
_download_wheels(
|
||||||
|
packages=tuple(package_set["python"]),
|
||||||
|
destination=wheels,
|
||||||
|
python=args.python,
|
||||||
|
index_url=str(package_set["registries"]["python"]),
|
||||||
|
)
|
||||||
|
_download_webui(
|
||||||
|
packages=tuple(package_set["webui"]),
|
||||||
|
destination=webui,
|
||||||
|
npm=args.npm,
|
||||||
|
registry=str(package_set["registries"]["npm"]),
|
||||||
|
)
|
||||||
|
python_rows = _verify_wheels(tuple(package_set["python"]), wheels)
|
||||||
|
webui_rows = _verify_webui(tuple(package_set["webui"]), webui)
|
||||||
|
lock: dict[str, object] = {
|
||||||
|
"schema_version": "1",
|
||||||
|
"release_version": package_set["release_version"],
|
||||||
|
"package_set_sha256": package_set["package_set_sha256"],
|
||||||
|
"registries": package_set["registries"],
|
||||||
|
"python": python_rows,
|
||||||
|
"webui": webui_rows,
|
||||||
|
}
|
||||||
|
lock["lock_sha256"] = _canonical_sha256(lock)
|
||||||
|
shutil.copytree(wheels, wheelhouse, dirs_exist_ok=True)
|
||||||
|
shutil.copytree(webui, webui_packages, dirs_exist_ok=True)
|
||||||
|
args.lock_output.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
args.lock_output.write_text(json.dumps(lock, indent=2, sort_keys=True) + "\n", encoding="utf-8")
|
||||||
|
if args.requirements_output is not None:
|
||||||
|
_write_requirements(args.requirements_output, python_rows)
|
||||||
|
return lock
|
||||||
|
|
||||||
|
|
||||||
|
def _load_package_set(path: Path) -> dict[str, object]:
|
||||||
|
value = json.loads(path.read_text(encoding="utf-8"))
|
||||||
|
if not isinstance(value, dict) or value.get("schema_version") != "1":
|
||||||
|
raise PackageArtifactError("package set has an unsupported shape")
|
||||||
|
expected_hash = value.get("package_set_sha256")
|
||||||
|
unsigned = dict(value)
|
||||||
|
unsigned.pop("package_set_sha256", None)
|
||||||
|
if expected_hash != _canonical_sha256(unsigned):
|
||||||
|
raise PackageArtifactError("package set hash does not match its contents")
|
||||||
|
registries = value.get("registries")
|
||||||
|
if not isinstance(registries, dict) or set(registries) != {"python", "npm"}:
|
||||||
|
raise PackageArtifactError("package set registries are invalid")
|
||||||
|
for registry in registries.values():
|
||||||
|
parsed = urlsplit(str(registry))
|
||||||
|
if parsed.scheme != "https" or not parsed.netloc or parsed.username or parsed.password:
|
||||||
|
raise PackageArtifactError("package registries must use credential-free HTTPS URLs")
|
||||||
|
for group in ("python", "webui"):
|
||||||
|
packages = value.get(group)
|
||||||
|
if not isinstance(packages, list) or not packages:
|
||||||
|
raise PackageArtifactError(f"package set {group} entries are missing")
|
||||||
|
_validate_package_entries(group, packages)
|
||||||
|
return value
|
||||||
|
|
||||||
|
|
||||||
|
def _validate_package_entries(group: str, packages: list[object]) -> None:
|
||||||
|
names: set[str] = set()
|
||||||
|
for raw in packages:
|
||||||
|
if not isinstance(raw, dict):
|
||||||
|
raise PackageArtifactError(f"package set {group} entry is malformed")
|
||||||
|
name = raw.get("name")
|
||||||
|
version = raw.get("version")
|
||||||
|
repository = raw.get("repository")
|
||||||
|
tag = raw.get("tag")
|
||||||
|
commit = raw.get("commit")
|
||||||
|
name_valid = (
|
||||||
|
isinstance(name, str)
|
||||||
|
and (NAME.fullmatch(name) if group == "python" else WEBUI_NAME.fullmatch(name))
|
||||||
|
)
|
||||||
|
if (
|
||||||
|
not name_valid
|
||||||
|
or name in names
|
||||||
|
or not isinstance(version, str)
|
||||||
|
or VERSION.fullmatch(version) is None
|
||||||
|
or not isinstance(repository, str)
|
||||||
|
or NAME.fullmatch(repository) is None
|
||||||
|
or tag != f"v{version}"
|
||||||
|
or not isinstance(commit, str)
|
||||||
|
or COMMIT.fullmatch(commit) is None
|
||||||
|
):
|
||||||
|
raise PackageArtifactError(f"package set {group} entry has an invalid identity")
|
||||||
|
names.add(name)
|
||||||
|
if group == "python":
|
||||||
|
extras = raw.get("extras")
|
||||||
|
if not isinstance(extras, list) or any(
|
||||||
|
not isinstance(item, str)
|
||||||
|
or re.fullmatch(r"[a-z][a-z0-9_-]*", item) is None
|
||||||
|
for item in extras
|
||||||
|
):
|
||||||
|
raise PackageArtifactError("package set Python extras are invalid")
|
||||||
|
|
||||||
|
|
||||||
|
def _download_wheels(
|
||||||
|
*, packages: tuple[dict[str, object], ...], destination: Path, python: str, index_url: str
|
||||||
|
) -> None:
|
||||||
|
requirements = [_python_requirement(item) for item in packages]
|
||||||
|
environment = dict(os.environ)
|
||||||
|
environment["PIP_INDEX_URL"] = _authenticated_url(index_url)
|
||||||
|
environment["PIP_EXTRA_INDEX_URL"] = ""
|
||||||
|
environment["PIP_CONFIG_FILE"] = os.devnull
|
||||||
|
environment["PIP_DISABLE_PIP_VERSION_CHECK"] = "1"
|
||||||
|
subprocess.run(
|
||||||
|
[python, "-m", "pip", "download", "--no-deps", "--only-binary=:all:", "--dest", str(destination), *requirements],
|
||||||
|
check=True,
|
||||||
|
env=environment,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _download_webui(
|
||||||
|
*, packages: tuple[dict[str, object], ...], destination: Path, npm: str, registry: str
|
||||||
|
) -> None:
|
||||||
|
environment = dict(os.environ)
|
||||||
|
npmrc: tempfile.NamedTemporaryFile[bytes] | None = None
|
||||||
|
token = os.environ.get("GOVOPLAN_PACKAGE_TOKEN", "")
|
||||||
|
if token:
|
||||||
|
parsed = urlsplit(registry)
|
||||||
|
auth_path = f"//{parsed.netloc}{parsed.path}:_authToken={token}\n"
|
||||||
|
npmrc = tempfile.NamedTemporaryFile(prefix="govoplan-npmrc-", delete=False)
|
||||||
|
npmrc.write(f"@govoplan:registry={registry}\n{auth_path}".encode("utf-8"))
|
||||||
|
npmrc.close()
|
||||||
|
os.chmod(npmrc.name, 0o600)
|
||||||
|
environment["NPM_CONFIG_USERCONFIG"] = npmrc.name
|
||||||
|
try:
|
||||||
|
for item in packages:
|
||||||
|
subprocess.run(
|
||||||
|
[npm, "pack", f"{item['name']}@{item['version']}", "--ignore-scripts", "--pack-destination", str(destination), "--registry", registry],
|
||||||
|
check=True,
|
||||||
|
env=environment,
|
||||||
|
)
|
||||||
|
finally:
|
||||||
|
if npmrc is not None:
|
||||||
|
Path(npmrc.name).unlink(missing_ok=True)
|
||||||
|
|
||||||
|
|
||||||
|
def _verify_wheels(packages: tuple[dict[str, object], ...], root: Path) -> list[dict[str, object]]:
|
||||||
|
expected = {_normalize(str(item["name"])): item for item in packages}
|
||||||
|
rows: list[dict[str, object]] = []
|
||||||
|
seen: set[str] = set()
|
||||||
|
for path in sorted(root.glob("*.whl")):
|
||||||
|
identity = _wheel_identity(path)
|
||||||
|
name = str(identity["name"])
|
||||||
|
package = expected.get(name)
|
||||||
|
if package is None or identity["version"] != package["version"] or name in seen:
|
||||||
|
raise PackageArtifactError(f"unexpected wheel artifact: {path.name}")
|
||||||
|
seen.add(name)
|
||||||
|
rows.append(_artifact_row(path, package))
|
||||||
|
if seen != set(expected):
|
||||||
|
raise PackageArtifactError("registry did not return every selected Python wheel")
|
||||||
|
return sorted(rows, key=lambda item: str(item["name"]))
|
||||||
|
|
||||||
|
|
||||||
|
def _verify_webui(packages: tuple[dict[str, object], ...], root: Path) -> list[dict[str, object]]:
|
||||||
|
expected = {str(item["name"]): item for item in packages}
|
||||||
|
rows: list[dict[str, object]] = []
|
||||||
|
seen: set[str] = set()
|
||||||
|
for path in sorted(root.glob("*.tgz")):
|
||||||
|
identity = _npm_identity(path)
|
||||||
|
name = str(identity["name"])
|
||||||
|
package = expected.get(name)
|
||||||
|
if package is None or identity["version"] != package["version"] or name in seen:
|
||||||
|
raise PackageArtifactError(f"unexpected WebUI artifact: {path.name}")
|
||||||
|
seen.add(name)
|
||||||
|
row = _artifact_row(path, package)
|
||||||
|
row["integrity"] = "sha512-" + base64.b64encode(hashlib.sha512(path.read_bytes()).digest()).decode("ascii")
|
||||||
|
rows.append(row)
|
||||||
|
if seen != set(expected):
|
||||||
|
raise PackageArtifactError("registry did not return every selected WebUI package")
|
||||||
|
return sorted(rows, key=lambda item: str(item["name"]))
|
||||||
|
|
||||||
|
|
||||||
|
def _wheel_identity(path: Path) -> dict[str, str]:
|
||||||
|
_bounded(path)
|
||||||
|
with zipfile.ZipFile(path) as archive:
|
||||||
|
metadata = [
|
||||||
|
item for item in archive.infolist()
|
||||||
|
if PurePosixPath(item.filename).name == "METADATA"
|
||||||
|
and PurePosixPath(item.filename).parent.name.endswith(".dist-info")
|
||||||
|
]
|
||||||
|
if len(metadata) != 1 or metadata[0].file_size > 1024 * 1024:
|
||||||
|
raise PackageArtifactError(f"wheel metadata is invalid: {path.name}")
|
||||||
|
parsed = BytesParser(policy=compat32).parsebytes(archive.read(metadata[0]))
|
||||||
|
name = _normalize(str(parsed.get("Name") or ""))
|
||||||
|
version = str(parsed.get("Version") or "")
|
||||||
|
if NAME.fullmatch(name) is None or VERSION.fullmatch(version) is None:
|
||||||
|
raise PackageArtifactError(f"wheel identity is invalid: {path.name}")
|
||||||
|
return {"name": name, "version": version}
|
||||||
|
|
||||||
|
|
||||||
|
def _npm_identity(path: Path) -> dict[str, str]:
|
||||||
|
_bounded(path)
|
||||||
|
with tarfile.open(path, mode="r:gz") as archive:
|
||||||
|
try:
|
||||||
|
member = archive.getmember("package/package.json")
|
||||||
|
except KeyError as exc:
|
||||||
|
raise PackageArtifactError(f"npm package metadata is missing: {path.name}") from exc
|
||||||
|
if not member.isfile() or member.size > 1024 * 1024:
|
||||||
|
raise PackageArtifactError(f"npm package metadata is invalid: {path.name}")
|
||||||
|
extracted = archive.extractfile(member)
|
||||||
|
if extracted is None:
|
||||||
|
raise PackageArtifactError(f"npm package metadata cannot be read: {path.name}")
|
||||||
|
value = json.load(extracted)
|
||||||
|
name = value.get("name")
|
||||||
|
version = value.get("version")
|
||||||
|
if not isinstance(name, str) or not name.startswith("@govoplan/") or not isinstance(version, str) or VERSION.fullmatch(version) is None:
|
||||||
|
raise PackageArtifactError(f"npm package identity is invalid: {path.name}")
|
||||||
|
return {"name": name, "version": version}
|
||||||
|
|
||||||
|
|
||||||
|
def _artifact_row(path: Path, package: dict[str, object]) -> dict[str, object]:
|
||||||
|
row = {
|
||||||
|
"name": package["name"],
|
||||||
|
"version": package["version"],
|
||||||
|
"repository": package["repository"],
|
||||||
|
"tag": package["tag"],
|
||||||
|
"commit": package["commit"],
|
||||||
|
"filename": path.name,
|
||||||
|
"sha256": hashlib.sha256(path.read_bytes()).hexdigest(),
|
||||||
|
"size": path.stat().st_size,
|
||||||
|
}
|
||||||
|
if "extras" in package:
|
||||||
|
row["extras"] = package["extras"]
|
||||||
|
return row
|
||||||
|
|
||||||
|
|
||||||
|
def _write_requirements(path: Path, rows: list[dict[str, object]]) -> None:
|
||||||
|
lines = ["--no-index", "--find-links ./local-wheels", "--require-hashes"]
|
||||||
|
for row in rows:
|
||||||
|
selected_extras = row.get("extras") or []
|
||||||
|
extras = (
|
||||||
|
f"[{','.join(str(value) for value in selected_extras)}]"
|
||||||
|
if selected_extras
|
||||||
|
else ""
|
||||||
|
)
|
||||||
|
lines.append(
|
||||||
|
f"{row['name']}{extras}=={row['version']} "
|
||||||
|
f"--hash=sha256:{row['sha256']}"
|
||||||
|
)
|
||||||
|
path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
path.write_text("\n".join(lines) + "\n", encoding="utf-8")
|
||||||
|
|
||||||
|
|
||||||
|
def _python_requirement(item: dict[str, object]) -> str:
|
||||||
|
extras = item.get("extras") or []
|
||||||
|
suffix = f"[{','.join(str(value) for value in extras)}]" if extras else ""
|
||||||
|
return f"{item['name']}{suffix}=={item['version']}"
|
||||||
|
|
||||||
|
|
||||||
|
def _authenticated_url(url: str) -> str:
|
||||||
|
token = os.environ.get("GOVOPLAN_PACKAGE_TOKEN", "")
|
||||||
|
username = os.environ.get("GOVOPLAN_PACKAGE_USERNAME", "")
|
||||||
|
if not token:
|
||||||
|
return url
|
||||||
|
if not username:
|
||||||
|
raise PackageArtifactError("GOVOPLAN_PACKAGE_USERNAME is required with a package token")
|
||||||
|
parsed = urlsplit(url)
|
||||||
|
return urlunsplit(
|
||||||
|
(
|
||||||
|
parsed.scheme,
|
||||||
|
f"{quote(username, safe='')}:{quote(token, safe='')}@{parsed.netloc}",
|
||||||
|
parsed.path,
|
||||||
|
parsed.query,
|
||||||
|
"",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _require_empty_destination(path: Path) -> None:
|
||||||
|
if path.exists() and (not path.is_dir() or any(path.iterdir())):
|
||||||
|
raise PackageArtifactError(f"output directory must be absent or empty: {path}")
|
||||||
|
if path.is_symlink():
|
||||||
|
raise PackageArtifactError(f"output directory must not be a symlink: {path}")
|
||||||
|
|
||||||
|
|
||||||
|
def _bounded(path: Path) -> None:
|
||||||
|
if path.is_symlink() or not path.is_file() or path.stat().st_size > MAX_ARTIFACT_BYTES:
|
||||||
|
raise PackageArtifactError(f"package artifact is invalid or too large: {path.name}")
|
||||||
|
|
||||||
|
|
||||||
|
def _normalize(value: str) -> str:
|
||||||
|
return re.sub(r"[-_.]+", "-", value.strip().lower())
|
||||||
|
|
||||||
|
|
||||||
|
def _canonical_sha256(value: object) -> str:
|
||||||
|
return hashlib.sha256(json.dumps(value, sort_keys=True, separators=(",", ":")).encode("utf-8")).hexdigest()
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
args = build_parser().parse_args()
|
||||||
|
try:
|
||||||
|
lock = resolve(args)
|
||||||
|
except (PackageArtifactError, OSError, ValueError, subprocess.CalledProcessError, zipfile.BadZipFile, tarfile.TarError) as exc:
|
||||||
|
print(f"error: {exc}", file=sys.stderr)
|
||||||
|
return 1
|
||||||
|
print(f"Resolved {len(lock['python'])} Python and {len(lock['webui'])} WebUI packages.")
|
||||||
|
print(f"Package artifact lock written to {args.lock_output}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Synchronize duplicated publish and development WebUI package contracts."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
|
SYNCHRONIZED_KEYS = ("peerDependencies", "peerDependenciesMeta")
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
parser.add_argument("--repo", type=Path, required=True)
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
root_path = args.repo / "package.json"
|
||||||
|
webui_path = args.repo / "webui" / "package.json"
|
||||||
|
if not root_path.exists() or not webui_path.exists():
|
||||||
|
return 0
|
||||||
|
|
||||||
|
root = _load(root_path)
|
||||||
|
webui = _load(webui_path)
|
||||||
|
root_name = root.get("name")
|
||||||
|
webui_name = webui.get("name")
|
||||||
|
if not isinstance(root_name, str) or root_name != webui_name:
|
||||||
|
return 0
|
||||||
|
|
||||||
|
changed = False
|
||||||
|
for key in SYNCHRONIZED_KEYS:
|
||||||
|
if key in webui:
|
||||||
|
value = webui[key]
|
||||||
|
if root.get(key) != value:
|
||||||
|
root[key] = value
|
||||||
|
changed = True
|
||||||
|
elif key in root:
|
||||||
|
del root[key]
|
||||||
|
changed = True
|
||||||
|
|
||||||
|
if changed:
|
||||||
|
root_path.write_text(json.dumps(root, indent=2) + "\n")
|
||||||
|
print(f"Synchronized WebUI peer metadata in {root_path}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
def _load(path: Path) -> dict[str, object]:
|
||||||
|
payload = json.loads(path.read_text())
|
||||||
|
if not isinstance(payload, dict):
|
||||||
|
raise SystemExit(f"package metadata must be an object: {path}")
|
||||||
|
return payload
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Install or verify the canonical package-release workflow in module repos."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
META_ROOT = Path(__file__).resolve().parents[2]
|
||||||
|
TEMPLATE = META_ROOT / "tools" / "repo" / "templates" / "module-package-release.yml"
|
||||||
|
DESTINATION = Path(".gitea/workflows/module-package-release.yml")
|
||||||
|
|
||||||
|
|
||||||
|
def build_parser() -> argparse.ArgumentParser:
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
mode = parser.add_mutually_exclusive_group(required=True)
|
||||||
|
mode.add_argument("--check", action="store_true")
|
||||||
|
mode.add_argument("--write", action="store_true")
|
||||||
|
parser.add_argument(
|
||||||
|
"--parent",
|
||||||
|
type=Path,
|
||||||
|
default=META_ROOT.parent,
|
||||||
|
help="Parent directory containing the repositories.",
|
||||||
|
)
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
|
def package_repositories(parent: Path) -> tuple[Path, ...]:
|
||||||
|
inventory = json.loads((META_ROOT / "repositories.json").read_text(encoding="utf-8"))
|
||||||
|
repositories: list[Path] = []
|
||||||
|
for item in inventory["repositories"]:
|
||||||
|
name = str(item["name"])
|
||||||
|
if not name.startswith("govoplan-"):
|
||||||
|
continue
|
||||||
|
repository = parent / str(item["path"])
|
||||||
|
if (repository / "pyproject.toml").is_file():
|
||||||
|
repositories.append(repository)
|
||||||
|
return tuple(sorted(repositories))
|
||||||
|
|
||||||
|
|
||||||
|
def synchronize(*, parent: Path, write: bool) -> tuple[str, ...]:
|
||||||
|
expected = TEMPLATE.read_bytes()
|
||||||
|
mismatches: list[str] = []
|
||||||
|
for repository in package_repositories(parent):
|
||||||
|
destination = repository / DESTINATION
|
||||||
|
current = destination.read_bytes() if destination.is_file() else None
|
||||||
|
if current == expected:
|
||||||
|
continue
|
||||||
|
mismatches.append(repository.name)
|
||||||
|
if write:
|
||||||
|
destination.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
temporary = destination.with_suffix(destination.suffix + ".tmp")
|
||||||
|
temporary.write_bytes(expected)
|
||||||
|
temporary.chmod(0o644)
|
||||||
|
temporary.replace(destination)
|
||||||
|
return tuple(mismatches)
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
args = build_parser().parse_args()
|
||||||
|
mismatches = synchronize(parent=args.parent.expanduser().resolve(), write=args.write)
|
||||||
|
if args.write:
|
||||||
|
print(f"Installed package-release workflow in {len(mismatches)} repositories.")
|
||||||
|
return 0
|
||||||
|
if mismatches:
|
||||||
|
print("Package-release workflow is missing or stale in:", file=sys.stderr)
|
||||||
|
for repository in mismatches:
|
||||||
|
print(f"- {repository}", file=sys.stderr)
|
||||||
|
return 1
|
||||||
|
print("Package-release workflows are synchronized.")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
@@ -0,0 +1,270 @@
|
|||||||
|
name: Module Package Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "v*"
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
release_tag:
|
||||||
|
description: Existing protected version tag to publish
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish-packages:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
GITEA_REPOSITORY: ${{ gitea.repository }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
|
||||||
|
with:
|
||||||
|
python-version: "3.12"
|
||||||
|
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
|
||||||
|
with:
|
||||||
|
node-version: "22"
|
||||||
|
- name: Select and validate protected release tag
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
REQUESTED_TAG: ${{ inputs.release_tag }}
|
||||||
|
TRIGGER_TAG: ${{ gitea.ref_name }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
tag="${REQUESTED_TAG:-$TRIGGER_TAG}"
|
||||||
|
case "$tag" in
|
||||||
|
v[0-9]*.[0-9]*.[0-9]*) ;;
|
||||||
|
*) echo "Release tag must start with a SemVer-shaped vX.Y.Z value" >&2; exit 1 ;;
|
||||||
|
esac
|
||||||
|
git fetch --force origin "refs/tags/$tag:refs/tags/$tag" refs/heads/main:refs/remotes/origin/main
|
||||||
|
tag_commit="$(git rev-list -n 1 "$tag")"
|
||||||
|
git merge-base --is-ancestor "$tag_commit" refs/remotes/origin/main || {
|
||||||
|
echo "Release tag is not contained in main" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
git checkout --detach "$tag"
|
||||||
|
printf 'RELEASE_TAG=%s\n' "$tag" >> "$GITEA_ENV"
|
||||||
|
printf 'SOURCE_DATE_EPOCH=%s\n' "$(git show -s --format=%ct HEAD)" >> "$GITEA_ENV"
|
||||||
|
- name: Validate package versions
|
||||||
|
run: |
|
||||||
|
python - <<'PY'
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import tomllib
|
||||||
|
|
||||||
|
tag = os.environ["RELEASE_TAG"]
|
||||||
|
expected = tag.removeprefix("v")
|
||||||
|
project = tomllib.loads(Path("pyproject.toml").read_text(encoding="utf-8"))["project"]
|
||||||
|
if project.get("version") != expected:
|
||||||
|
raise SystemExit(f"pyproject version {project.get('version')!r} does not match {tag}")
|
||||||
|
if re.fullmatch(r"govoplan-[a-z0-9-]+", str(project.get("name", ""))) is None:
|
||||||
|
raise SystemExit("Python distribution name must use the govoplan-* namespace")
|
||||||
|
webui = Path("webui/package.json")
|
||||||
|
if webui.is_file():
|
||||||
|
package = json.loads(webui.read_text(encoding="utf-8"))
|
||||||
|
if package.get("version") != expected:
|
||||||
|
raise SystemExit(f"WebUI version {package.get('version')!r} does not match {tag}")
|
||||||
|
if re.fullmatch(r"@govoplan/[a-z0-9-]+-webui", str(package.get("name", ""))) is None:
|
||||||
|
raise SystemExit("WebUI package name must use the @govoplan/*-webui namespace")
|
||||||
|
release = Path("webui/package.release.json")
|
||||||
|
if release.is_file():
|
||||||
|
release_package = json.loads(release.read_text(encoding="utf-8"))
|
||||||
|
if (
|
||||||
|
release_package.get("name") != package.get("name")
|
||||||
|
or release_package.get("version") != expected
|
||||||
|
):
|
||||||
|
raise SystemExit("WebUI release package identity does not match package.json and the release tag")
|
||||||
|
PY
|
||||||
|
- name: Build immutable package artifacts
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
python -m pip install --disable-pip-version-check build==1.5.0 twine==7.0.0
|
||||||
|
rm -rf dist .package-webui
|
||||||
|
python -m build --wheel --outdir dist
|
||||||
|
python -m twine check dist/*.whl
|
||||||
|
if [[ -f webui/package.json ]]; then
|
||||||
|
mkdir .package-webui
|
||||||
|
cp -a webui/. .package-webui/
|
||||||
|
rm -rf .package-webui/node_modules .package-webui/dist
|
||||||
|
if [[ -f .package-webui/package.release.json ]]; then
|
||||||
|
cp .package-webui/package.release.json .package-webui/package.json
|
||||||
|
fi
|
||||||
|
node <<'NODE'
|
||||||
|
const fs = require("node:fs");
|
||||||
|
const path = ".package-webui/package.json";
|
||||||
|
const packageJson = JSON.parse(fs.readFileSync(path, "utf8"));
|
||||||
|
const groups = ["dependencies", "optionalDependencies", "peerDependencies"];
|
||||||
|
for (const group of groups) {
|
||||||
|
for (const [name, specifier] of Object.entries(packageJson[group] || {})) {
|
||||||
|
if (!name.startsWith("@govoplan/")) continue;
|
||||||
|
if (typeof specifier !== "string") {
|
||||||
|
throw new Error(`${group}.${name} must use a string version`);
|
||||||
|
}
|
||||||
|
const packageSlug = name.slice("@govoplan/".length);
|
||||||
|
if (!packageSlug.endsWith("-webui")) {
|
||||||
|
throw new Error(`${group}.${name} is outside the WebUI package namespace`);
|
||||||
|
}
|
||||||
|
const repository = `govoplan-${packageSlug.slice(0, -"-webui".length)}`;
|
||||||
|
const escapedRepository = repository.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
||||||
|
const gitTag = specifier.match(
|
||||||
|
new RegExp(
|
||||||
|
`^git\\+(?:ssh://git@|https://)git\\.add-ideas\\.de/(?:GovOPlaN|add-ideas)/${escapedRepository}\\.git#v([0-9]+\\.[0-9]+\\.[0-9]+)$`,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
if (gitTag) {
|
||||||
|
packageJson[group][name] = gitTag[1];
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (specifier.startsWith("file:") || specifier.startsWith("git+")) {
|
||||||
|
throw new Error(
|
||||||
|
`${group}.${name} must resolve to an exact registry version for publication`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
delete packageJson.private;
|
||||||
|
fs.writeFileSync(path, `${JSON.stringify(packageJson, null, 2)}\n`);
|
||||||
|
NODE
|
||||||
|
npm pkg delete private --prefix .package-webui
|
||||||
|
(cd .package-webui && npm pack --ignore-scripts --pack-destination ../dist)
|
||||||
|
fi
|
||||||
|
python - <<'PY'
|
||||||
|
import hashlib
|
||||||
|
import json
|
||||||
|
from pathlib import Path
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
artifacts = []
|
||||||
|
for path in sorted(Path("dist").iterdir()):
|
||||||
|
if path.suffix not in {".whl", ".tgz"}:
|
||||||
|
continue
|
||||||
|
digest = hashlib.sha256(path.read_bytes()).hexdigest()
|
||||||
|
artifacts.append({"filename": path.name, "sha256": digest, "size": path.stat().st_size})
|
||||||
|
payload = {
|
||||||
|
"schema_version": "1",
|
||||||
|
"repository": os.environ["GITEA_REPOSITORY"],
|
||||||
|
"tag": os.environ["RELEASE_TAG"],
|
||||||
|
"commit": subprocess.check_output(["git", "rev-parse", "HEAD"], text=True).strip(),
|
||||||
|
"artifacts": artifacts,
|
||||||
|
}
|
||||||
|
Path("dist/package-artifacts.json").write_text(
|
||||||
|
json.dumps(payload, indent=2, sort_keys=True) + "\n",
|
||||||
|
encoding="utf-8",
|
||||||
|
)
|
||||||
|
PY
|
||||||
|
- name: Retain package hash evidence
|
||||||
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
|
||||||
|
with:
|
||||||
|
name: module-packages-${{ gitea.ref_name }}
|
||||||
|
path: dist/package-artifacts.json
|
||||||
|
- name: Check immutable registry state
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
PACKAGE_TOKEN: ${{ secrets.GOVOPLAN_PACKAGE_TOKEN }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
test -n "$PACKAGE_TOKEN"
|
||||||
|
python - <<'PY'
|
||||||
|
import hashlib
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
from pathlib import Path
|
||||||
|
import tomllib
|
||||||
|
from urllib.error import HTTPError
|
||||||
|
from urllib.parse import quote
|
||||||
|
from urllib.request import Request, urlopen
|
||||||
|
|
||||||
|
api_root = "https://git.add-ideas.de/api/v1/packages/GovOPlaN"
|
||||||
|
token = os.environ["PACKAGE_TOKEN"]
|
||||||
|
|
||||||
|
def should_publish(kind, name, version, path):
|
||||||
|
package_url = "/".join(
|
||||||
|
(api_root, kind, quote(name, safe=""), quote(version, safe=""), "files")
|
||||||
|
)
|
||||||
|
request = Request(
|
||||||
|
package_url,
|
||||||
|
headers={"Accept": "application/json", "Authorization": f"token {token}"},
|
||||||
|
)
|
||||||
|
try:
|
||||||
|
with urlopen(request, timeout=30) as response:
|
||||||
|
files = json.load(response)
|
||||||
|
except HTTPError as exc:
|
||||||
|
if exc.code == 404:
|
||||||
|
print(f"{kind} package {name}=={version} is not published yet")
|
||||||
|
return True
|
||||||
|
raise
|
||||||
|
if not isinstance(files, list) or len(files) != 1:
|
||||||
|
raise SystemExit(
|
||||||
|
f"immutable {kind} package {name}=={version} has an unexpected file set"
|
||||||
|
)
|
||||||
|
expected_sha256 = hashlib.sha256(path.read_bytes()).hexdigest()
|
||||||
|
if files[0].get("sha256") != expected_sha256:
|
||||||
|
raise SystemExit(
|
||||||
|
f"immutable {kind} package {name}=={version} already exists with a different SHA-256"
|
||||||
|
)
|
||||||
|
print(f"verified existing {kind} package {name}=={version} ({expected_sha256})")
|
||||||
|
return False
|
||||||
|
|
||||||
|
project = tomllib.loads(Path("pyproject.toml").read_text(encoding="utf-8"))["project"]
|
||||||
|
wheels = tuple(Path("dist").glob("*.whl"))
|
||||||
|
if len(wheels) != 1:
|
||||||
|
raise SystemExit("release build must contain exactly one wheel")
|
||||||
|
publish_pypi = should_publish(
|
||||||
|
"pypi", str(project["name"]), str(project["version"]), wheels[0]
|
||||||
|
)
|
||||||
|
|
||||||
|
tarballs = tuple(Path("dist").glob("*.tgz"))
|
||||||
|
if len(tarballs) > 1:
|
||||||
|
raise SystemExit("release build must contain at most one npm package")
|
||||||
|
publish_npm = False
|
||||||
|
if tarballs:
|
||||||
|
webui = json.loads(
|
||||||
|
Path(".package-webui/package.json").read_text(encoding="utf-8")
|
||||||
|
)
|
||||||
|
publish_npm = should_publish(
|
||||||
|
"npm", str(webui["name"]), str(webui["version"]), tarballs[0]
|
||||||
|
)
|
||||||
|
|
||||||
|
with Path(os.environ["GITEA_ENV"]).open("a", encoding="utf-8") as env_file:
|
||||||
|
env_file.write(f"PUBLISH_PYPI={int(publish_pypi)}\n")
|
||||||
|
env_file.write(f"PUBLISH_NPM={int(publish_npm)}\n")
|
||||||
|
PY
|
||||||
|
- name: Publish wheel and WebUI package
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
PACKAGE_USERNAME: ${{ secrets.GOVOPLAN_PACKAGE_USERNAME }}
|
||||||
|
PACKAGE_TOKEN: ${{ secrets.GOVOPLAN_PACKAGE_TOKEN }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
test -n "$PACKAGE_USERNAME"
|
||||||
|
test -n "$PACKAGE_TOKEN"
|
||||||
|
if [[ "$PUBLISH_PYPI" == 1 ]]; then
|
||||||
|
TWINE_USERNAME="$PACKAGE_USERNAME" TWINE_PASSWORD="$PACKAGE_TOKEN" \
|
||||||
|
python -m twine upload --non-interactive \
|
||||||
|
--repository-url https://git.add-ideas.de/api/packages/GovOPlaN/pypi \
|
||||||
|
dist/*.whl
|
||||||
|
else
|
||||||
|
echo "Exact wheel is already present; skipping immutable retry."
|
||||||
|
fi
|
||||||
|
shopt -s nullglob
|
||||||
|
webui_packages=(dist/*.tgz)
|
||||||
|
if (( ${#webui_packages[@]} )) && [[ "$PUBLISH_NPM" == 1 ]]; then
|
||||||
|
npmrc="$(mktemp)"
|
||||||
|
trap 'rm -f "$npmrc"' EXIT
|
||||||
|
chmod 600 "$npmrc"
|
||||||
|
printf '%s\n' \
|
||||||
|
'@govoplan:registry=https://git.add-ideas.de/api/packages/GovOPlaN/npm/' \
|
||||||
|
"//git.add-ideas.de/api/packages/GovOPlaN/npm/:_authToken=$PACKAGE_TOKEN" \
|
||||||
|
> "$npmrc"
|
||||||
|
NPM_CONFIG_USERCONFIG="$npmrc" npm publish "./${webui_packages[0]}" \
|
||||||
|
--ignore-scripts --access public \
|
||||||
|
--registry https://git.add-ideas.de/api/packages/GovOPlaN/npm/
|
||||||
|
elif (( ${#webui_packages[@]} )); then
|
||||||
|
echo "Exact WebUI package is already present; skipping immutable retry."
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user