Files
app/scripts/tinyhouse/api.py
T
stroblmeandClaude Opus 5 4bdc0ea04a
Docs / docs (push) Canceled after 0s
Playwright Tests / test-playwright (1, 2) (push) Canceled after 0s
Playwright Tests / test-playwright (2, 2) (push) Canceled after 0s
pre-commit / pre-commit (push) Canceled after 0s
Test Backend / test-backend (push) Canceled after 0s
Compose Smoke Test / test-compose (push) Canceled after 0s
Playwright Tests / merge-reports (push) Canceled after 0s
Panels for a ten-inch screen, and a motor button that says where it is
Both screens the house is looked at on are 1280x800, so that is what the three
dashboards are laid out for: twelve columns of 96px, twelve rows of 51px, and
nothing past the bottom, because a panel does not scroll.

The motors are one control each instead of three buttons. A button could only
publish; a segmented control reads back as well — so the motor writes what it
is doing to the same message the control sets, and the segment that is held is
the direction it actually went. Up, Stop, Down for the shutters; Close/Open for
the window and In/Out for the awning, which is what those two are for.

A run stopped part way now leaves the position unknown rather than claiming the
target it never reached, so the next command in either direction moves it.

The preflight gained the two checks this needed. One runs each sample shape
past the port that would receive it. The other is arithmetic: every tile inside
the panel and none on top of another — both silent failures on a screen with no
scrollbar, and both caught before anything is written.

Sizes were settled by looking. A slider needs three rows or its tick labels
fall off; a status icon needs three or it loses the word under the glyph; a
gauge in two rows has no arc worth reading, so the battery is a bar on Home and
a gauge on Energy where there is height for one. A chart spends eighty pixels
on its chrome whatever it is given, so two of them read on this panel and three
did not — the temperature history is the one that went, and `history` still
answers for it.

`capture-panels.mjs` is how that was checked: the three panels at the screen's
own pixels, in both themes, reporting whether anything spilled.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-22 18:50:03 +02:00

169 lines
6.2 KiB
Python

"""Talking to the installation, and the constants this house is wired with.
Addresses, MAC addresses and the DMX map live in ``house.json`` at the
workspace root rather than in this package: they are this installation's
private data, so they are git-ignored the way the Node-RED inventory is.
"""
from __future__ import annotations
import json
import os
import sys
from pathlib import Path
from typing import Any
import httpx
from . import dashboards
API = os.environ.get("API_URL", "http://api.localhost")
EMAIL = os.environ.get("FIRST_SUPERUSER", "")
PASSWORD = os.environ.get("FIRST_SUPERUSER_PASSWORD", "")
HOUSE_FILE = Path(
os.environ.get("HOUSE_FILE", Path(__file__).resolve().parents[3] / "house.json")
)
def house() -> dict[str, Any]:
"""The wiring of this particular house."""
if not HOUSE_FILE.exists():
raise SystemExit(
f"No {HOUSE_FILE}. It holds this installation's addresses and DMX "
"map; copy the one from the workspace root or write it from "
"docs/private/node-red-transition.md."
)
data: dict[str, Any] = json.loads(HOUSE_FILE.read_text())
return data
class Api:
"""The REST API, logged in, raising on anything that is not a 2xx."""
def __init__(self) -> None:
if not EMAIL or not PASSWORD:
raise SystemExit("FIRST_SUPERUSER / FIRST_SUPERUSER_PASSWORD are unset.")
self.http = httpx.Client(base_url=f"{API}/api/v1", timeout=60)
answer = self.http.post(
"/login/access-token",
data={"username": EMAIL, "password": PASSWORD},
)
if answer.status_code != 200:
raise SystemExit(f"Could not log in to {API}: {answer.text}")
self.http.headers["Authorization"] = f"Bearer {answer.json()['access_token']}"
def __call__(self, method: str, path: str, body: Any = None) -> Any:
response = self.http.request(method, path, json=body)
response.raise_for_status()
return response.json() if response.content else None
def drop(self, path: str) -> None:
"""Delete something that may not be there."""
try:
self("DELETE", path)
except httpx.HTTPStatusError:
pass
# ── flows ────────────────────────────────────────────────────────────
def put_flow(self, flow: Flow) -> list[str]:
"""Create the flow, write its node code, publish it, leave it stopped.
Stopped is the only safe default here: publishing a flow that drives
the house would command every fixture it owns from whatever its inputs
happen to hold. Starting one is a decision someone makes while
watching.
"""
self.drop(f"/flows/{flow.name}")
self(
"PUT",
f"/flows/{flow.name}",
{
"name": flow.name,
"title": flow.title,
"nodes": flow.nodes,
"inputs": flow.inputs,
},
)
for node_id, code in flow.sources.items():
self("PUT", f"/flows/{flow.name}/nodes/{node_id}/source", {"code": code})
version = self("GET", f"/flows/{flow.name}")["definition"]["version"]
self("POST", f"/flows/{flow.name}/publish", {"version": version})
self("POST", f"/flows/{flow.name}/stop")
issues = self("POST", f"/flows/{flow.name}/validate")["issues"]
return [_issue_line(i) for i in issues]
def share(self, flow: str, node_id: str, lib_name: str) -> None:
"""Move a node's code into the library, if it is not there already."""
library = {node["name"] for node in self("GET", "/flows/library")}
if lib_name in library:
return
self("POST", f"/flows/{flow}/nodes/{node_id}/share", {"lib_name": lib_name})
# ── dashboards ───────────────────────────────────────────────────────
def put_dashboard(self, name: str, title: str, icon: str, widgets: list) -> None:
self.drop(f"/dashboards/{name}")
self("POST", f"/dashboards/{name}")
current = self("GET", f"/dashboards/{name}?draft=true")
self(
"PUT",
f"/dashboards/{name}",
{
**current,
"title": title,
"icon": icon,
"columns": dashboards.COLUMNS,
"canvas_width": dashboards.CANVAS[0],
"canvas_height": dashboards.CANVAS[1],
"pages": [
{
"id": "main",
"title": title,
"sections": [{"id": "main", "widgets": widgets}],
}
],
},
)
version = self("GET", f"/dashboards/{name}?draft=true")["version"]
self("POST", f"/dashboards/{name}/publish", {"version": version})
def _issue_line(issue: Any) -> str:
if isinstance(issue, dict):
return f"{issue.get('code')}: {issue.get('message')}"
return str(issue)
class Flow:
"""One flow's definition, assembled before it is sent."""
def __init__(self, name: str, title: str) -> None:
self.name = name
self.title = title
self.nodes: list[dict[str, Any]] = []
self.inputs: list[dict[str, Any]] = []
self.sources: dict[str, str] = {}
def add(self, node: dict[str, Any], source: str | None = None) -> dict[str, Any]:
self.nodes.append(node)
if source is not None:
self.sources[node["id"]] = source
return node
def input(self, name: str, dtype: str, initial: Any, **spec: Any) -> None:
self.inputs.append(
{"spec": {"name": name, "dtype": dtype, **spec}, "initial": initial}
)
def msg(self, name: str) -> str:
"""This flow's name for a message, as a dashboard widget spells it."""
return f"{self.name}.{name}"
def report(name: str, nodes: int, issues: list[str]) -> None:
print(f" {name}: {nodes} nodes, published, stopped")
for issue in issues:
print(f" ! {issue}", file=sys.stderr)