inbox/services/auth.py

73 lines
2.4 KiB
Python
Raw Normal View History

2023-10-03 14:15:17 +00:00
from functools import wraps
2023-12-18 07:17:50 +00:00
from aiohttp import ClientSession
from starlette.exceptions import HTTPException
2023-11-28 09:05:39 +00:00
2023-12-19 17:20:37 +00:00
from services.core import get_author_by_user
2023-10-14 12:59:43 +00:00
from settings import AUTH_URL
2023-10-03 14:15:17 +00:00
2024-01-23 20:13:49 +00:00
import logging
logger = logging.getLogger("[services.auth] ")
logger.setLevel(logging.DEBUG)
2023-10-03 15:29:56 +00:00
2024-01-23 21:13:14 +00:00
2023-12-18 07:17:50 +00:00
async def check_auth(req) -> str | None:
2023-10-03 14:15:17 +00:00
token = req.headers.get("Authorization")
2023-12-18 07:17:50 +00:00
user_id = ""
2023-12-13 22:08:47 +00:00
if token:
# Logging the authentication token
query_name = "validate_jwt_token"
2023-12-18 07:17:50 +00:00
operation = "ValidateToken"
2023-12-13 22:08:47 +00:00
headers = {
"Content-Type": "application/json",
}
variables = {
"params": {
"token_type": "access_token",
2023-12-17 17:13:17 +00:00
"token": token,
2023-12-13 22:08:47 +00:00
}
}
gql = {
2023-12-18 07:17:50 +00:00
"query": f"query {operation}($params: ValidateJWTTokenInput!) {{ {query_name}(params: $params) {{ is_valid claims }} }}",
2023-12-13 22:08:47 +00:00
"variables": variables,
2023-12-18 07:17:50 +00:00
"operationName": operation,
2023-12-13 22:08:47 +00:00
}
try:
2023-12-18 07:17:50 +00:00
# Asynchronous HTTP request to the authentication server
async with ClientSession() as session:
2023-12-13 22:08:47 +00:00
async with session.post(AUTH_URL, json=gql, headers=headers) as response:
if response.status == 200:
data = await response.json()
errors = data.get("errors")
if errors:
2024-01-23 20:13:49 +00:00
logger.error(f"{errors}")
2023-12-13 22:08:47 +00:00
else:
user_id = data.get("data", {}).get(query_name, {}).get("claims", {}).get("sub")
2024-01-23 20:13:49 +00:00
logger.info(f"[services.auth] got user_id: {user_id}")
2023-12-18 07:17:50 +00:00
return user_id
2023-12-13 22:08:47 +00:00
except Exception as e:
2023-12-18 07:17:50 +00:00
# Handling and logging exceptions during authentication check
2024-01-23 20:13:49 +00:00
logger.error(e)
2023-12-17 23:14:02 +00:00
2023-12-18 07:17:50 +00:00
if not user_id:
2023-12-18 18:32:49 +00:00
raise HTTPException(status_code=401, detail="Unauthorized")
2023-10-03 14:15:17 +00:00
def login_required(f):
@wraps(f)
async def decorated_function(*args, **kwargs):
info = args[1]
context = info.context
req = context.get("request")
2023-12-18 07:17:50 +00:00
user_id = await check_auth(req)
if user_id:
2024-01-10 13:31:01 +00:00
context["user_id"] = user_id.strip()
2023-12-19 17:20:37 +00:00
author = get_author_by_user(user_id)
2023-12-19 16:42:53 +00:00
if author and "id" in author:
context["author_id"] = author["id"]
2023-10-03 14:15:17 +00:00
return await f(*args, **kwargs)
return decorated_function