Files
proxmox-api-simulator/app/contracts/source.py
T
Sergey Antropoff 777926487b Add a stateful Proxmox API console and broad handler coverage beyond the
initial QEMU slice, backed by imported contracts for majors 6–9.
- Implement durable handlers for access/auth, cluster, LXC, storage, HA,
  firewall, Ceph, SDN, ACME, notifications, pools, mapping, and node ops
- Serve an interactive Web UI with catalog browsing, demo seed controls,
  and OpenAPI/help surfaces
- Bundle PVE 6.4-15, 7.4-16, and 8.4.5 contract revisions alongside 9.2.3
- Support in-memory runtime contract Apply (POST /ui/api/contract/apply)
  so /version and /api2 routes follow the selected major until restart
- Expand seed profiles (including demo-cluster), migrations 007–008, TLS
  gateway config, Compose/Makefile tooling, and compatibility evidence
- Tighten .gitignore for macOS, hidden directories (.*/), and local secrets
2026-07-16 01:08:01 +03:00

155 lines
5.1 KiB
Python

"""Safe source adapters for Proxmox API Viewer artifacts."""
from __future__ import annotations
import json
from collections.abc import Mapping
from dataclasses import dataclass
from pathlib import Path
from typing import Any, Protocol, cast
class SourceError(ValueError):
"""Raised when an API source cannot be parsed safely."""
@dataclass(frozen=True, slots=True)
class ParseWarning:
"""A recoverable variation found in a source artifact."""
code: str
path: str
message: str
@dataclass(frozen=True, slots=True)
class ParsedSource:
"""Parsed source tree with non-fatal diagnostics."""
nodes: tuple[dict[str, Any], ...]
warnings: tuple[ParseWarning, ...] = ()
class SourceImporter(Protocol):
"""Asynchronous boundary for obtaining source artifact bytes."""
async def load(self) -> bytes: ...
@dataclass(frozen=True, slots=True)
class LocalFileImporter:
"""Load an artifact from a caller-selected local path."""
path: Path
async def load(self) -> bytes:
return self.path.read_bytes()
class ApiViewerParser:
"""Extract the JSON-compatible schema value without executing JS."""
declarations = (b"const apiSchema", b"var pveapi")
known_node_fields = frozenset({"children", "info", "leaf", "path", "text"})
def parse(self, raw: bytes) -> ParsedSource:
if not raw.strip():
raise SourceError("source artifact is empty")
payload = self._extract_payload(raw)
try:
decoded = json.loads(payload)
except (UnicodeDecodeError, json.JSONDecodeError) as exc:
raise SourceError(f"invalid apiSchema JSON: {exc}") from exc
if isinstance(decoded, Mapping):
raw_nodes = [decoded]
elif isinstance(decoded, list):
raw_nodes = decoded
else:
raise SourceError("apiSchema must be an object or array of objects")
nodes: list[dict[str, Any]] = []
warnings: list[ParseWarning] = []
for index, value in enumerate(raw_nodes):
if not isinstance(value, Mapping):
raise SourceError(f"apiSchema node /{index} must be an object")
node = cast(dict[str, Any], dict(value))
nodes.append(node)
self._inspect_node(node, f"/{index}", warnings)
return ParsedSource(tuple(nodes), tuple(warnings))
def _extract_payload(self, raw: bytes) -> bytes:
stripped = raw.strip()
if stripped.startswith((b"[", b"{")):
return stripped
for declaration in self.declarations:
declaration_at = raw.find(declaration)
if declaration_at < 0:
continue
equals_at = raw.find(b"=", declaration_at + len(declaration))
if equals_at < 0:
raise SourceError("apiSchema declaration has no assignment")
start = self._next_non_space(raw, equals_at + 1)
if start >= len(raw) or raw[start] not in b"[{":
raise SourceError("apiSchema assignment must start with an array or object")
end = self._matching_end(raw, start)
return raw[start : end + 1]
raise SourceError("apiSchema declaration was not found")
@staticmethod
def _next_non_space(raw: bytes, start: int) -> int:
while start < len(raw) and raw[start] in b" \t\r\n":
start += 1
return start
@staticmethod
def _matching_end(raw: bytes, start: int) -> int:
opening = raw[start]
closing = ord("]") if opening == ord("[") else ord("}")
depth = 0
in_string = False
escaped = False
for index in range(start, len(raw)):
byte = raw[index]
if in_string:
if escaped:
escaped = False
elif byte == ord("\\"):
escaped = True
elif byte == ord('"'):
in_string = False
continue
if byte == ord('"'):
in_string = True
elif byte == opening:
depth += 1
elif byte == closing:
depth -= 1
if depth == 0:
return index
raise SourceError("apiSchema assignment is truncated")
def _inspect_node(
self, node: Mapping[str, Any], path: str, warnings: list[ParseWarning]
) -> None:
for field in sorted(node.keys() - self.known_node_fields):
warnings.append(
ParseWarning("unknown-node-field", f"{path}/{field}", "field was preserved")
)
children = node.get("children", [])
if not isinstance(children, list):
warnings.append(
ParseWarning("invalid-children", f"{path}/children", "expected an array")
)
return
for index, child in enumerate(children):
child_path = f"{path}/children/{index}"
if isinstance(child, Mapping):
self._inspect_node(child, child_path, warnings)
else:
warnings.append(ParseWarning("invalid-child", child_path, "expected an object"))