- Add max_total_min to RecipeRequest schema and TypeScript interface - Add _within_time() helper to recipe_engine using parse_time_effort() with graceful degradation (empty directions or no signals -> pass) - Wire max_total_min filter into suggest() loop after max_time_min - Add time_first_layout to allowed settings keys - Add timeFirstLayout ref to settings store (preserves sensoryPreferences) - Add maxTotalMin ref to recipes store, wired into _buildRequest() - Add time bucket selector UI (15/30/45/60/90 min) in RecipesView Find tab, gated by timeFirstLayout != 'normal' - Add time-first layout selector section in SettingsView - Add 5 _within_time unit tests and 2 settings key tests
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
"""User settings endpoints."""
|
|
from __future__ import annotations
|
|
|
|
from fastapi import APIRouter, Depends, HTTPException
|
|
from pydantic import BaseModel
|
|
|
|
from app.cloud_session import CloudUser, get_session
|
|
from app.db.session import get_store
|
|
from app.db.store import Store
|
|
|
|
router = APIRouter()
|
|
|
|
_ALLOWED_KEYS = frozenset({"cooking_equipment", "unit_system", "shopping_locale", "sensory_preferences", "time_first_layout"})
|
|
|
|
|
|
class SettingBody(BaseModel):
|
|
value: str
|
|
|
|
|
|
@router.get("/{key}")
|
|
async def get_setting(
|
|
key: str,
|
|
session: CloudUser = Depends(get_session),
|
|
store: Store = Depends(get_store),
|
|
) -> dict:
|
|
"""Return the stored value for a settings key."""
|
|
if key not in _ALLOWED_KEYS:
|
|
raise HTTPException(status_code=422, detail=f"Unknown settings key: '{key}'.")
|
|
value = store.get_setting(key)
|
|
if value is None:
|
|
raise HTTPException(status_code=404, detail=f"Setting '{key}' not found.")
|
|
return {"key": key, "value": value}
|
|
|
|
|
|
@router.put("/{key}")
|
|
async def set_setting(
|
|
key: str,
|
|
body: SettingBody,
|
|
session: CloudUser = Depends(get_session),
|
|
store: Store = Depends(get_store),
|
|
) -> dict:
|
|
"""Upsert a settings key-value pair."""
|
|
if key not in _ALLOWED_KEYS:
|
|
raise HTTPException(status_code=422, detail=f"Unknown settings key: '{key}'.")
|
|
store.set_setting(key, body.value)
|
|
return {"key": key, "value": body.value}
|