
- Create Todo model and schemas - Set up API endpoints for CRUD operations - Configure SQLAlchemy for database access - Set up Alembic for database migrations - Add Ruff for code linting - Update README with project documentation
101 lines
2.2 KiB
Python
101 lines
2.2 KiB
Python
"""
|
|
Todo API endpoints.
|
|
"""
|
|
from typing import Any, List, Optional
|
|
|
|
from fastapi import APIRouter, Depends, HTTPException, status
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app import crud
|
|
from app.db.session import get_db
|
|
from app.schemas.todo import Todo, TodoCreate, TodoUpdate
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/", response_model=List[Todo])
|
|
def read_todos(
|
|
db: Session = Depends(get_db),
|
|
skip: int = 0,
|
|
limit: int = 100,
|
|
completed: Optional[bool] = None,
|
|
) -> Any:
|
|
"""
|
|
Retrieve todos.
|
|
"""
|
|
todos = crud.todo.get_todos(db, skip=skip, limit=limit, completed=completed)
|
|
return todos
|
|
|
|
|
|
@router.post("/", response_model=Todo, status_code=status.HTTP_201_CREATED)
|
|
def create_todo(
|
|
*,
|
|
db: Session = Depends(get_db),
|
|
todo_in: TodoCreate,
|
|
) -> Any:
|
|
"""
|
|
Create new todo.
|
|
"""
|
|
todo = crud.todo.create_todo(db=db, todo=todo_in)
|
|
return todo
|
|
|
|
|
|
@router.get("/{todo_id}", response_model=Todo)
|
|
def read_todo(
|
|
*,
|
|
db: Session = Depends(get_db),
|
|
todo_id: int,
|
|
) -> Any:
|
|
"""
|
|
Get todo by ID.
|
|
"""
|
|
todo = crud.todo.get_todo(db=db, todo_id=todo_id)
|
|
if not todo:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_404_NOT_FOUND,
|
|
detail="Todo not found",
|
|
)
|
|
return todo
|
|
|
|
|
|
@router.put("/{todo_id}", response_model=Todo)
|
|
def update_todo(
|
|
*,
|
|
db: Session = Depends(get_db),
|
|
todo_id: int,
|
|
todo_in: TodoUpdate,
|
|
) -> Any:
|
|
"""
|
|
Update a todo.
|
|
"""
|
|
todo = crud.todo.get_todo(db=db, todo_id=todo_id)
|
|
if not todo:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_404_NOT_FOUND,
|
|
detail="Todo not found",
|
|
)
|
|
todo = crud.todo.update_todo(db=db, todo_id=todo_id, todo_update=todo_in)
|
|
return todo
|
|
|
|
|
|
@router.delete(
|
|
"/{todo_id}",
|
|
status_code=status.HTTP_204_NO_CONTENT,
|
|
response_model=None
|
|
)
|
|
def delete_todo(
|
|
*,
|
|
db: Session = Depends(get_db),
|
|
todo_id: int,
|
|
) -> None:
|
|
"""
|
|
Delete a todo.
|
|
"""
|
|
todo = crud.todo.get_todo(db=db, todo_id=todo_id)
|
|
if not todo:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_404_NOT_FOUND,
|
|
detail="Todo not found",
|
|
)
|
|
crud.todo.delete_todo(db=db, todo_id=todo_id)
|
|
return None |