61 lines
1.7 KiB
Python
61 lines
1.7 KiB
Python
from fastapi import APIRouter, Depends, HTTPException
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app.api.schemas import PomodoroStart, PomodoroStop
|
|
from app.db.base import get_db
|
|
from app.pomodoro.service import PomodoroService
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
def _handle_value_error(exc: ValueError) -> HTTPException:
|
|
return HTTPException(status_code=400, detail=str(exc))
|
|
|
|
|
|
@router.get("/status")
|
|
def get_status(db: Session = Depends(get_db)) -> dict:
|
|
return PomodoroService(db).get_status()
|
|
|
|
|
|
@router.post("/start")
|
|
def start_pomodoro(payload: PomodoroStart, db: Session = Depends(get_db)) -> dict:
|
|
try:
|
|
return PomodoroService(db).start(
|
|
duration_min=payload.duration_min,
|
|
task_note=payload.task_note,
|
|
)
|
|
except ValueError as exc:
|
|
raise _handle_value_error(exc) from exc
|
|
|
|
|
|
@router.post("/pause")
|
|
def pause_pomodoro(db: Session = Depends(get_db)) -> dict:
|
|
try:
|
|
return PomodoroService(db).pause()
|
|
except ValueError as exc:
|
|
raise _handle_value_error(exc) from exc
|
|
|
|
|
|
@router.post("/resume")
|
|
def resume_pomodoro(db: Session = Depends(get_db)) -> dict:
|
|
try:
|
|
return PomodoroService(db).resume()
|
|
except ValueError as exc:
|
|
raise _handle_value_error(exc) from exc
|
|
|
|
|
|
@router.post("/stop")
|
|
def stop_pomodoro(payload: PomodoroStop, db: Session = Depends(get_db)) -> dict:
|
|
try:
|
|
return PomodoroService(db).stop(
|
|
result=payload.result,
|
|
completed=payload.completed,
|
|
)
|
|
except ValueError as exc:
|
|
raise _handle_value_error(exc) from exc
|
|
|
|
|
|
@router.get("/history")
|
|
def get_history(limit: int = 20, db: Session = Depends(get_db)) -> list[dict]:
|
|
return PomodoroService(db).history(limit=limit)
|