943acbc573
Durcit la convention de nommage des projets (dérive constatée : 'Sliding Automation', 'code_versioning'... au lieu des formes canoniques). - trilium_api.py : projets_canoniques() lit le référentiel = valeurs du label projet sur les notes de type=projet (source unique, pas de constante en dur). Note-projet CodeVersioning créée (manquait). - mcp_server.py : _valider_projet() branché dans les 6 tools de création (add_decision/history/backlog, new_conversation, create_entite, add_skill). Refuse un projet non canonique (suggestion si faute) ou inconnu (renvoi au processus de création de projet). Ne verrouille pas si référentiel illisible. - lint_audit.py : VAL-nommage aligné sur le référentiel (attrape casse, espace ET snake_case ; l'ancien 'contient un espace' ratait code_versioning). - Données : 79 notes ré-étiquetées vers les 3 formes canoniques. Quality by design : l'erreur de nommage devient impossible à l'écriture, le Lint n'est plus que le filet de sécurité.
66 lines
2.2 KiB
Python
66 lines
2.2 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from starlette._utils import is_async_callable
|
|
from starlette.concurrency import run_in_threadpool
|
|
from starlette.exceptions import HTTPException
|
|
from starlette.requests import Request
|
|
from starlette.types import ASGIApp, ExceptionHandler, Message, Receive, Scope, Send
|
|
from starlette.websockets import WebSocket
|
|
|
|
ExceptionHandlers = dict[Any, ExceptionHandler]
|
|
StatusHandlers = dict[int, ExceptionHandler]
|
|
|
|
|
|
def _lookup_exception_handler(exc_handlers: ExceptionHandlers, exc: Exception) -> ExceptionHandler | None:
|
|
for cls in type(exc).__mro__:
|
|
if cls in exc_handlers:
|
|
return exc_handlers[cls]
|
|
return None
|
|
|
|
|
|
def wrap_app_handling_exceptions(app: ASGIApp, conn: Request | WebSocket) -> ASGIApp:
|
|
exception_handlers: ExceptionHandlers
|
|
status_handlers: StatusHandlers
|
|
try:
|
|
exception_handlers, status_handlers = conn.scope["starlette.exception_handlers"]
|
|
except KeyError:
|
|
exception_handlers, status_handlers = {}, {}
|
|
|
|
async def wrapped_app(scope: Scope, receive: Receive, send: Send) -> None:
|
|
response_started = False
|
|
|
|
async def sender(message: Message) -> None:
|
|
nonlocal response_started
|
|
|
|
if message["type"] == "http.response.start":
|
|
response_started = True
|
|
await send(message)
|
|
|
|
try:
|
|
await app(scope, receive, sender)
|
|
except Exception as exc:
|
|
handler = None
|
|
|
|
if isinstance(exc, HTTPException):
|
|
handler = status_handlers.get(exc.status_code)
|
|
|
|
if handler is None:
|
|
handler = _lookup_exception_handler(exception_handlers, exc)
|
|
|
|
if handler is None:
|
|
raise exc
|
|
|
|
if response_started:
|
|
raise RuntimeError("Caught handled exception, but response already started.") from exc
|
|
|
|
if is_async_callable(handler):
|
|
response = await handler(conn, exc)
|
|
else:
|
|
response = await run_in_threadpool(handler, conn, exc)
|
|
if response is not None:
|
|
await response(scope, receive, sender)
|
|
|
|
return wrapped_app
|