69 lines
1.9 KiB
Python
69 lines
1.9 KiB
Python
import json
|
|
from typing import Generator
|
|
|
|
from fastapi import Depends, HTTPException, status
|
|
from fastapi.security import OAuth2PasswordBearer
|
|
from jose import jwt
|
|
from pydantic import ValidationError
|
|
from sqlalchemy.orm import Session
|
|
|
|
import crud, models, schemas
|
|
from core import security
|
|
from core.config import settings
|
|
from db.session import SessionLocal
|
|
|
|
reusable_oauth2 = OAuth2PasswordBearer(
|
|
tokenUrl=f"{settings.API_V1_STR}/login/"
|
|
)
|
|
|
|
|
|
def get_db() -> Generator:
|
|
try:
|
|
db = SessionLocal()
|
|
yield db
|
|
finally:
|
|
db.close()
|
|
|
|
|
|
# def get_current_user(token: str = Depends(reusable_oauth2)
|
|
# ) -> schemas.UserDBBase:
|
|
def get_current_user(token: str
|
|
) -> schemas.UserDBBase:
|
|
try:
|
|
payload = jwt.decode(
|
|
token, settings.SECRET_KEY, algorithms=[security.ALGORITHM]
|
|
)
|
|
user = schemas.UserDBBase(**payload)
|
|
except (jwt.JWTError, ValidationError):
|
|
raise HTTPException(
|
|
status_code=status.HTTP_403_FORBIDDEN,
|
|
detail="Could not validate credentials",
|
|
)
|
|
if not user:
|
|
raise HTTPException(status_code=404, detail="User not found")
|
|
return user
|
|
|
|
|
|
def get_current_active_user(
|
|
current_user: models.User = Depends(get_current_user),
|
|
) -> models.User:
|
|
if not crud.user.is_active(current_user):
|
|
raise HTTPException(status_code=400, detail="Inactive user")
|
|
return current_user
|
|
|
|
|
|
def get_current_active_superuser(
|
|
current_user: models.User = Depends(get_current_user),
|
|
) -> models.User:
|
|
if not crud.user.is_superuser(current_user):
|
|
raise HTTPException(
|
|
status_code=400, detail="The user doesn't have enough privileges"
|
|
)
|
|
return current_user
|
|
|
|
|
|
def check_project(project_id: int, db: Session = Depends(get_db)):
|
|
if not crud.project.get(db, id=project_id):
|
|
raise HTTPException(status_code=404, detail="没有这个项目")
|
|
return project_id
|