from fastapi import APIRouter, Depends, HTTPException, Query from fastapi.responses import HTMLResponse from html import escape as _html_escape from pydantic import BaseModel, Field from sqlalchemy.orm import Session, joinedload from app.database import get_db from app.models import ( MealPlan, MealPlanItem, MealPlanVote, Recipe, FamilyProfile, FamilyMember, ApprovalToken, MealPlanStatus, MealPlanItemStatus, MealType, ApprovalTokenStatus ) from app.schemas import ( MealPlanResponse, MealPlanCreate, MealPlanItemResponse, VoteRequest, VoteResponse ) from app.security import require_session from app.services import approval as approval_service from uuid import UUID from typing import List, Optional from datetime import datetime, timedelta router = APIRouter() @router.get("", response_model=Optional[MealPlanResponse]) def get_planned_meals(db: Session = Depends(get_db)): profile = db.query(FamilyProfile).first() if not profile: raise HTTPException(status_code=404, detail="Family profile not found") meal_plan = db.query(MealPlan).filter( MealPlan.family_profile_id == profile.id ).order_by(MealPlan.week_start_date.desc()).first() if not meal_plan: return None return meal_plan @router.post("", response_model=MealPlanResponse, dependencies=[Depends(require_session)]) def create_meal_plan(meal_plan_data: MealPlanCreate, db: Session = Depends(get_db)): profile = db.query(FamilyProfile).first() if not profile: raise HTTPException(status_code=404, detail="Family profile not found") existing = db.query(MealPlan).filter( MealPlan.family_profile_id == profile.id, MealPlan.week_start_date == meal_plan_data.week_start_date ).first() if existing: raise HTTPException(status_code=400, detail="Meal plan for this week already exists") db_meal_plan = MealPlan( family_profile_id=profile.id, week_start_date=meal_plan_data.week_start_date, status=MealPlanStatus[meal_plan_data.status.value.upper()], approval_deadline=meal_plan_data.approval_deadline, notes=meal_plan_data.notes ) db.add(db_meal_plan) db.flush() for item_data in meal_plan_data.items: db_item = MealPlanItem( meal_plan_id=db_meal_plan.id, recipe_id=item_data.recipe_id, day_of_week=item_data.day_of_week, meal_type=MealType[item_data.meal_type.value.upper()], estimated_cost=item_data.estimated_cost ) db.add(db_item) db.commit() db.refresh(db_meal_plan) return db_meal_plan @router.get("/{meal_plan_id}", response_model=MealPlanResponse) def get_meal_plan(meal_plan_id: UUID, db: Session = Depends(get_db)): meal_plan = db.query(MealPlan).filter(MealPlan.id == meal_plan_id).first() if not meal_plan: raise HTTPException(status_code=404, detail="Meal plan not found") return meal_plan @router.post("/{meal_plan_id}/lock", dependencies=[Depends(require_session)]) def lock_meal_plan(meal_plan_id: UUID, db: Session = Depends(get_db)): meal_plan = db.query(MealPlan).filter(MealPlan.id == meal_plan_id).first() if not meal_plan: raise HTTPException(status_code=404, detail="Meal plan not found") meal_plan.status = MealPlanStatus.LOCKED db.commit() return {"message": "Meal plan locked", "status": meal_plan.status.value} _DAY_NAMES = { 1: "Monday", 2: "Tuesday", 3: "Wednesday", 4: "Thursday", 5: "Friday", 6: "Saturday", 7: "Sunday", } class VoteSubmission(BaseModel): """Body for POST /vote/{item_id}?token=... Spec body: {"vote": "approve" | "deny"}. """ vote: str = Field(..., pattern="^(approve|deny)$") @router.get("/vote/{item_id}", response_class=HTMLResponse) def get_vote_page( item_id: UUID, token: str = Query(..., description="Per-voter signed token"), db: Session = Depends(get_db), ): """Render the per-voter approval confirmation page. Verifies the signed token (no consume) and returns minimal accessible HTML with Approve / Deny buttons that POST to the same URL. """ payload = approval_service.verify_token(token) if str(payload.get("item")) != str(item_id): raise HTTPException(status_code=400, detail="Token not valid for this meal") voter = ( db.query(FamilyMember) .filter(FamilyMember.id == UUID(str(payload["voter"]))) .first() ) if not voter: raise HTTPException(status_code=404, detail="Voter not found") item = ( db.query(MealPlanItem) .options(joinedload(MealPlanItem.recipe)) .filter(MealPlanItem.id == item_id) .first() ) if not item: raise HTTPException(status_code=404, detail="Meal plan item not found") recipe_name = item.recipe.name if item.recipe else "Unnamed meal" day_name = _DAY_NAMES.get(int(item.day_of_week), str(item.day_of_week)) meal_type = item.meal_type.value if item.meal_type else "" # Token is included only inside the form action (href), never in the # visible body. POST is performed by JS so we can submit JSON without # leaving the page; non-JS users still get a usable form fallback. safe_voter = _html_escape(voter.name) safe_recipe = _html_escape(recipe_name) safe_day = _html_escape(day_name) safe_meal = _html_escape(meal_type) action_url = f"/api/meals/vote/{item_id}?token={_html_escape(token, quote=True)}" existing_vote = db.query(MealPlanVote).filter( MealPlanVote.meal_plan_item_id == item_id, MealPlanVote.family_member_id == voter.id, ).first() if existing_vote: already_voted_html = f""" Already Voted

