mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-04-04 04:46:53 +00:00
* refactor(auth): consolidate PUBLIC_MODE and mutation guards into reusable helpers * fix: fix websocket test override
163 lines
5.0 KiB
Python
163 lines
5.0 KiB
Python
from typing import TYPE_CHECKING, Annotated, List, Optional
|
|
|
|
from fastapi import Depends, HTTPException
|
|
|
|
if TYPE_CHECKING:
|
|
from fastapi import WebSocket
|
|
import jwt
|
|
from fastapi.security import APIKeyHeader, OAuth2PasswordBearer
|
|
from pydantic import BaseModel
|
|
|
|
from reflector.db.user_api_keys import user_api_keys_controller
|
|
from reflector.db.users import user_controller
|
|
from reflector.logger import logger
|
|
from reflector.settings import settings
|
|
from reflector.utils import generate_uuid4
|
|
|
|
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token", auto_error=False)
|
|
api_key_header = APIKeyHeader(name="X-API-Key", auto_error=False)
|
|
|
|
jwt_public_key = open(f"reflector/auth/jwt/keys/{settings.AUTH_JWT_PUBLIC_KEY}").read()
|
|
jwt_algorithm = settings.AUTH_JWT_ALGORITHM
|
|
jwt_audience = settings.AUTH_JWT_AUDIENCE
|
|
|
|
|
|
class JWTException(Exception):
|
|
def __init__(self, status_code: int, detail: str):
|
|
self.status_code = status_code
|
|
self.detail = detail
|
|
|
|
def __str__(self):
|
|
return f"<JWTException {self.status_code}: {self.detail}>"
|
|
|
|
|
|
class UserInfo(BaseModel):
|
|
sub: str
|
|
email: Optional[str] = None
|
|
|
|
def __getitem__(self, key):
|
|
return getattr(self, key)
|
|
|
|
|
|
class AccessTokenInfo(BaseModel):
|
|
exp: Optional[int] = None
|
|
sub: Optional[str] = None
|
|
|
|
|
|
class JWTAuth:
|
|
def verify_token(self, token: str):
|
|
try:
|
|
payload = jwt.decode(
|
|
token,
|
|
jwt_public_key,
|
|
algorithms=[jwt_algorithm],
|
|
audience=jwt_audience,
|
|
)
|
|
return payload
|
|
except jwt.PyJWTError as e:
|
|
logger.error(f"JWT error: {e}")
|
|
raise
|
|
|
|
|
|
def authenticated(token: Annotated[str, Depends(oauth2_scheme)]):
|
|
if token is None:
|
|
raise JWTException(status_code=401, detail="Not authenticated")
|
|
return None
|
|
|
|
|
|
async def _authenticate_user(
|
|
jwt_token: Optional[str],
|
|
api_key: Optional[str],
|
|
jwtauth: JWTAuth,
|
|
) -> UserInfo | None:
|
|
user_infos: List[UserInfo] = []
|
|
if api_key:
|
|
user_api_key = await user_api_keys_controller.verify_key(api_key)
|
|
if user_api_key:
|
|
user_infos.append(UserInfo(sub=user_api_key.user_id, email=None))
|
|
|
|
if jwt_token:
|
|
try:
|
|
payload = jwtauth.verify_token(jwt_token)
|
|
authentik_uid = payload["sub"]
|
|
email = payload["email"]
|
|
|
|
user = await user_controller.get_by_authentik_uid(authentik_uid)
|
|
if not user:
|
|
logger.info(
|
|
f"Creating new user on first login: {authentik_uid} ({email})"
|
|
)
|
|
user = await user_controller.create_or_update(
|
|
id=generate_uuid4(),
|
|
authentik_uid=authentik_uid,
|
|
email=email,
|
|
)
|
|
|
|
user_infos.append(UserInfo(sub=user.id, email=email))
|
|
except jwt.PyJWTError as e:
|
|
logger.error(f"JWT error: {e}")
|
|
raise HTTPException(status_code=401, detail="Invalid authentication")
|
|
|
|
if len(user_infos) == 0:
|
|
return None
|
|
|
|
if len(set([x.sub for x in user_infos])) > 1:
|
|
raise JWTException(
|
|
status_code=401,
|
|
detail="Invalid authentication: more than one user provided",
|
|
)
|
|
|
|
return user_infos[0]
|
|
|
|
|
|
async def current_user(
|
|
jwt_token: Annotated[Optional[str], Depends(oauth2_scheme)],
|
|
api_key: Annotated[Optional[str], Depends(api_key_header)],
|
|
jwtauth: JWTAuth = Depends(),
|
|
):
|
|
user = await _authenticate_user(jwt_token, api_key, jwtauth)
|
|
if user is None:
|
|
raise HTTPException(status_code=401, detail="Not authenticated")
|
|
return user
|
|
|
|
|
|
async def current_user_optional(
|
|
jwt_token: Annotated[Optional[str], Depends(oauth2_scheme)],
|
|
api_key: Annotated[Optional[str], Depends(api_key_header)],
|
|
jwtauth: JWTAuth = Depends(),
|
|
):
|
|
return await _authenticate_user(jwt_token, api_key, jwtauth)
|
|
|
|
|
|
async def current_user_optional_if_public_mode(
|
|
jwt_token: Annotated[Optional[str], Depends(oauth2_scheme)],
|
|
api_key: Annotated[Optional[str], Depends(api_key_header)],
|
|
jwtauth: JWTAuth = Depends(),
|
|
) -> Optional[UserInfo]:
|
|
user = await _authenticate_user(jwt_token, api_key, jwtauth)
|
|
if user is None and not settings.PUBLIC_MODE:
|
|
raise HTTPException(status_code=401, detail="Not authenticated")
|
|
return user
|
|
|
|
|
|
def parse_ws_bearer_token(
|
|
websocket: "WebSocket",
|
|
) -> tuple[Optional[str], Optional[str]]:
|
|
raw = websocket.headers.get("sec-websocket-protocol") or ""
|
|
parts = [p.strip() for p in raw.split(",") if p.strip()]
|
|
if len(parts) >= 2 and parts[0].lower() == "bearer":
|
|
return parts[1], "bearer"
|
|
return None, None
|
|
|
|
|
|
async def current_user_ws_optional(websocket: "WebSocket") -> Optional[UserInfo]:
|
|
token, _ = parse_ws_bearer_token(websocket)
|
|
if not token:
|
|
return None
|
|
return await _authenticate_user(token, None, JWTAuth())
|
|
|
|
|
|
async def verify_raw_token(token: str) -> Optional[UserInfo]:
|
|
"""Verify a raw JWT token string (used for query-param auth fallback)."""
|
|
return await _authenticate_user(token, None, JWTAuth())
|