Spaces:
Running on Zero
Running on Zero
File size: 8,569 Bytes
4cd8837 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | """Cross-community peering store and HTTP client (M14)."""
from __future__ import annotations
import json
import sqlite3
from pathlib import Path
from typing import Any
from hearthnet.federation.manifest import (
FederationManifest,
FederationProposal,
ManifestError,
_scope_from_dict,
_scope_to_dict,
co_sign_federation,
)
# ---------------------------------------------------------------------------
# Serialisation helpers
# ---------------------------------------------------------------------------
def _manifest_to_dict(m: FederationManifest) -> dict:
return {
"schema_version": m.schema_version,
"federation_id": m.federation_id,
"community_a_id": m.community_a_id,
"community_a_name": m.community_a_name,
"community_b_id": m.community_b_id,
"community_b_name": m.community_b_name,
"scope_a_to_b": _scope_to_dict(m.scope_a_to_b),
"scope_b_to_a": _scope_to_dict(m.scope_b_to_a),
"sig_a": m.sig_a,
"sig_b": m.sig_b,
"co_signers_a": m.co_signers_a,
"co_signers_b": m.co_signers_b,
"created_at": m.created_at,
"expires_at": m.expires_at,
"bootstrap_endpoints_a": m.bootstrap_endpoints_a,
"bootstrap_endpoints_b": m.bootstrap_endpoints_b,
}
def _manifest_from_dict(d: dict) -> FederationManifest:
return FederationManifest(
schema_version=int(d["schema_version"]),
federation_id=d["federation_id"],
community_a_id=d["community_a_id"],
community_a_name=d.get("community_a_name", ""),
community_b_id=d["community_b_id"],
community_b_name=d.get("community_b_name", ""),
scope_a_to_b=_scope_from_dict(d["scope_a_to_b"]),
scope_b_to_a=_scope_from_dict(d["scope_b_to_a"]),
sig_a=d.get("sig_a", ""),
sig_b=d.get("sig_b", ""),
co_signers_a=list(d.get("co_signers_a", [])),
co_signers_b=list(d.get("co_signers_b", [])),
created_at=int(d["created_at"]),
expires_at=int(d["expires_at"]),
bootstrap_endpoints_a=list(d.get("bootstrap_endpoints_a", [])),
bootstrap_endpoints_b=list(d.get("bootstrap_endpoints_b", [])),
)
def _proposal_to_dict(p: FederationProposal) -> dict:
return {
"community_a": p.community_a,
"community_b": p.community_b,
"scope_a": _scope_to_dict(p.scope_a),
"scope_b": _scope_to_dict(p.scope_b),
"bootstrap_a": p.bootstrap_a,
"bootstrap_b": p.bootstrap_b,
"proposed_at": p.proposed_at,
"proposer_sig": p.proposer_sig,
}
def _proposal_from_dict(d: dict) -> FederationProposal:
return FederationProposal(
community_a=d["community_a"],
community_b=d["community_b"],
scope_a=_scope_from_dict(d["scope_a"]),
scope_b=_scope_from_dict(d["scope_b"]),
bootstrap_a=list(d.get("bootstrap_a", [])),
bootstrap_b=list(d.get("bootstrap_b", [])),
proposed_at=int(d["proposed_at"]),
proposer_sig=d.get("proposer_sig", ""),
)
# ---------------------------------------------------------------------------
# FederationStore (SQLite)
# ---------------------------------------------------------------------------
_SCHEMA = """
CREATE TABLE IF NOT EXISTS federation_manifests (
federation_id TEXT PRIMARY KEY,
community_id TEXT NOT NULL,
manifest_json TEXT NOT NULL,
created_at INTEGER NOT NULL,
expires_at INTEGER NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_fed_community ON federation_manifests (community_id);
"""
class FederationStore:
"""SQLite-backed store for active federation manifests."""
def __init__(self, db_path: str | Path = ":memory:") -> None:
self._db_path = str(db_path)
self._conn = sqlite3.connect(self._db_path, check_same_thread=False)
self._conn.executescript(_SCHEMA)
self._conn.commit()
def close(self) -> None:
self._conn.close()
def add_manifest(self, m: FederationManifest) -> None:
"""Insert or replace a federation manifest."""
data = json.dumps(_manifest_to_dict(m))
with self._conn:
self._conn.execute(
"INSERT OR REPLACE INTO federation_manifests "
"(federation_id, community_id, manifest_json, created_at, expires_at) "
"VALUES (?, ?, ?, ?, ?)",
(m.federation_id, m.community_b_id, data, m.created_at, m.expires_at),
)
# Also index by community_a so lookups from either side work
self._conn.execute(
"INSERT OR REPLACE INTO federation_manifests "
"(federation_id, community_id, manifest_json, created_at, expires_at) "
"VALUES (?, ?, ?, ?, ?)",
(
m.federation_id + "_rev",
m.community_a_id,
data,
m.created_at,
m.expires_at,
),
)
def get_manifest(self, community_id: str) -> FederationManifest | None:
"""Return the most recent active manifest for a community, or None."""
import time
now = int(time.time())
row = self._conn.execute(
"SELECT manifest_json FROM federation_manifests "
"WHERE community_id = ? AND expires_at > ? "
"ORDER BY created_at DESC LIMIT 1",
(community_id, now),
).fetchone()
if row is None:
return None
return _manifest_from_dict(json.loads(row[0]))
def list_active(self) -> list[FederationManifest]:
"""Return all non-expired manifests (deduplicated by federation_id)."""
import time
now = int(time.time())
rows = self._conn.execute(
"SELECT DISTINCT manifest_json FROM federation_manifests WHERE expires_at > ?",
(now,),
).fetchall()
seen: set[str] = set()
result: list[FederationManifest] = []
for (row,) in rows:
m = _manifest_from_dict(json.loads(row))
if m.federation_id not in seen:
seen.add(m.federation_id)
result.append(m)
return result
def remove(self, federation_id: str) -> None:
"""Remove a federation manifest by its ID."""
with self._conn:
self._conn.execute(
"DELETE FROM federation_manifests WHERE federation_id = ? OR federation_id = ?",
(federation_id, federation_id + "_rev"),
)
# ---------------------------------------------------------------------------
# PeeringClient — HTTP handshake helpers
# ---------------------------------------------------------------------------
class PeeringClient:
"""HTTP client for cross-community federation handshake.
Uses the injected http_client which must implement .post(url, json=...) -> dict.
"""
def __init__(self, http_client: Any) -> None:
self._http = http_client
def propose(self, remote_url: str, proposal: FederationProposal) -> FederationProposal:
"""Send a federation proposal to a peer community.
Returns the peer's (possibly updated) proposal echo or raises ManifestError.
"""
endpoint = remote_url.rstrip("/") + "/federation/propose"
body = _proposal_to_dict(proposal)
try:
resp = self._http.post(endpoint, json=body)
except Exception as exc:
raise ManifestError(f"Peering propose failed: {exc}") from exc
if isinstance(resp, dict) and "error" in resp:
raise ManifestError(f"Remote rejected proposal: {resp['error']}")
return _proposal_from_dict(resp)
def co_sign(
self,
remote_url: str,
proposal: FederationProposal,
keypair: Any,
role: str,
) -> FederationManifest:
"""Co-sign a proposal and submit it to produce a finalized manifest."""
cosig = co_sign_federation(proposal, keypair, role)
endpoint = remote_url.rstrip("/") + "/federation/cosign"
body = {
"proposal": _proposal_to_dict(proposal),
"co_sig": cosig,
}
try:
resp = self._http.post(endpoint, json=body)
except Exception as exc:
raise ManifestError(f"Peering co-sign failed: {exc}") from exc
if isinstance(resp, dict) and "error" in resp:
raise ManifestError(f"Remote rejected co-sign: {resp['error']}")
return _manifest_from_dict(resp)
|