mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 17:43:03 +03:00
e1a740472f
* feat(chat): add name update * chore(linting): add flake8 * feat: add chat name edit
48 lines
1.8 KiB
Python
48 lines
1.8 KiB
Python
import os
|
|
from typing import Optional
|
|
|
|
from auth.api_key_handler import get_user_from_api_key, verify_api_key
|
|
from auth.jwt_token_handler import decode_access_token, verify_token
|
|
from fastapi import Depends, HTTPException, Request
|
|
from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer
|
|
from models.settings import CommonsDep
|
|
from models.users import User
|
|
|
|
|
|
class AuthBearer(HTTPBearer):
|
|
def __init__(self, auto_error: bool = True):
|
|
super().__init__(auto_error=auto_error)
|
|
|
|
async def __call__(self, request: Request, commons: CommonsDep):
|
|
credentials: Optional[HTTPAuthorizationCredentials] = await super().__call__(
|
|
request
|
|
)
|
|
self.check_scheme(credentials)
|
|
token = credentials.credentials
|
|
return await self.authenticate(token, commons)
|
|
|
|
def check_scheme(self, credentials):
|
|
if credentials and not credentials.scheme == "Bearer":
|
|
raise HTTPException(status_code=402, detail="Invalid authorization scheme.")
|
|
elif not credentials:
|
|
raise HTTPException(status_code=403, detail="Invalid authorization code.")
|
|
|
|
async def authenticate(self, token: str, commons: CommonsDep):
|
|
if os.environ.get("AUTHENTICATE") == "false":
|
|
return self.get_test_user()
|
|
elif verify_token(token):
|
|
return decode_access_token(token)
|
|
elif await verify_api_key(token, commons):
|
|
return await get_user_from_api_key(token, commons)
|
|
else:
|
|
raise HTTPException(
|
|
status_code=402, detail="Invalid token or expired token."
|
|
)
|
|
|
|
def get_test_user(self):
|
|
return {"email": "test@example.com"} # replace with test user information
|
|
|
|
|
|
def get_current_user(credentials: dict = Depends(AuthBearer())) -> User:
|
|
return User(email=credentials.get("email", "none"))
|