The Node-RED installation this replaces is 865 nodes across three tabs, and roughly a fifth of it is unreachable — the pellet stove's controller, the scene engine and the awning's logic were all disconnected from the heartbeat they ran on. What is here is the intent rather than the wiring: nineteen named flows, 109 nodes, and no heartbeat at all. A sensor value is the event. The device layer moves with it. `actor/*` and `light/*` were never a device interface — Node-RED subscribed to its own topics, stamped a DMX channel on each and encoded one Art-Net universe — so those topics retire with it and the encoders are five nodes in the `dmx` flow. Two shared library nodes carry what every actuator needs. `arbiter` answers the thing this design was missing: a value someone sets on a screen is not undone by the next evaluation. A manual value wins for a hold, the house takes over when it expires, and a schedule can force past both — so "off at two in the morning" still means off. The control binds to the message the arbiter writes back, so one tile shows what reached the fixture and setting it is the override. `motor` is why a stop is now commanded once. A rollershutter has no position sensor, so time is the only feedback: it says how long to run and a trigger sends the single STOP that ends it. The reference sent STOP forever. Everything is seeded stopped, the Art-Net node does not transmit and the heat pump does not accept commands until house.json says so. `--dry` checks the whole set without an installation: names nothing provides, loops, type disagreements, widgets bound to nothing, and every Python node run once on values of the shape it declared — including whether what it returns goes anywhere. That last one has already caught a typo that would have published into silence. house.json holds this installation's addresses, MAC addresses and DMX map and is git-ignored, as the Node-RED inventory is. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
167 lines
6.1 KiB
Python
167 lines
6.1 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
|
|
|
|
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": 16,
|
|
"canvas_width": 2560,
|
|
"canvas_height": 1600,
|
|
"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)
|