Bring admin UI, audit-log messages, code comments, and analyst-facing skill docs in line with the post-bootstrap CLI surface (`agnes pull`, `agnes push`, `agnes init`, `agnes snapshot create`). The legacy `_LEGACY_STRINGS` detection tuple in `app/api/claude_md.py` and the hook upgrade markers in `cli/lib/hooks.py` are intentionally left as-is — they exist precisely to flag pre-rewrite content for re-authoring. Strip "(folded from `da metrics list`)" / "(lifted from `da metrics show`)" / "Replaces the old `da analyst status`" docstring noise — the rename history is in CHANGELOG.md, not in module docstrings.
124 lines
4.9 KiB
Python
124 lines
4.9 KiB
Python
"""Shared CLI renderer for HTTP error responses.
|
|
|
|
Three CLI paths surface BigQuery / guardrail / RBAC typed errors today:
|
|
- ``agnes query --remote`` (POST /api/query)
|
|
- ``agnes query --register-bq`` (RemoteQueryEngine wrapping BqAccessError)
|
|
- ``agnes snapshot create`` / ``agnes schema`` etc. (cli.v2_client wrappers around v2 endpoints)
|
|
|
|
All three previously flattened the structured ``detail`` JSON to a
|
|
truncated single-line string, hiding the operator-facing hint that
|
|
explains how to fix ``USER_PROJECT_DENIED`` / cost-cap rejection /
|
|
unregistered ``bq.*`` paths. This module recognizes a few canonical
|
|
shapes and pretty-prints them; falls back to truncated form for
|
|
anything unrecognized so the renderer never makes a worse-than-
|
|
status-quo error message.
|
|
|
|
Closes #160 §4.7.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
from textwrap import fill
|
|
from typing import Any
|
|
|
|
|
|
# Keys that hold long human-readable text — wrap separately so the line
|
|
# break is at a word boundary, not mid-key.
|
|
_WRAP_KEYS = ("hint", "suggestion")
|
|
# Keys to render first in the key/value block (when present); other keys
|
|
# follow in declaration order so a future server-side detail addition
|
|
# surfaces automatically without a renderer change.
|
|
_PRIORITY_KEYS = ("kind", "reason", "path", "registered_as",
|
|
"billing_project", "data_project", "scan_bytes",
|
|
"limit_bytes", "tables", "current", "limit",
|
|
"retry_after_seconds")
|
|
|
|
|
|
def render_error(status_code: int, body: Any) -> str:
|
|
"""Format an HTTP error body for stderr.
|
|
|
|
Recognized shapes (pretty-printed):
|
|
- ``{"detail": {"kind": str, ...}}`` — typed BqAccessError
|
|
- ``{"detail": {"reason": str, ...}}`` — guardrail / RBAC dicts
|
|
Anything else: fallback ``f"HTTP {status_code}: {str(body)[:500]}"``.
|
|
"""
|
|
detail = _detail_dict(body)
|
|
if detail is not None and ("kind" in detail or "reason" in detail):
|
|
return _format_dict(status_code, detail)
|
|
if isinstance(body, dict) and isinstance(body.get("detail"), str):
|
|
return f"HTTP {status_code}: {body['detail']}"
|
|
text = str(body) if not isinstance(body, str) else body
|
|
if len(text) > 500:
|
|
text = text[:497] + "..."
|
|
return f"HTTP {status_code}: {text}"
|
|
|
|
|
|
def _detail_dict(body: Any) -> dict | None:
|
|
"""Return ``body['detail']`` when it's a dict, else None."""
|
|
if isinstance(body, dict):
|
|
d = body.get("detail")
|
|
if isinstance(d, dict):
|
|
return d
|
|
return None
|
|
|
|
|
|
def _format_dict(status_code: int, detail: dict) -> str:
|
|
"""Multi-line render of a recognized typed-error dict.
|
|
|
|
When both `kind` and `reason` are present (e.g. quota rejections at
|
|
`app/api/query.py` carry `{reason: "daily_byte_cap_exceeded",
|
|
kind: "daily_bytes", ...}`), the label line shows only one — the
|
|
other must still appear in the key/value section so its value isn't
|
|
silently dropped. Devin Review iter #4 caught this.
|
|
"""
|
|
label_key = "kind" if detail.get("kind") else ("reason" if detail.get("reason") else None)
|
|
label = detail.get(label_key) if label_key else "error"
|
|
lines: list[str] = [f"Error: {label} (HTTP {status_code})"]
|
|
|
|
# Only the key actually used in the label is hidden from the kv block.
|
|
seen: set[str] = {label_key} if label_key else set()
|
|
# Priority keys first. Filter only None — `_kv_line` already renders
|
|
# empty strings as `(empty)`, which is the key diagnostic for
|
|
# `billing_project: ""` in cross_project_forbidden errors. Earlier
|
|
# `not in (None, "")` filter dropped exactly the field the operator
|
|
# needs to see (Devin Review iter #6 on PR #168).
|
|
for key in _PRIORITY_KEYS:
|
|
if key in seen:
|
|
continue
|
|
if key in detail and detail[key] is not None:
|
|
lines.append(_kv_line(key, detail[key]))
|
|
seen.add(key)
|
|
|
|
# Anything else not already shown and not a wrap key
|
|
for key, value in detail.items():
|
|
if key in seen or key in _WRAP_KEYS:
|
|
continue
|
|
if value is not None:
|
|
lines.append(_kv_line(key, value))
|
|
seen.add(key)
|
|
|
|
# Wrap keys last — they're the long human-readable explanation
|
|
for key in _WRAP_KEYS:
|
|
if key in detail and detail[key]:
|
|
wrapped = fill(
|
|
str(detail[key]),
|
|
width=80,
|
|
initial_indent=f" {key}: ",
|
|
subsequent_indent=" ",
|
|
)
|
|
lines.append(wrapped)
|
|
return "\n".join(lines)
|
|
|
|
|
|
def _kv_line(key: str, value: Any) -> str:
|
|
"""Format one `` key: value`` line. Lists join with comma; dicts
|
|
json-encode (rare but defensive)."""
|
|
if isinstance(value, list):
|
|
rendered = ", ".join(str(v) for v in value) if value else "(empty)"
|
|
elif isinstance(value, dict):
|
|
rendered = json.dumps(value, default=str)
|
|
elif value == "":
|
|
rendered = "(empty)"
|
|
else:
|
|
rendered = str(value)
|
|
return f" {key}: {rendered}"
|