mirror of
				https://github.com/fastapi-users/fastapi-users.git
				synced 2025-11-01 01:48:46 +08:00 
			
		
		
		
	 72aa68c462
			
		
	
	72aa68c462
	
	
	
		
			
			* Use a generic Protocol model for User instead of Pydantic
* Remove UserDB Pydantic schema
* Harmonize schema variable naming to avoid confusions
* Revamp OAuth account model management
* Revamp AccessToken DB strategy to adopt generic model approach
* Make ID a generic instead of forcing UUIDs
* Improve generic typing
* Improve Strategy typing
* Tweak base DB typing
* Don't set Pydantic schemas on FastAPIUsers class: pass it directly on router creation
* Add IntegerIdMixin and export related classes
* Start to revamp doc for V10
* Revamp OAuth documentation
* Fix code highlights
* Write the 9.x.x ➡️ 10.x.x migration doc
* Fix pyproject.toml
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from typing import AsyncGenerator, List
 | |
| 
 | |
| from fastapi import Depends
 | |
| from fastapi_users.db import (
 | |
|     SQLAlchemyBaseOAuthAccountTableUUID,
 | |
|     SQLAlchemyBaseUserTableUUID,
 | |
|     SQLAlchemyUserDatabase,
 | |
| )
 | |
| from sqlalchemy.ext.asyncio import AsyncSession, create_async_engine
 | |
| from sqlalchemy.ext.declarative import DeclarativeMeta, declarative_base
 | |
| from sqlalchemy.orm import relationship, sessionmaker
 | |
| 
 | |
| DATABASE_URL = "sqlite+aiosqlite:///./test.db"
 | |
| Base: DeclarativeMeta = declarative_base()
 | |
| 
 | |
| 
 | |
| class OAuthAccount(SQLAlchemyBaseOAuthAccountTableUUID, Base):
 | |
|     pass
 | |
| 
 | |
| 
 | |
| class User(SQLAlchemyBaseUserTableUUID, Base):
 | |
|     oauth_accounts: List[OAuthAccount] = relationship("OAuthAccount", lazy="joined")
 | |
| 
 | |
| 
 | |
| engine = create_async_engine(DATABASE_URL)
 | |
| async_session_maker = sessionmaker(engine, class_=AsyncSession, expire_on_commit=False)
 | |
| 
 | |
| 
 | |
| async def create_db_and_tables():
 | |
|     async with engine.begin() as conn:
 | |
|         await conn.run_sync(Base.metadata.create_all)
 | |
| 
 | |
| 
 | |
| 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)
 |