mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-02-20 07:59:50 -05:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
from collections.abc import AsyncGenerator
|
|
from typing import Optional
|
|
|
|
from fastapi import Depends
|
|
from fastapi_users.db import (
|
|
SQLAlchemyBaseOAuthAccountTableUUID,
|
|
SQLAlchemyBaseUserTableUUID,
|
|
SQLAlchemyUserDatabase,
|
|
)
|
|
from sqlalchemy import String
|
|
from sqlalchemy.ext.asyncio import AsyncSession, async_sessionmaker, create_async_engine
|
|
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
|
|
|
from media_manager.config import MediaManagerConfig
|
|
from media_manager.database import Base, build_db_url
|
|
|
|
|
|
class OAuthAccount(SQLAlchemyBaseOAuthAccountTableUUID, Base):
|
|
access_token: Mapped[str] = mapped_column(String(length=4096), nullable=False)
|
|
refresh_token: Mapped[Optional[str]] = mapped_column(
|
|
String(length=4096), nullable=True
|
|
)
|
|
|
|
|
|
class User(SQLAlchemyBaseUserTableUUID, Base):
|
|
oauth_accounts: Mapped[list[OAuthAccount]] = relationship(
|
|
"OAuthAccount", lazy="joined"
|
|
)
|
|
|
|
|
|
engine = create_async_engine(
|
|
build_db_url(**MediaManagerConfig().database.model_dump()), echo=False
|
|
)
|
|
async_session_maker = async_sessionmaker(engine, expire_on_commit=False)
|
|
|
|
|
|
async def get_async_session() -> AsyncGenerator[AsyncSession, None]:
|
|
async with async_session_maker() as session:
|
|
yield session
|
|
|
|
|
|
async def get_user_db(session: AsyncSession = Depends(get_async_session)):
|
|
yield SQLAlchemyUserDatabase(session, User, OAuthAccount)
|