mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 12:51:45 +00:00
8f424bf0d4
♻️ 重构插件系统 ⚙️ 重写插件 🎨 改进代码结构 📝 完善文档 Co-authored-by: zhxy-CN <admin@owo.cab> Co-authored-by: 洛水居室 <luoshuijs@outlook.com> Co-authored-by: xtaodada <xtao@xtaolink.cn> Co-authored-by: Li Chuangbo <im@chuangbo.li>
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
from typing import List, cast
|
|
|
|
from sqlalchemy import select
|
|
from sqlmodel.ext.asyncio.session import AsyncSession
|
|
|
|
from core.admin.models import Admin
|
|
from core.base.mysql import MySQL
|
|
|
|
|
|
class BotAdminRepository:
|
|
def __init__(self, mysql: MySQL):
|
|
self.mysql = mysql
|
|
|
|
async def delete_by_user_id(self, user_id: int):
|
|
async with self.mysql.Session() as session:
|
|
session = cast(AsyncSession, session)
|
|
statement = select(Admin).where(Admin.user_id == user_id)
|
|
results = await session.exec(statement)
|
|
admin = results.one()
|
|
await session.delete(admin)
|
|
|
|
async def add_by_user_id(self, user_id: int):
|
|
async with self.mysql.Session() as session:
|
|
admin = Admin(user_id=user_id)
|
|
session.add(admin)
|
|
await session.commit()
|
|
|
|
async def get_all_user_id(self) -> List[int]:
|
|
async with self.mysql.Session() as session:
|
|
query = select(Admin)
|
|
results = await session.exec(query)
|
|
admins = results.all()
|
|
return [admin[0].user_id for admin in admins]
|