PamGram/core/user/repositories.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.1 KiB
Python
Raw Normal View History

from typing import cast
from sqlalchemy import select
from sqlmodel.ext.asyncio.session import AsyncSession
from core.base.mysql import MySQL
from .error import UserNotFoundError
from .models import User
2022-07-26 10:07:31 +00:00
class UserRepository:
def __init__(self, mysql: MySQL):
self.mysql = mysql
async def get_by_user_id(self, user_id: int) -> User:
async with self.mysql.Session() as session:
session = cast(AsyncSession, session)
statement = select(User).where(User.user_id == user_id)
results = await session.exec(statement)
2022-08-05 14:45:54 +00:00
if user := results.first():
return user[0]
else:
raise UserNotFoundError(user_id)
2022-07-26 10:07:31 +00:00
async def update_user(self, user: User):
async with self.mysql.Session() as session:
session = cast(AsyncSession, session)
session.add(user)
await session.commit()
await session.refresh(user)
async def add_user(self, user: User):
async with self.mysql.Session() as session:
session = cast(AsyncSession, session)
session.add(user)
await session.commit()