mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 15:43:06 +02:00
MealGate now composes gatelock.GateRoot + gatelock.LockWindow instead of inheriting the deleted _GateWindow/_GateRoot, and its HMAC signing goes through gatelock.log_integrity. This is the first of three migrations (diet_guard -> screen-locker -> wake_alarm) extracting the lock-window mechanics that diet_guard's own _GateWindow proved out into a shared, reusable package. Window-mechanics tests moved with the code; diet_guard's suite now only tests its own wiring (LockConfig choice, hook delegation). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01XCdT46zV8hESDvbgYMGDLt
269 lines
8.8 KiB
Python
269 lines
8.8 KiB
Python
"""HMAC-signed daily food log for diet_guard.
|
|
|
|
Each meal is stored as an individually HMAC-signed entry, reusing the shared
|
|
key at ``/etc/workout-locker/hmac.key`` -- the same key the screen locker uses
|
|
-- so the log is tamper-evident: editing the JSON to fake compliance
|
|
invalidates the signature. On a system without the shared key, entries are
|
|
written unsigned and still accepted on read, so the tool degrades gracefully
|
|
instead of silently losing the data it just wrote.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import datetime, timezone
|
|
import json
|
|
import logging
|
|
from typing import TYPE_CHECKING
|
|
|
|
from gatelock.log_integrity import (
|
|
compute_entry_hmac,
|
|
verify_entry_hmac,
|
|
)
|
|
|
|
from python_pkg.diet_guard._budget import daily_budget
|
|
from python_pkg.diet_guard._constants import BUDGET_WARN_FRACTION, FOOD_LOG_FILE
|
|
from python_pkg.shared.coerce import as_float
|
|
|
|
if TYPE_CHECKING:
|
|
from python_pkg.diet_guard._estimator import Nutrition
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
# On-disk shape: {"YYYY-MM-DD": [entry, entry, ...]}, newest entry last.
|
|
DayLog = dict[str, list[dict[str, object]]]
|
|
|
|
|
|
def now_local() -> datetime:
|
|
"""Return the current time as a timezone-aware local datetime."""
|
|
return datetime.now(tz=timezone.utc).astimezone()
|
|
|
|
|
|
def _today() -> str:
|
|
"""Return today's *local* date as ``YYYY-MM-DD``.
|
|
|
|
Local, not UTC: "what I ate today" is a local-calendar concept, and a meal
|
|
eaten late in the evening must not roll into tomorrow's budget.
|
|
"""
|
|
return now_local().date().isoformat()
|
|
|
|
|
|
def _entry_float(entry: dict[str, object], key: str) -> float:
|
|
"""Return ``entry[key]`` coerced to float (0.0 if missing/non-numeric).
|
|
|
|
``bool`` is rejected even though it subclasses ``int``: a boolean stored in
|
|
a calorie or macro field is meaningless and must not count as 1 gram.
|
|
|
|
Args:
|
|
entry: A stored log entry.
|
|
key: The numeric field name to read.
|
|
|
|
Returns:
|
|
The field as a float, or 0.0 when absent or not a real number.
|
|
"""
|
|
return as_float(entry.get(key))
|
|
|
|
|
|
def entry_kcal(entry: dict[str, object]) -> float:
|
|
"""Return an entry's calorie count as a float (0.0 if missing/invalid)."""
|
|
return _entry_float(entry, "kcal")
|
|
|
|
|
|
def _read_raw_log() -> DayLog:
|
|
"""Read the log file without verification (empty dict on any error)."""
|
|
if not FOOD_LOG_FILE.exists():
|
|
return {}
|
|
try:
|
|
with FOOD_LOG_FILE.open() as handle:
|
|
data = json.load(handle)
|
|
except (OSError, json.JSONDecodeError):
|
|
_logger.warning("Cannot read food log %s", FOOD_LOG_FILE)
|
|
return {}
|
|
if not isinstance(data, dict):
|
|
return {}
|
|
result: DayLog = {}
|
|
for key, value in data.items():
|
|
if isinstance(key, str) and isinstance(value, list):
|
|
result[key] = [item for item in value if isinstance(item, dict)]
|
|
return result
|
|
|
|
|
|
def _write_log(log: DayLog) -> None:
|
|
"""Persist the full log to disk, creating the data directory if needed."""
|
|
FOOD_LOG_FILE.parent.mkdir(parents=True, exist_ok=True)
|
|
with FOOD_LOG_FILE.open("w") as handle:
|
|
json.dump(log, handle, indent=2)
|
|
|
|
|
|
def _hmac_key_available() -> bool:
|
|
"""Return True if the shared HMAC key can be loaded for signing."""
|
|
return compute_entry_hmac({"_probe": True}) is not None
|
|
|
|
|
|
def _entry_is_valid(entry: dict[str, object]) -> bool:
|
|
"""Return True if an entry is untampered.
|
|
|
|
A signed entry must verify against the shared key. An unsigned entry is
|
|
accepted only when no key is available at all; an unsigned entry on a
|
|
system that *does* have a key means someone stripped the signature to
|
|
cheat, so it is rejected.
|
|
"""
|
|
if isinstance(entry.get("hmac"), str):
|
|
return verify_entry_hmac(entry)
|
|
return not _hmac_key_available()
|
|
|
|
|
|
def log_meal(
|
|
description: str,
|
|
nutrition: Nutrition,
|
|
slot: int | None = None,
|
|
) -> dict[str, object]:
|
|
"""Append a signed entry for ``description`` to today's log.
|
|
|
|
Args:
|
|
description: The user's free-text meal description.
|
|
nutrition: Estimated nutrition for the portion eaten.
|
|
slot: The meal-slot hour this entry satisfies (e.g. ``12`` for the
|
|
12:00 checkpoint). When None the entry still counts toward the
|
|
day's calories but does not mark any slot as logged.
|
|
|
|
Returns:
|
|
The stored entry dict (carrying an ``hmac`` field when a key exists).
|
|
"""
|
|
entry: dict[str, object] = {
|
|
"time": now_local().isoformat(timespec="seconds"),
|
|
"desc": description,
|
|
"grams": nutrition.grams,
|
|
"kcal": nutrition.kcal,
|
|
"protein_g": nutrition.protein_g,
|
|
"carbs_g": nutrition.carbs_g,
|
|
"fat_g": nutrition.fat_g,
|
|
"source": nutrition.source,
|
|
}
|
|
if slot is not None:
|
|
entry["slot"] = slot
|
|
signature = compute_entry_hmac(entry)
|
|
if signature is not None:
|
|
entry["hmac"] = signature
|
|
else:
|
|
_logger.warning("HMAC key unavailable - logging unsigned entry")
|
|
|
|
log = _read_raw_log()
|
|
log.setdefault(_today(), []).append(entry)
|
|
_write_log(log)
|
|
return entry
|
|
|
|
|
|
def load_log() -> DayLog:
|
|
"""Return the log with only valid (untampered) entries retained."""
|
|
raw = _read_raw_log()
|
|
verified: DayLog = {}
|
|
for day, entries in raw.items():
|
|
kept = [entry for entry in entries if _entry_is_valid(entry)]
|
|
if kept:
|
|
verified[day] = kept
|
|
return verified
|
|
|
|
|
|
def today_entries() -> list[dict[str, object]]:
|
|
"""Return today's valid log entries (possibly empty)."""
|
|
return load_log().get(_today(), [])
|
|
|
|
|
|
def today_total_kcal() -> float:
|
|
"""Return total kcal logged today across valid entries."""
|
|
total = sum(entry_kcal(entry) for entry in today_entries())
|
|
return round(total, 1)
|
|
|
|
|
|
def today_total_macros() -> tuple[float, float, float]:
|
|
"""Return today's total ``(protein_g, carbs_g, fat_g)`` across valid entries.
|
|
|
|
Returned as a fixed ``(protein, carbs, fat)`` triple so callers (the gate
|
|
dashboard, the CLI status) can show how the day's macros are stacking up
|
|
next to the calorie total.
|
|
|
|
Returns:
|
|
The summed protein, carbohydrate, and fat grams, each rounded to 0.1 g.
|
|
"""
|
|
entries = today_entries()
|
|
protein = sum(_entry_float(entry, "protein_g") for entry in entries)
|
|
carbs = sum(_entry_float(entry, "carbs_g") for entry in entries)
|
|
fat = sum(_entry_float(entry, "fat_g") for entry in entries)
|
|
return round(protein, 1), round(carbs, 1), round(fat, 1)
|
|
|
|
|
|
def logged_slots_today() -> set[int]:
|
|
"""Return the set of meal-slot hours already covered by today's log.
|
|
|
|
Only valid (HMAC-verified) entries count, so stripping entries to dodge a
|
|
checkpoint makes that slot reappear as unsatisfied -- the fail-closed
|
|
direction. An entry without a ``slot`` field (e.g. a snack logged with no
|
|
checkpoint) contributes calories but satisfies no slot.
|
|
|
|
Returns:
|
|
The distinct integer slot hours logged today (possibly empty).
|
|
"""
|
|
slots: set[int] = set()
|
|
for entry in today_entries():
|
|
value = entry.get("slot")
|
|
if isinstance(value, int) and not isinstance(value, bool):
|
|
slots.add(value)
|
|
return slots
|
|
|
|
|
|
def remaining_budget() -> float:
|
|
"""Return kcal remaining against the sealed budget (may be negative).
|
|
|
|
Raises:
|
|
BudgetError: If the budget is uninitialized or its seal is broken;
|
|
the caller decides whether to guide the user or fail closed.
|
|
"""
|
|
return round(daily_budget() - today_total_kcal(), 1)
|
|
|
|
|
|
def consumption_band() -> str:
|
|
"""Return a qualitative band for today's intake, never revealing the budget.
|
|
|
|
Mirrors how the focus daemon surfaces "at home?" rather than the raw
|
|
coordinates: the caller learns whether to worry, not the number behind the
|
|
threshold. The threshold still leaks by boundary-probing (watch the label
|
|
flip), so this hides the anchor, it does not make the budget unrecoverable.
|
|
|
|
Returns:
|
|
``"OVER BUDGET"``, ``"approaching limit"``, or ``"on track"``.
|
|
|
|
Raises:
|
|
BudgetError: Propagated from :func:`daily_budget` for the caller to
|
|
translate into guidance.
|
|
"""
|
|
budget = daily_budget()
|
|
consumed = today_total_kcal()
|
|
if consumed >= budget:
|
|
return "OVER BUDGET"
|
|
if consumed >= budget * BUDGET_WARN_FRACTION:
|
|
return "approaching limit"
|
|
return "on track"
|
|
|
|
|
|
def undo_last_today() -> dict[str, object] | None:
|
|
"""Remove and return today's most recently logged entry, if any.
|
|
|
|
Operates on the raw log so a mistaken entry can always be removed, even one
|
|
that would not pass verification.
|
|
|
|
Returns:
|
|
The removed entry, or None if nothing was logged today.
|
|
"""
|
|
log = _read_raw_log()
|
|
today = _today()
|
|
entries = log.get(today)
|
|
if not entries:
|
|
return None
|
|
removed = entries.pop()
|
|
if entries:
|
|
log[today] = entries
|
|
else:
|
|
del log[today]
|
|
_write_log(log)
|
|
return removed
|