Files
fast_api_template/backend/app/api/deps.py
T

57 lines
1.7 KiB
Python
Raw Normal View History

2024-02-25 19:39:33 +01:00
from collections.abc import Generator
from typing import Annotated
from fastapi import Depends, HTTPException, status
from fastapi.security import OAuth2PasswordBearer
from jose import JWTError, jwt
from pydantic import ValidationError
2023-11-29 12:13:15 -05:00
from sqlmodel import Session
from app.core import security
from app.core.config import settings
2024-03-02 05:01:59 -05:00
from app.core.db import engine
2023-11-29 12:13:15 -05:00
from app.models import TokenPayload, User
reusable_oauth2 = OAuth2PasswordBearer(
tokenUrl=f"{settings.API_V1_STR}/login/access-token"
)
def get_db() -> Generator[Session, None, None]:
with Session(engine) as session:
yield session
2023-11-29 12:13:15 -05:00
SessionDep = Annotated[Session, Depends(get_db)]
TokenDep = Annotated[str, Depends(reusable_oauth2)]
def get_current_user(session: SessionDep, token: TokenDep) -> User:
try:
payload = jwt.decode(
token, settings.SECRET_KEY, algorithms=[security.ALGORITHM]
)
2023-11-29 12:13:15 -05:00
token_data = TokenPayload(**payload)
except (JWTError, ValidationError):
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="Could not validate credentials",
)
2023-11-29 12:13:15 -05:00
user = session.get(User, token_data.sub)
if not user:
raise HTTPException(status_code=404, detail="User not found")
2023-12-27 19:06:47 +01:00
if not user.is_active:
raise HTTPException(status_code=400, detail="Inactive user")
2023-12-27 19:06:47 +01:00
return user
2023-12-27 19:06:47 +01:00
CurrentUser = Annotated[User, Depends(get_current_user)]
2023-11-29 12:13:15 -05:00
def get_current_active_superuser(current_user: CurrentUser) -> User:
if not current_user.is_superuser:
raise HTTPException(
status_code=400, detail="The user doesn't have enough privileges"
)
return current_user