121 lines
3.0 KiB
Python
121 lines
3.0 KiB
Python
"""
|
|
API dependencies for the sim-search API.
|
|
|
|
This module provides common dependencies for the API routes.
|
|
"""
|
|
|
|
from typing import Generator, Optional
|
|
|
|
from fastapi import Depends, HTTPException, status
|
|
from fastapi.security import OAuth2PasswordBearer
|
|
from jose import jwt, JWTError
|
|
from pydantic import ValidationError
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app.core.config import settings
|
|
from app.core.security import verify_password
|
|
from app.db.models import User
|
|
from app.db.session import get_db
|
|
from app.schemas.token import TokenPayload
|
|
|
|
# OAuth2 scheme for token authentication
|
|
oauth2_scheme = OAuth2PasswordBearer(tokenUrl=f"{settings.API_V1_STR}/auth/token")
|
|
|
|
|
|
def get_current_user(
|
|
db: Session = Depends(get_db), token: str = Depends(oauth2_scheme)
|
|
) -> User:
|
|
"""
|
|
Get the current user from the token.
|
|
|
|
Args:
|
|
db: Database session
|
|
token: JWT token
|
|
|
|
Returns:
|
|
User object
|
|
|
|
Raises:
|
|
HTTPException: If the token is invalid or the user is not found
|
|
"""
|
|
try:
|
|
payload = jwt.decode(
|
|
token, settings.SECRET_KEY, algorithms=[settings.ALGORITHM]
|
|
)
|
|
token_data = TokenPayload(**payload)
|
|
except (JWTError, ValidationError):
|
|
raise HTTPException(
|
|
status_code=status.HTTP_403_FORBIDDEN,
|
|
detail="Could not validate credentials",
|
|
)
|
|
|
|
user = db.query(User).filter(User.id == token_data.sub).first()
|
|
if not user:
|
|
raise HTTPException(status_code=404, detail="User not found")
|
|
if not user.is_active:
|
|
raise HTTPException(status_code=400, detail="Inactive user")
|
|
|
|
return user
|
|
|
|
|
|
def get_current_active_user(
|
|
current_user: User = Depends(get_current_user),
|
|
) -> User:
|
|
"""
|
|
Get the current active user.
|
|
|
|
Args:
|
|
current_user: Current user
|
|
|
|
Returns:
|
|
User object
|
|
|
|
Raises:
|
|
HTTPException: If the user is inactive
|
|
"""
|
|
if not current_user.is_active:
|
|
raise HTTPException(status_code=400, detail="Inactive user")
|
|
return current_user
|
|
|
|
|
|
def get_current_active_superuser(
|
|
current_user: User = Depends(get_current_user),
|
|
) -> User:
|
|
"""
|
|
Get the current active superuser.
|
|
|
|
Args:
|
|
current_user: Current user
|
|
|
|
Returns:
|
|
User object
|
|
|
|
Raises:
|
|
HTTPException: If the user is not a superuser
|
|
"""
|
|
if not current_user.is_superuser:
|
|
raise HTTPException(
|
|
status_code=400, detail="The user doesn't have enough privileges"
|
|
)
|
|
return current_user
|
|
|
|
|
|
def authenticate_user(db: Session, email: str, password: str) -> Optional[User]:
|
|
"""
|
|
Authenticate a user.
|
|
|
|
Args:
|
|
db: Database session
|
|
email: User email
|
|
password: User password
|
|
|
|
Returns:
|
|
User object if authentication is successful, None otherwise
|
|
"""
|
|
user = db.query(User).filter(User.email == email).first()
|
|
if not user:
|
|
return None
|
|
if not verify_password(password, user.hashed_password):
|
|
return None
|
|
return user
|