|
@@ -14,14 +14,14 @@ import config
|
|
|
logging.getLogger("passlib").setLevel(logging.ERROR)
|
|
|
|
|
|
|
|
|
-JWT_SECRET_KEY = config.WEBUI_JWT_SECRET_KEY
|
|
|
+SESSION_SECRET = config.WEBUI_SECRET_KEY
|
|
|
ALGORITHM = "HS256"
|
|
|
|
|
|
##############
|
|
|
# Auth Utils
|
|
|
##############
|
|
|
|
|
|
-bearer_scheme = HTTPBearer()
|
|
|
+bearer_security = HTTPBearer()
|
|
|
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
|
|
|
|
|
|
|
|
@@ -42,13 +42,13 @@ def create_token(data: dict, expires_delta: Union[timedelta, None] = None) -> st
|
|
|
expire = datetime.utcnow() + expires_delta
|
|
|
payload.update({"exp": expire})
|
|
|
|
|
|
- encoded_jwt = jwt.encode(payload, JWT_SECRET_KEY, algorithm=ALGORITHM)
|
|
|
+ encoded_jwt = jwt.encode(payload, SESSION_SECRET, algorithm=ALGORITHM)
|
|
|
return encoded_jwt
|
|
|
|
|
|
|
|
|
def decode_token(token: str) -> Optional[dict]:
|
|
|
try:
|
|
|
- decoded = jwt.decode(token, JWT_SECRET_KEY, options={"verify_signature": False})
|
|
|
+ decoded = jwt.decode(token, SESSION_SECRET, algorithms=[ALGORITHM])
|
|
|
return decoded
|
|
|
except Exception as e:
|
|
|
return None
|
|
@@ -58,10 +58,10 @@ def extract_token_from_auth_header(auth_header: str):
|
|
|
return auth_header[len("Bearer ") :]
|
|
|
|
|
|
|
|
|
-def get_current_user(auth_token: HTTPAuthorizationCredentials = Depends(HTTPBearer())):
|
|
|
+def get_current_user(auth_token: HTTPAuthorizationCredentials = Depends(bearer_security)):
|
|
|
data = decode_token(auth_token.credentials)
|
|
|
- if data != None and "email" in data:
|
|
|
- user = Users.get_user_by_email(data["email"])
|
|
|
+ if data != None and "id" in data:
|
|
|
+ user = Users.get_user_by_id(data["id"])
|
|
|
if user is None:
|
|
|
raise HTTPException(
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|