mirror of
https://github.com/bellingcat/auto-archiver-api.git
synced 2026-06-07 19:18:34 +03:00
* Update pyproject.toml * add pre-commit * Create .pre-commit-config.yaml * Comment out ruff * Update .pre-commit-config.yaml * General formatting * Create format-and-fail.yml * Update ci.yml * Add pre-commit to dev dependencies * Update pyproject.toml
87 lines
3.2 KiB
Python
87 lines
3.2 KiB
Python
import secrets
|
|
|
|
import requests
|
|
from fastapi import Depends, HTTPException, status
|
|
from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer
|
|
from loguru import logger
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app.shared.db.database import get_db_dependency
|
|
from app.shared.settings import get_settings
|
|
from app.web.config import ALLOW_ANY_EMAIL
|
|
from app.web.db.user_state import UserState
|
|
|
|
|
|
settings = get_settings()
|
|
bearer_security = HTTPBearer()
|
|
|
|
|
|
def secure_compare(token, api_key):
|
|
return secrets.compare_digest(token.encode("utf8"), api_key.encode("utf8"))
|
|
|
|
|
|
# Factory method to create an authentication dependency for a specific key
|
|
def api_key_auth(api_key):
|
|
assert len(api_key) >= 20, "Invalid API key, must be at least 20 chars"
|
|
|
|
async def auth(bearer: HTTPAuthorizationCredentials = Depends(bearer_security), auto_error=True):
|
|
is_correct = secure_compare(bearer.credentials, api_key)
|
|
if is_correct: return True
|
|
|
|
if auto_error:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
detail="Wrong auth credentials",
|
|
)
|
|
return False
|
|
|
|
return auth
|
|
|
|
|
|
# --------------------- Token Auth for AA itself to query the API, AA setup tool and Prometheus
|
|
token_api_key_auth = api_key_auth(settings.API_BEARER_TOKEN)
|
|
|
|
|
|
async def get_token_or_user_auth(credentials: HTTPAuthorizationCredentials = Depends(bearer_security)):
|
|
# tries to use the static API_KEY and defaults to google JWT auth
|
|
if await token_api_key_auth(credentials, auto_error=False): return ALLOW_ANY_EMAIL
|
|
return await get_user_auth(credentials)
|
|
|
|
|
|
async def get_user_auth(credentials: HTTPAuthorizationCredentials = Depends(bearer_security)):
|
|
# validates the Bearer token in the case that it requires it
|
|
valid_user, info = authenticate_user(credentials.credentials)
|
|
if valid_user:
|
|
return info.lower()
|
|
logger.debug(f"TOKEN FAILURE: {valid_user=} {info=}")
|
|
raise HTTPException(
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
detail=info,
|
|
headers={"WWW-Authenticate": "Bearer"},
|
|
)
|
|
|
|
|
|
def authenticate_user(access_token):
|
|
# https://cloud.google.com/docs/authentication/token-types#access
|
|
if type(access_token) != str or len(access_token) < 10: return False, "invalid access_token"
|
|
r = requests.get("https://oauth2.googleapis.com/tokeninfo", {"access_token": access_token})
|
|
if r.status_code != 200: return False, "invalid token"
|
|
try:
|
|
j = r.json()
|
|
if j.get("azp") not in settings.CHROME_APP_IDS and j.get("aud") not in settings.CHROME_APP_IDS:
|
|
return False, f"token does not belong to valid APP_ID"
|
|
if j.get("email") in settings.BLOCKED_EMAILS:
|
|
return False, f"email '{j.get('email')}' not allowed"
|
|
if j.get("email_verified") != "true":
|
|
return False, f"email '{j.get('email')}' not verified"
|
|
if int(j.get("expires_in", -1)) <= 0:
|
|
return False, "Token expired"
|
|
return True, j.get('email').lower()
|
|
except Exception as e:
|
|
logger.warning(f"AUTH EXCEPTION occurred: {e}")
|
|
return False, "exception occurred"
|
|
|
|
|
|
def get_user_state(email:str=Depends(get_user_auth), db:Session=Depends(get_db_dependency)):
|
|
return UserState(db, email)
|