mirror of
https://github.com/PaiGramTeam/GramCore.git
synced 2024-11-22 06:17:56 +00:00
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
|
import contextlib
|
||
|
from typing import Optional
|
||
|
|
||
|
from sqlalchemy.engine import URL
|
||
|
from sqlalchemy.ext.asyncio import create_async_engine
|
||
|
from sqlalchemy.orm import sessionmaker
|
||
|
from typing_extensions import Self
|
||
|
|
||
|
from gram_core.base_service import BaseService
|
||
|
from gram_core.config import ApplicationConfig
|
||
|
from gram_core.sqlmodel.session import AsyncSession
|
||
|
|
||
|
__all__ = ("Database",)
|
||
|
|
||
|
|
||
|
class Database(BaseService.Dependence):
|
||
|
@classmethod
|
||
|
def from_config(cls, config: ApplicationConfig) -> Self:
|
||
|
return cls(**config.database.dict())
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
driver_name: str,
|
||
|
host: Optional[str] = None,
|
||
|
port: Optional[int] = None,
|
||
|
username: Optional[str] = None,
|
||
|
password: Optional[str] = None,
|
||
|
database: Optional[str] = None,
|
||
|
):
|
||
|
self.database = database # skipcq: PTC-W0052
|
||
|
self.password = password
|
||
|
self.username = username
|
||
|
self.port = port
|
||
|
self.host = host
|
||
|
self.url = URL.create(
|
||
|
driver_name,
|
||
|
username=self.username,
|
||
|
password=self.password,
|
||
|
host=self.host,
|
||
|
port=self.port,
|
||
|
database=self.database,
|
||
|
)
|
||
|
self.engine = create_async_engine(self.url)
|
||
|
self.Session = sessionmaker(bind=self.engine, class_=AsyncSession)
|
||
|
|
||
|
@contextlib.asynccontextmanager
|
||
|
async def session(self) -> AsyncSession:
|
||
|
yield self.Session()
|
||
|
|
||
|
async def shutdown(self):
|
||
|
self.Session.close_all()
|