Backend (FastAPI + SQLAlchemy + SQLite): - JWT auth with access/refresh tokens, bcrypt password hashing - User model with member/organizer/admin roles, auto-approve members - Championship, Registration, ParticipantList, Notification models - Alembic async migrations, seed data with test users - Registration endpoint returns tokens for members, pending for organizers - /registrations/my returns championship title/date/location via eager loading - Admin endpoints: list users, approve/reject organizers Mobile (React Native + Expo + TypeScript): - Zustand auth store, Axios client with token refresh interceptor - Role-based registration (Member vs Organizer) with contextual form labels - Tab navigation with Ionicons, safe area headers, admin tab for admin role - Championships list with status badges, detail screen with registration progress - My Registrations with championship title, progress bar, and tap-to-navigate - Admin panel with pending/all filter, approve/reject with confirmation - Profile screen with role badge, Ionicons info rows, sign out - Password visibility toggle (Ionicons), keyboard flow hints (returnKeyType) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
70 lines
2.2 KiB
Python
70 lines
2.2 KiB
Python
import uuid
|
|
|
|
from fastapi import APIRouter, Depends, HTTPException, Query, status
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.crud import crud_championship
|
|
from app.database import get_db
|
|
from app.dependencies import get_approved_user, get_organizer
|
|
from app.models.user import User
|
|
from app.schemas.championship import ChampionshipCreate, ChampionshipOut, ChampionshipUpdate
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("", response_model=list[ChampionshipOut])
|
|
async def list_championships(
|
|
status: str | None = Query(None),
|
|
skip: int = 0,
|
|
limit: int = 50,
|
|
_user: User = Depends(get_approved_user),
|
|
db: AsyncSession = Depends(get_db),
|
|
):
|
|
return await crud_championship.list_all(db, status=status, skip=skip, limit=limit)
|
|
|
|
|
|
@router.get("/{champ_id}", response_model=ChampionshipOut)
|
|
async def get_championship(
|
|
champ_id: uuid.UUID,
|
|
_user: User = Depends(get_approved_user),
|
|
db: AsyncSession = Depends(get_db),
|
|
):
|
|
champ = await crud_championship.get(db, champ_id)
|
|
if not champ:
|
|
raise HTTPException(status_code=404, detail="Championship not found")
|
|
return champ
|
|
|
|
|
|
@router.post("", response_model=ChampionshipOut, status_code=status.HTTP_201_CREATED)
|
|
async def create_championship(
|
|
data: ChampionshipCreate,
|
|
_user: User = Depends(get_organizer),
|
|
db: AsyncSession = Depends(get_db),
|
|
):
|
|
return await crud_championship.create(db, data)
|
|
|
|
|
|
@router.patch("/{champ_id}", response_model=ChampionshipOut)
|
|
async def update_championship(
|
|
champ_id: uuid.UUID,
|
|
data: ChampionshipUpdate,
|
|
_user: User = Depends(get_organizer),
|
|
db: AsyncSession = Depends(get_db),
|
|
):
|
|
champ = await crud_championship.get(db, champ_id)
|
|
if not champ:
|
|
raise HTTPException(status_code=404, detail="Championship not found")
|
|
return await crud_championship.update(db, champ, data)
|
|
|
|
|
|
@router.delete("/{champ_id}", status_code=status.HTTP_204_NO_CONTENT)
|
|
async def delete_championship(
|
|
champ_id: uuid.UUID,
|
|
_user: User = Depends(get_organizer),
|
|
db: AsyncSession = Depends(get_db),
|
|
):
|
|
champ = await crud_championship.get(db, champ_id)
|
|
if not champ:
|
|
raise HTTPException(status_code=404, detail="Championship not found")
|
|
await crud_championship.delete(db, champ)
|