Spaces:
Sleeping
Sleeping
File size: 11,776 Bytes
bda4716 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | from fastapi import APIRouter, HTTPException, status, Depends
from sqlmodel import Session, select, and_, func
from typing import List
from uuid import UUID
from datetime import datetime
from ..models.user import User
from ..models.task import Task, TaskCreate, TaskUpdate, TaskRead
from ..schemas.task import TaskListResponse
from ..database import get_session_dep
from ..utils.deps import get_current_user
router = APIRouter(prefix="/api/{user_id}/tasks", tags=["tasks"])
@router.get("/", response_model=TaskListResponse)
def list_tasks(
user_id: UUID,
current_user: User = Depends(get_current_user),
session: Session = Depends(get_session_dep),
completed: bool = None,
offset: int = 0,
limit: int = 50
):
"""List all tasks for the authenticated user with optional filtering."""
# Verify that the user_id in the URL matches the authenticated user
if current_user.id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
# Build the query with user_id filter
query = select(Task).where(Task.user_id == user_id)
# Apply completed filter if specified
if completed is not None:
query = query.where(Task.completed == completed)
# Apply ordering (newest first)
query = query.order_by(Task.created_at.desc())
# Apply pagination
query = query.offset(offset).limit(limit)
tasks = session.exec(query).all()
# Get total count for pagination info
total_query = select(func.count()).select_from(Task).where(Task.user_id == user_id)
if completed is not None:
total_query = total_query.where(Task.completed == completed)
total = session.exec(total_query).one()
# Convert to response format
task_responses = []
for task in tasks:
task_dict = {
"id": task.id,
"user_id": str(task.user_id),
"title": task.title,
"description": task.description,
"completed": task.completed,
"due_date": task.due_date.isoformat() if task.due_date else None,
"project_id": str(task.project_id) if task.project_id else None,
"created_at": task.created_at.isoformat(),
"updated_at": task.updated_at.isoformat()
}
task_responses.append(task_dict)
return TaskListResponse(
tasks=task_responses,
total=total,
offset=offset,
limit=limit
)
@router.post("/", response_model=TaskRead, status_code=status.HTTP_201_CREATED)
def create_task(
user_id: UUID,
task_data: TaskCreate,
current_user: User = Depends(get_current_user),
session: Session = Depends(get_session_dep)
):
"""Create a new task for the authenticated user."""
# Verify that the user_id in the URL matches the authenticated user
if current_user.id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="User not found"
)
# Validate title length
if len(task_data.title) < 1 or len(task_data.title) > 200:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Title must be between 1 and 200 characters"
)
# Validate description length if provided
if task_data.description and len(task_data.description) > 1000:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Description must be 1000 characters or less"
)
# Create new task
task = Task(
title=task_data.title,
description=task_data.description,
completed=task_data.completed,
due_date=task_data.due_date,
project_id=task_data.project_id,
user_id=user_id
)
session.add(task)
session.commit()
session.refresh(task)
return TaskRead(
id=task.id,
user_id=task.user_id,
title=task.title,
description=task.description,
completed=task.completed,
due_date=task.due_date,
project_id=task.project_id,
created_at=task.created_at,
updated_at=task.updated_at
)
@router.get("/{task_id}", response_model=TaskRead)
def get_task(
user_id: UUID,
task_id: int,
current_user: User = Depends(get_current_user),
session: Session = Depends(get_session_dep)
):
"""Get a specific task by ID for the authenticated user."""
# Verify that the user_id in the URL matches the authenticated user
if current_user.id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
# Get the task
task = session.get(Task, task_id)
# Verify the task exists and belongs to the user
if not task or task.user_id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
return TaskRead(
id=task.id,
user_id=task.user_id,
title=task.title,
description=task.description,
completed=task.completed,
due_date=task.due_date,
project_id=task.project_id,
created_at=task.created_at,
updated_at=task.updated_at
)
@router.put("/{task_id}", response_model=TaskRead)
def update_task(
user_id: UUID,
task_id: int,
task_data: TaskUpdate,
current_user: User = Depends(get_current_user),
session: Session = Depends(get_session_dep)
):
"""Update an existing task for the authenticated user."""
# Verify that the user_id in the URL matches the authenticated user
if current_user.id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
# Get the task
task = session.get(Task, task_id)
# Verify the task exists and belongs to the user
if not task or task.user_id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
# Update fields if provided
if task_data.title is not None:
if len(task_data.title) < 1 or len(task_data.title) > 200:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Title must be between 1 and 200 characters"
)
task.title = task_data.title
if task_data.description is not None:
if len(task_data.description) > 1000:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Description must be 1000 characters or less"
)
task.description = task_data.description
if task_data.completed is not None:
task.completed = task_data.completed
if task_data.due_date is not None:
task.due_date = task_data.due_date
if task_data.project_id is not None:
task.project_id = task_data.project_id
# Update the timestamp
task.updated_at = datetime.utcnow()
session.add(task)
session.commit()
session.refresh(task)
return TaskRead(
id=task.id,
user_id=task.user_id,
title=task.title,
description=task.description,
completed=task.completed,
due_date=task.due_date,
project_id=task.project_id,
created_at=task.created_at,
updated_at=task.updated_at
)
@router.patch("/{task_id}", response_model=TaskRead)
def patch_task(
user_id: UUID,
task_id: int,
task_data: TaskUpdate,
current_user: User = Depends(get_current_user),
session: Session = Depends(get_session_dep)
):
"""Partially update an existing task for the authenticated user."""
# Verify that the user_id in the URL matches the authenticated user
if current_user.id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
# Get the task
task = session.get(Task, task_id)
# Verify the task exists and belongs to the user
if not task or task.user_id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
# Update fields if provided
if task_data.title is not None:
if len(task_data.title) < 1 or len(task_data.title) > 200:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Title must be between 1 and 200 characters"
)
task.title = task_data.title
if task_data.description is not None:
if len(task_data.description) > 1000:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Description must be 1000 characters or less"
)
task.description = task_data.description
if task_data.completed is not None:
task.completed = task_data.completed
if task_data.due_date is not None:
task.due_date = task_data.due_date
if task_data.project_id is not None:
task.project_id = task_data.project_id
# Update the timestamp
task.updated_at = datetime.utcnow()
session.add(task)
session.commit()
session.refresh(task)
return TaskRead(
id=task.id,
user_id=task.user_id,
title=task.title,
description=task.description,
completed=task.completed,
due_date=task.due_date,
project_id=task.project_id,
created_at=task.created_at,
updated_at=task.updated_at
)
@router.delete("/{task_id}", status_code=status.HTTP_204_NO_CONTENT)
def delete_task(
user_id: UUID,
task_id: int,
current_user: User = Depends(get_current_user),
session: Session = Depends(get_session_dep)
):
"""Delete a task for the authenticated user."""
# Verify that the user_id in the URL matches the authenticated user
if current_user.id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
# Get the task
task = session.get(Task, task_id)
# Verify the task exists and belongs to the user
if not task or task.user_id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
session.delete(task)
session.commit()
# Return 204 No Content
return
@router.patch("/{task_id}/toggle", response_model=TaskRead)
def toggle_task_completion(
user_id: UUID,
task_id: int,
current_user: User = Depends(get_current_user),
session: Session = Depends(get_session_dep)
):
"""Toggle the completion status of a task."""
# Verify that the user_id in the URL matches the authenticated user
if current_user.id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
# Get the task
task = session.get(Task, task_id)
# Verify the task exists and belongs to the user
if not task or task.user_id != user_id:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Task not found"
)
# Toggle the completion status
task.completed = not task.completed
task.updated_at = datetime.utcnow()
session.add(task)
session.commit()
session.refresh(task)
return TaskRead(
id=task.id,
user_id=task.user_id,
title=task.title,
description=task.description,
completed=task.completed,
created_at=task.created_at,
updated_at=task.updated_at
) |