Files
govoplan-learning/src/govoplan_learning/backend/manifest.py
T
zemion a8f6e972bf
Module Package Release / publish-packages (push) Successful in 10s
docs: complete public documentation baseline
2026-08-22 07:55:19 +02:00

125 lines
5.0 KiB
Python

from __future__ import annotations
from govoplan_core.core.access import CAPABILITY_AUTH_PERMISSION_EVALUATOR, CAPABILITY_AUTH_PRINCIPAL_RESOLVER
from govoplan_core.core.modules import DocumentationLink, DocumentationTopic, ModuleManifest, PermissionDefinition, RoleTemplate
from govoplan_core.core.provider_governance import declared_module_architecture
MODULE_ID = "learning"
MODULE_NAME = "Learning"
MODULE_VERSION = "0.1.19"
READ_SCOPE = "learning:workspace:read"
WRITE_SCOPE = "learning:workspace:write"
ADMIN_SCOPE = "learning:workspace:admin"
OPTIONAL_DEPENDENCIES = (
"booking",
"resources",
"certificates",
"calendar",
"files",
"portal",
"mail",
"notifications",
)
def _permission(scope: str, label: str, description: str) -> PermissionDefinition:
module_id, resource, action = scope.split(":", 2)
return PermissionDefinition(
scope=scope,
label=label,
description=description,
category="Learning",
level="tenant",
module_id=module_id,
resource=resource,
action=action,
)
PERMISSIONS = (
_permission(READ_SCOPE, "View learning workspace", "Read learning records, configuration, and workflow context."),
_permission(WRITE_SCOPE, "Manage learning workspace", "Create and update learning records and workflow state."),
_permission(ADMIN_SCOPE, "Administer learning workspace", "Configure learning policies, templates, and tenant-level administration."),
)
ROLE_TEMPLATES = (
RoleTemplate(
slug="learning_manager",
name="Learning manager",
description="Manage learning records and workflow state.",
permissions=(READ_SCOPE, WRITE_SCOPE),
),
RoleTemplate(
slug="learning_viewer",
name="Learning viewer",
description="Read learning records and workflow context.",
permissions=(READ_SCOPE,),
),
)
DOCUMENTATION = (
DocumentationTopic(
id=f"{MODULE_ID}.module-boundary",
title=f"{MODULE_NAME} module boundary",
summary="Course planning, course booking, participant lists, attendance, certificates, trainer allocation, rooms, materials, and evaluations for public-sector training.",
body=(
"This repository is currently a platform module seed. It registers the domain boundary, "
"permission surface, role templates, and documentation metadata before runtime APIs, "
"database models, migrations, and WebUI routes are introduced."
),
layer="available",
documentation_types=("admin", "user"),
audience=("user", "operator", "module_admin", "product_owner"),
translations={
"de": {
"title": "Modulgrenze von Learning",
"summary": "Kursplanung und -buchung, Teilnehmendenlisten, Anwesenheit, Zertifikate, Zuweisung von Lehrkräften, Räume, Materialien und Evaluationen für Fortbildungen im öffentlichen Dienst.",
"body": "Dieses Repository ist derzeit ein Grundgerüst für ein Plattformmodul. Es registriert die Fachgrenze, Berechtigungsoberfläche, Rollenvorlagen und Dokumentationsmetadaten, bevor Laufzeit-APIs, Datenbankmodelle, Migrationen und WebUI-Routen eingeführt werden.",
}
},
order=100,
related_modules=OPTIONAL_DEPENDENCIES,
links=(
DocumentationLink(
label="Repository domain boundary",
href="govoplan-learning/docs/LEARNING_DOMAIN_BOUNDARY.md",
kind="repository",
),
),
metadata={
"kind": "reference",
"seed": True,
"consequence_classes": {
"seed_boundary": "Declares ownership and permissions only; no runtime workflow is available yet.",
},
"domain_objects": ['course catalogue', 'course sessions', 'participant enrolment', 'attendance facts', 'trainer and material allocation', 'evaluation records'],
"first_slice": "Define course, session, participant, attendance, and certificate handoff concepts, then add tenant-local course administration.",
},
),
)
manifest = ModuleManifest(
id=MODULE_ID,
name=MODULE_NAME,
version=MODULE_VERSION,
dependencies=("access",),
optional_dependencies=OPTIONAL_DEPENDENCIES,
required_capabilities=(CAPABILITY_AUTH_PRINCIPAL_RESOLVER, CAPABILITY_AUTH_PERMISSION_EVALUATOR),
permissions=PERMISSIONS,
role_templates=ROLE_TEMPLATES,
documentation=DOCUMENTATION,
architecture=declared_module_architecture(
layer="domain_capability",
kind="domain",
maturity="scaffold",
documentation_ref="docs/LEARNING_DOMAIN_BOUNDARY.md",
known_limits=("Learning offers, enrollment, progress, and completion are not implemented yet.",),
owned_concepts=("learning offer", "enrollment", "completion"),
non_owned_concepts=("identity", "calendar event", "certificate"),
),
)
def get_manifest() -> ModuleManifest:
return manifest