mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-16 12:51:35 +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>
74 lines
3.2 KiB
Python
74 lines
3.2 KiB
Python
from telegram import Update
|
|
from telegram.error import BadRequest, Forbidden
|
|
from telegram.ext import CallbackContext, CommandHandler
|
|
|
|
from core.admin import BotAdminService
|
|
from core.plugin import handler, Plugin
|
|
from utils.decorators.admins import bot_admins_rights_check
|
|
from utils.log import logger
|
|
|
|
|
|
class AdminPlugin(Plugin):
|
|
"""有关BOT ADMIN处理"""
|
|
|
|
def __init__(self, bot_admin_service: BotAdminService = None):
|
|
self.bot_admin_service = bot_admin_service
|
|
|
|
@handler(CommandHandler, command="add_admin", block=False)
|
|
@bot_admins_rights_check
|
|
async def add_admin(self, update: Update, _: CallbackContext):
|
|
message = update.effective_message
|
|
reply_to_message = message.reply_to_message
|
|
if reply_to_message is None:
|
|
await message.reply_text("请回复对应消息")
|
|
else:
|
|
admin_list = await self.bot_admin_service.get_admin_list()
|
|
if reply_to_message.from_user.id in admin_list:
|
|
await message.reply_text("该用户已经存在管理员列表")
|
|
else:
|
|
await self.bot_admin_service.add_admin(reply_to_message.from_user.id)
|
|
await message.reply_text("添加成功")
|
|
|
|
@handler(CommandHandler, command="del_admin", block=False)
|
|
@bot_admins_rights_check
|
|
async def del_admin(self, update: Update, _: CallbackContext):
|
|
message = update.effective_message
|
|
reply_to_message = message.reply_to_message
|
|
admin_list = await self.bot_admin_service.get_admin_list()
|
|
if reply_to_message is None:
|
|
await message.reply_text("请回复对应消息")
|
|
else:
|
|
if reply_to_message.from_user.id in admin_list:
|
|
await self.bot_admin_service.delete_admin(reply_to_message.from_user.id)
|
|
await message.reply_text("删除成功")
|
|
else:
|
|
await message.reply_text("该用户不存在管理员列表")
|
|
|
|
@handler(CommandHandler, command="leave_chat", block=False)
|
|
@bot_admins_rights_check
|
|
async def leave_chat(self, update: Update, context: CallbackContext):
|
|
message = update.effective_message
|
|
try:
|
|
args = message.text.split()
|
|
if len(args) >= 2:
|
|
chat_id = int(args[1])
|
|
else:
|
|
await message.reply_text("输入错误")
|
|
return
|
|
except ValueError as error:
|
|
logger.error("获取 chat_id 发生错误! 错误信息为 \n", error)
|
|
await message.reply_text("输入错误")
|
|
return
|
|
try:
|
|
try:
|
|
char = await context.bot.get_chat(chat_id)
|
|
await message.reply_text(f"正在尝试退出群 {char.title}[{char.id}]")
|
|
except (BadRequest, Forbidden):
|
|
pass
|
|
await context.bot.leave_chat(chat_id)
|
|
except (BadRequest, Forbidden) as error:
|
|
logger.error(f"退出 chat_id[{chat_id}] 发生错误! 错误信息为 \n", error)
|
|
await message.reply_text(f"退出 chat_id[{chat_id}] 发生错误! 错误信息为 {str(error)}")
|
|
return
|
|
await message.reply_text(f"退出 chat_id[{chat_id}] 成功!")
|