feat: configs

This commit is contained in:
2026-04-06 20:28:03 +02:00
parent 2994735f3b
commit d8abe311cd
4 changed files with 72 additions and 9 deletions

View File

@@ -26,7 +26,21 @@ log = logging.getLogger("browse")
_nodes: dict[str, dict] = {} # hash_hex -> node info
_own_hash: str | None = None
_own_name: str = os.environ.get("NOMADNET_NODE_NAME", "Micronomicon")
def _own_name() -> str:
"""Read node name from NomadNet config, falling back to env/default."""
try:
path = _CONFIG_PATHS["nomadnet"]()
if path.exists():
for line in path.read_text(encoding="utf-8").splitlines():
stripped = line.strip()
if stripped.startswith("node_name"):
_, _, val = stripped.partition("=")
val = val.strip()
if val:
return val
except Exception:
pass
return os.environ.get("NOMADNET_NODE_NAME", "Micronomicon")
_lock = threading.Lock()
_started = False
_subscribers: list[asyncio.Queue] = []
@@ -79,7 +93,7 @@ class _AnnounceHandler:
except Exception:
pass
is_self = name == _own_name
is_self = name == _own_name()
# Determine which interface this announce arrived on
iface_name = None
@@ -183,6 +197,7 @@ def start_browser() -> None:
_CONFIG_PATHS = {
"reticulum": lambda: Path(os.environ.get("RNS_SERVER_CONFIG_DIR", os.environ.get("RNS_CONFIG_DIR", str(Path.home() / ".reticulum")))) / "config",
"reticulum-client": lambda: Path(os.environ.get("RNS_CONFIG_DIR", str(Path.home() / ".reticulum"))) / "config",
"nomadnet": lambda: Path(os.environ.get("NOMADNET_CONFIG_DIR", str(Path.home() / ".nomadnetwork"))) / "config",
}
@@ -225,7 +240,7 @@ def _build_snapshot() -> list[dict]:
if not any(n["is_self"] for n in nodes):
nodes.insert(0, {
"hash": _own_hash or "self",
"name": _own_name,
"name": _own_name(),
"last_seen": time.time(),
"is_self": True,
"type": "node",
@@ -406,6 +421,22 @@ async def _request_remote_page(hash_hex: str, path: str) -> str | None:
# Reticulum config endpoints
# ---------------------------------------------------------------------------
@router.get("/browse/identity")
async def get_identity():
"""Return the node's RNS identity hash and configured name."""
identity_hash = None
try:
import RNS
if _reticulum and RNS.Transport.identity:
identity_hash = RNS.hexrep(RNS.Transport.identity.hash, delimit=False)
except Exception:
pass
return {
"name": _own_name(),
"hash": _own_hash or identity_hash,
}
@router.post("/browse/restart")
async def restart_services():
"""Restart NomadNet to apply config changes."""