
- Set up project structure with FastAPI app - Create SQLite database models with SQLAlchemy - Set up Alembic migrations - Implement CRUD endpoints for todo items - Add health check endpoint - Update README with setup instructions generated with BackendIM... (backend.im)
59 lines
1.8 KiB
Python
59 lines
1.8 KiB
Python
from fastapi import APIRouter, Depends, HTTPException, status
|
|
from sqlalchemy.orm import Session
|
|
from typing import List
|
|
|
|
from app.crud import todo as todo_crud
|
|
from app.schemas.todo import TodoCreate, TodoResponse, TodoUpdate
|
|
from app.db.database import get_db
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/", response_model=List[TodoResponse])
|
|
def read_todos(skip: int = 0, limit: int = 100, db: Session = Depends(get_db)):
|
|
"""
|
|
Retrieve todos.
|
|
"""
|
|
todos = todo_crud.get_todos(db, skip=skip, limit=limit)
|
|
return todos
|
|
|
|
|
|
@router.post("/", response_model=TodoResponse, status_code=status.HTTP_201_CREATED)
|
|
def create_todo(todo: TodoCreate, db: Session = Depends(get_db)):
|
|
"""
|
|
Create new todo.
|
|
"""
|
|
return todo_crud.create_todo(db=db, todo=todo)
|
|
|
|
|
|
@router.get("/{todo_id}", response_model=TodoResponse)
|
|
def read_todo(todo_id: int, db: Session = Depends(get_db)):
|
|
"""
|
|
Retrieve a specific todo by ID.
|
|
"""
|
|
db_todo = todo_crud.get_todo(db, todo_id=todo_id)
|
|
if db_todo is None:
|
|
raise HTTPException(status_code=404, detail="Todo not found")
|
|
return db_todo
|
|
|
|
|
|
@router.patch("/{todo_id}", response_model=TodoResponse)
|
|
def update_todo(todo_id: int, todo: TodoUpdate, db: Session = Depends(get_db)):
|
|
"""
|
|
Update a todo.
|
|
"""
|
|
db_todo = todo_crud.update_todo(db, todo_id=todo_id, todo=todo)
|
|
if db_todo is None:
|
|
raise HTTPException(status_code=404, detail="Todo not found")
|
|
return db_todo
|
|
|
|
|
|
@router.delete("/{todo_id}", status_code=status.HTTP_204_NO_CONTENT)
|
|
def delete_todo(todo_id: int, db: Session = Depends(get_db)):
|
|
"""
|
|
Delete a todo.
|
|
"""
|
|
deleted = todo_crud.delete_todo(db, todo_id=todo_id)
|
|
if not deleted:
|
|
raise HTTPException(status_code=404, detail="Todo not found")
|
|
return None |