PagerMaid_Plugins_Pyro/sb/main.py
2023-07-31 11:29:27 +08:00

143 lines
4.2 KiB
Python

import contextlib
from asyncio import sleep
from pyrogram.enums import ChatType
from pyrogram.errors import (
ChatAdminRequired,
FloodWait,
PeerIdInvalid,
UserAdminInvalid,
UsernameInvalid,
)
from pyrogram.types import Chat
from pagermaid import log
from pagermaid.listener import listener
from pagermaid.scheduler import add_delete_message_job
from pagermaid.services import bot
from pagermaid.enums import Message
from pagermaid.utils import lang
def mention_group(chat: Chat):
return (
f'<a href="https://t.me/{chat.username}">{chat.title}</a>'
if chat.username
else f"<code>{chat.title}</code>"
)
async def ban_one(chat: Chat, uid):
await bot.ban_chat_member(chat.id, uid)
async def delete_all_messages(chat: Chat, uid):
await bot.delete_user_history(chat.id, uid)
async def check_uid(chat: Chat, uid: str):
channel = False
with contextlib.suppress(ValueError):
uid = int(uid)
if uid < 0:
channel = True
try:
await bot.get_chat_member(chat.id, uid)
except ChatAdminRequired:
with contextlib.suppress(PeerIdInvalid):
chat = await bot.get_chat(uid)
uid = chat.id
if chat.type in [ChatType.CHANNEL, ChatType.SUPERGROUP, ChatType.GROUP]:
channel = True
return uid, channel
async def get_uid(chat: Chat, message: Message):
uid = None
channel = False
delete_all = True
sender = None
if reply := message.reply_to_message:
if sender := reply.from_user:
uid = sender.id
if sender := reply.sender_chat:
uid = sender.id
channel = True
if message.arguments:
delete_all = False
elif len(message.parameter) == 2:
uid, channel = await check_uid(chat, message.parameter[0])
delete_all = False
elif len(message.parameter) == 1:
uid, channel = await check_uid(chat, message.parameter[0])
return uid, channel, delete_all, sender
@listener(
command="sb",
description=lang("sb_des"),
need_admin=True,
groups_only=True,
parameters="[reply|id|username> <do_not_del_all]",
)
async def super_ban(message: Message):
chat = message.chat
try:
uid, channel, delete_all, sender = await get_uid(chat, message)
if not uid:
raise ValueError
if channel and uid == chat.id:
raise ValueError
except (ValueError, PeerIdInvalid, UsernameInvalid, FloodWait):
await message.edit(lang("arg_error"))
return add_delete_message_job(message, 30)
except Exception as e:
await message.edit(f"出现错误:{e}")
return add_delete_message_job(message, 30)
if channel:
try:
await ban_one(chat, uid)
except ChatAdminRequired:
await message.edit(lang("sb_no_per"))
return add_delete_message_job(message, 10)
except Exception as e:
await message.edit(f"出现错误:{e}")
return add_delete_message_job(message, 10)
await message.edit(lang("sb_channel"))
return add_delete_message_job(message, 10)
try:
common = await bot.get_common_chats(uid)
except PeerIdInvalid:
common = [chat]
count, groups = 0, []
for i in common:
try:
await ban_one(i, uid)
if delete_all:
await delete_all_messages(i, uid)
count += 1
groups.append(mention_group(i))
except ChatAdminRequired:
continue
except UserAdminInvalid:
continue
except FloodWait as e:
await sleep(e.value)
await ban_one(i, uid)
if delete_all:
await delete_all_messages(i, uid)
count += 1
groups.append(mention_group(i))
except Exception: # noqa
pass
if not sender:
sender = await bot.get_users(uid)
if count == 0:
text = f'{lang("sb_no")} {sender.mention}'
else:
text = f'{lang("sb_per")} {count} {lang("sb_in")} {sender.mention}'
await message.edit(text)
groups = f'\n{lang("sb_pro")}\n' + "\n".join(groups) if groups else ""
await log(f"{text}\nuid: `{uid}` {groups}")
add_delete_message_job(message, 10)