mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-19 08:42:08 +03:00
711e9fb8c9
* use function for get_documents_vector_store * use function for get_embeddings * use function for get_supabase_client * use function for get_supabase_db * delete lasts common_dependencies
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
from datetime import datetime
|
|
|
|
from fastapi import HTTPException
|
|
from models.settings import get_supabase_db
|
|
from models.users import User
|
|
from pydantic import DateError
|
|
|
|
|
|
async def verify_api_key(
|
|
api_key: str,
|
|
) -> bool:
|
|
try:
|
|
# Use UTC time to avoid timezone issues
|
|
current_date = datetime.utcnow().date()
|
|
supabase_db = get_supabase_db()
|
|
result = supabase_db.get_active_api_key(api_key)
|
|
|
|
if result.data is not None and len(result.data) > 0:
|
|
api_key_creation_date = datetime.strptime(
|
|
result.data[0]["creation_time"], "%Y-%m-%dT%H:%M:%S"
|
|
).date()
|
|
|
|
# Check if the API key was created in the month of the current date
|
|
if (api_key_creation_date.month == current_date.month) and (
|
|
api_key_creation_date.year == current_date.year
|
|
):
|
|
return True
|
|
return False
|
|
except DateError:
|
|
return False
|
|
|
|
|
|
async def get_user_from_api_key(
|
|
api_key: str,
|
|
) -> User:
|
|
supabase_db = get_supabase_db()
|
|
|
|
# Lookup the user_id from the api_keys table
|
|
user_id_data = supabase_db.get_user_id_by_api_key(api_key)
|
|
|
|
if not user_id_data.data:
|
|
raise HTTPException(status_code=400, detail="Invalid API key.")
|
|
|
|
user_id = user_id_data.data[0]["user_id"]
|
|
|
|
# Lookup the email from the users table. Todo: remove and use user_id for credentials
|
|
user_email_data = supabase_db.get_user_email(user_id)
|
|
email = user_email_data.data[0]["email"] if user_email_data.data else None
|
|
|
|
return User(email=email, id=user_id)
|