2026-07-23 10:09:12 +02:00
|
|
|
from fastapi import Depends, HTTPException, Request, status
|
2026-07-21 10:25:49 +02:00
|
|
|
from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer
|
|
|
|
|
from sqlalchemy import select
|
|
|
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
|
|
|
|
|
|
from app.auth.security import decode_access_token
|
|
|
|
|
from app.db.models import User
|
|
|
|
|
from app.db.session import get_session
|
|
|
|
|
|
|
|
|
|
_bearer = HTTPBearer()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def get_current_user(
|
|
|
|
|
credentials: HTTPAuthorizationCredentials = Depends(_bearer),
|
|
|
|
|
session: AsyncSession = Depends(get_session),
|
|
|
|
|
) -> User:
|
|
|
|
|
try:
|
|
|
|
|
user_id = decode_access_token(credentials.credentials)
|
|
|
|
|
except Exception as exc:
|
|
|
|
|
raise HTTPException(status.HTTP_401_UNAUTHORIZED, "invalid token") from exc
|
|
|
|
|
|
|
|
|
|
user = await session.scalar(select(User).where(User.id == user_id))
|
|
|
|
|
if user is None:
|
|
|
|
|
raise HTTPException(status.HTTP_401_UNAUTHORIZED, "user not found")
|
|
|
|
|
return user
|
2026-07-23 10:09:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
async def get_optional_user(
|
|
|
|
|
request: Request,
|
|
|
|
|
session: AsyncSession = Depends(get_session),
|
|
|
|
|
) -> User | None:
|
|
|
|
|
"""Like get_current_user, but for endpoints reachable both logged-out and
|
|
|
|
|
logged-in (e.g. /rounds/current) that need to personalize their response
|
|
|
|
|
*if* the caller happens to be authenticated, without requiring it."""
|
|
|
|
|
auth_header = request.headers.get("Authorization", "")
|
|
|
|
|
if not auth_header.startswith("Bearer "):
|
|
|
|
|
return None
|
|
|
|
|
try:
|
|
|
|
|
user_id = decode_access_token(auth_header.removeprefix("Bearer "))
|
|
|
|
|
except Exception:
|
|
|
|
|
return None
|
|
|
|
|
return await session.scalar(select(User).where(User.id == user_id))
|