Enka_Genshin_bot/plugins/admin.py

19 lines
722 B
Python
Raw Normal View History

2022-06-04 04:32:48 +00:00
from pyrogram import filters, Client
from pyrogram.types import Message
from ci import app, admin_id
from defs.refresh import refresh_player
@app.on_message(filters.command(["refresh_admin"]) & filters.private)
2022-06-04 05:31:43 +00:00
async def refresh_admin_command(_: Client, message: Message):
2022-06-04 04:32:48 +00:00
if message.from_user.id != admin_id:
return
if len(message.command) == 1:
return await message.reply("请输入 uid", quote=True)
if not message.command[1].isnumeric():
return await message.reply("请输入正确的 uid", quote=True)
uid = message.command[1]
msg = await message.reply(f"正在刷新数据,请稍等。。。", quote=True)
text = await refresh_player(uid)
await msg.edit(text)