mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-18 03:54:03 +02:00
127 lines
4.5 KiB
Python
127 lines
4.5 KiB
Python
import os
|
|
import uuid
|
|
from typing import Optional
|
|
|
|
import httpx
|
|
from fastapi import Depends, Request
|
|
from fastapi_users import BaseUserManager, FastAPIUsers, UUIDIDMixin, models
|
|
from fastapi_users.authentication import (
|
|
AuthenticationBackend,
|
|
BearerTransport,
|
|
CookieTransport, JWTStrategy,
|
|
)
|
|
from fastapi_users.db import SQLAlchemyUserDatabase
|
|
from httpx_oauth.oauth2 import OAuth2
|
|
from fastapi.responses import RedirectResponse, Response
|
|
import auth.config
|
|
from auth.db import User, get_user_db
|
|
from auth.schemas import UserUpdate
|
|
from config import BasicConfig
|
|
|
|
config = auth.config.AuthConfig()
|
|
SECRET = config.token_secret
|
|
LIFETIME = config.session_lifetime
|
|
|
|
|
|
class GenericOAuth2(OAuth2):
|
|
def __init__(self, user_info_endpoint: str, **kwargs):
|
|
super().__init__(**kwargs)
|
|
self.user_info_endpoint = user_info_endpoint
|
|
|
|
async def get_id_email(self, token: str):
|
|
userinfo_endpoint = self.user_info_endpoint
|
|
async with httpx.AsyncClient() as client:
|
|
resp = await client.get(
|
|
userinfo_endpoint,
|
|
headers={"Authorization": f"Bearer {token}"}
|
|
)
|
|
resp.raise_for_status()
|
|
data = resp.json()
|
|
return data["sub"], data["email"]
|
|
|
|
|
|
if os.getenv("OAUTH_ENABLED") is not None and os.getenv("OAUTH_ENABLED").upper() == "TRUE":
|
|
oauth2_config = auth.config.OAuth2Config()
|
|
oauth_client = GenericOAuth2(
|
|
client_id=oauth2_config.client_id,
|
|
client_secret=oauth2_config.client_secret,
|
|
name=oauth2_config.name,
|
|
authorize_endpoint=oauth2_config.authorize_endpoint,
|
|
access_token_endpoint=oauth2_config.access_token_endpoint,
|
|
user_info_endpoint=oauth2_config.user_info_endpoint,
|
|
)
|
|
else:
|
|
oauth_client = None
|
|
|
|
|
|
# TODO: implement on_xxx methods
|
|
class UserManager(UUIDIDMixin, BaseUserManager[User, uuid.UUID]):
|
|
reset_password_token_secret = SECRET
|
|
verification_token_secret = SECRET
|
|
|
|
async def on_after_register(self, user: User, request: Optional[Request] = None):
|
|
print(f"User {user.id} has registered.")
|
|
if user.email in config.admin_email:
|
|
updated_user = UserUpdate(is_superuser=True, is_verified=True)
|
|
await self.update(user=user, user_update=updated_user)
|
|
|
|
async def on_after_forgot_password(
|
|
self, user: User, token: str, request: Optional[Request] = None
|
|
):
|
|
print(f"User {user.id} has forgot their password. Reset token: {token}")
|
|
|
|
async def on_after_reset_password(self, user: User, request: Optional[Request] = None):
|
|
print(f"User {user.id} has reset their password.")
|
|
|
|
async def on_after_request_verify(
|
|
self, user: User, token: str, request: Optional[Request] = None
|
|
):
|
|
print(f"Verification requested for user {user.id}. Verification token: {token}")
|
|
|
|
async def on_after_verify(
|
|
self, user: User, request: Optional[Request] = None
|
|
):
|
|
print(f"User {user.id} has been verified")
|
|
|
|
|
|
async def get_user_manager(user_db: SQLAlchemyUserDatabase = Depends(get_user_db)):
|
|
yield UserManager(user_db)
|
|
|
|
|
|
def get_jwt_strategy() -> JWTStrategy[models.UP, models.ID]:
|
|
return JWTStrategy(secret=SECRET, lifetime_seconds=LIFETIME)
|
|
|
|
|
|
# needed because the default CookieTransport does not redirect after login,
|
|
# thus the user would be stuck on the OAuth Providers "redirecting" page
|
|
class RedirectingCookieTransport(CookieTransport):
|
|
async def get_login_response(self, token: str) -> Response:
|
|
response = RedirectResponse(str(BasicConfig().FRONTEND_URL) + "dashboard", status_code=302)
|
|
return self._set_login_cookie(response, token)
|
|
|
|
|
|
bearer_transport = BearerTransport(tokenUrl="auth/jwt/login")
|
|
cookie_transport = CookieTransport(cookie_max_age=LIFETIME)
|
|
oauth_cookie_transport = RedirectingCookieTransport(cookie_max_age=LIFETIME)
|
|
|
|
bearer_auth_backend = AuthenticationBackend(
|
|
name="jwt",
|
|
transport=bearer_transport,
|
|
get_strategy=get_jwt_strategy,
|
|
)
|
|
cookie_auth_backend = AuthenticationBackend(
|
|
name="cookie",
|
|
transport=cookie_transport,
|
|
get_strategy=get_jwt_strategy,
|
|
)
|
|
oauth_cookie_auth_backend = AuthenticationBackend(
|
|
name="cookie",
|
|
transport=oauth_cookie_transport,
|
|
get_strategy=get_jwt_strategy,
|
|
)
|
|
|
|
fastapi_users = FastAPIUsers[User, uuid.UUID](get_user_manager, [bearer_auth_backend, cookie_auth_backend])
|
|
|
|
current_active_user = fastapi_users.current_user(active=True, verified=True)
|
|
current_superuser = fastapi_users.current_user(active=True, verified=True, superuser=True)
|