making progress

This commit is contained in:
maxDorninger
2025-04-26 18:16:05 +02:00
parent 60a5a6d0e8
commit 3fa50313b8
34 changed files with 773 additions and 369 deletions

View File

@@ -1,3 +1,4 @@
import os
import uuid
from typing import Optional
@@ -9,6 +10,7 @@ from fastapi_users.authentication import (
CookieTransport, JWTStrategy,
)
from fastapi_users.db import SQLAlchemyUserDatabase
from httpx_oauth.oauth2 import OAuth2
import auth.config
from auth.db import User, get_user_db
@@ -17,6 +19,19 @@ config = auth.config.AuthConfig()
SECRET = config.token_secret
LIFETIME = config.session_lifetime
if os.getenv("OAUTH_ENABLED") == "True":
oauth2_config = auth.config.OAuth2Config()
oauth_client = OAuth2(
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,
)
else:
oauth_client = None
# TODO: implement on_xxx methods
class UserManager(UUIDIDMixin, BaseUserManager[User, uuid.UUID]):
@@ -31,11 +46,19 @@ class UserManager(UUIDIDMixin, BaseUserManager[User, uuid.UUID]):
):
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)