Hi {safe_voter}, you already voted on this meal

{safe_recipe}
{safe_day} · {safe_meal}
Your vote has already been recorded. Thank you!
""" return HTMLResponse(content=already_voted_html, status_code=200) html = f""" Approve meal

Hi {safe_voter}, please vote on this meal

{safe_recipe}
{safe_day} · {safe_meal}
""" return HTMLResponse(content=html, status_code=200) @router.post("/vote/{item_id}") def submit_vote( item_id: UUID, submission: VoteSubmission, token: str = Query(..., description="Per-voter signed token"), db: Session = Depends(get_db), ): """Record a per-voter vote and apply the approval rule. - Single-use enforcement lives in `approval_service.consume_token`. - Approval rule: any deny -> item.denied; all-approve -> item.approved; otherwise pending (waiting on remaining voters). """ voter = approval_service.consume_token(db, token, item_id) item = db.query(MealPlanItem).filter(MealPlanItem.id == item_id).first() if not item: raise HTTPException(status_code=404, detail="Meal plan item not found") vote_bool = submission.vote == "approve" db.add(MealPlanVote( meal_plan_item_id=item_id, family_member_id=voter.id, vote=vote_bool, )) db.flush() # Approval rule: count electorate (all family members on this profile) # vs votes recorded so far. profile_id = item.meal_plan.family_profile_id electorate_ids = { m.id for m in db.query(FamilyMember) .filter(FamilyMember.family_profile_id == profile_id) .all() } votes = db.query(MealPlanVote).filter( MealPlanVote.meal_plan_item_id == item_id, ).all() if any(v.vote is False for v in votes): item.approval_status = MealPlanItemStatus.denied elif electorate_ids and {v.family_member_id for v in votes} >= electorate_ids: item.approval_status = MealPlanItemStatus.approved else: item.approval_status = MealPlanItemStatus.pending db.commit() return {"status": "recorded", "item_status": item.approval_status.value} @router.get("/items/{item_id}", response_model=MealPlanItemResponse) def get_meal_item(item_id: UUID, db: Session = Depends(get_db)): item = db.query(MealPlanItem).options(joinedload(MealPlanItem.recipe)).filter( MealPlanItem.id == item_id ).first() if not item: raise HTTPException(status_code=404, detail="Meal plan item not found") return item @router.post("/items/{item_id}/swap", dependencies=[Depends(require_session)]) def swap_meal_item(item_id: UUID, new_recipe_id: UUID, db: Session = Depends(get_db)): item = db.query(MealPlanItem).filter(MealPlanItem.id == item_id).first() if not item: raise HTTPException(status_code=404, detail="Meal plan item not found") new_recipe = db.query(Recipe).filter(Recipe.id == new_recipe_id).first() if not new_recipe: raise HTTPException(status_code=404, detail="New recipe not found") item.recipe_id = new_recipe_id item.approval_status = MealPlanItemStatus.pending item.denial_reason = None item.denial_details = None db.commit() return {"message": "Meal swapped", "item": item}