feat: reverify

This commit is contained in:
xtaodada 2022-07-05 18:42:47 +08:00
parent 0b9dfffa44
commit b1a597425c
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659
2 changed files with 64 additions and 2 deletions

61
plugins/reverify.py Normal file
View File

@ -0,0 +1,61 @@
import contextlib
from pyrogram import filters
from pyrogram.enums import ChatMemberStatus
from datetime import datetime, timedelta
from pyromod.utils.errors import TimeoutConversationError
from sticker.single_utils import Message, Client
from sticker import bot, log
MSG = """您好 %s ,您被管理员要求重新验证。
您需要在 30 秒内发送任意一个 贴纸 来完成验证"""
@bot.on_message(filters=filters.group & filters.command("reverify"))
async def re_verify(client: Client, message: Message):
if not message.from_user or not message.reply_to_message:
return
if not message.reply_to_message.from_user:
return
chat = message.chat
user = message.from_user
member = await client.get_chat_member(chat.id, user.id)
if member.status not in [ChatMemberStatus.OWNER, ChatMemberStatus.ADMINISTRATOR]:
return
user = message.reply_to_message.from_user
with contextlib.suppress(Exception):
await message.delete()
try:
msg = await message.reply_to_message.reply(MSG % user.mention)
except Exception as e:
return
try:
msg_ = await client.listen(chat.id, filters=filters.user(user.id), timeout=30)
with contextlib.suppress(Exception):
await msg.delete()
if not msg_.sticker:
with contextlib.suppress(Exception):
await message.reply_to_message.delete()
with contextlib.suppress(Exception):
await bot.ban_chat_member(chat.id, user.id, datetime.now() + timedelta(minutes=5))
with contextlib.suppress(Exception):
await log(chat, user, "FAIL_ERROR")
else:
with contextlib.suppress(Exception):
await log(chat, user, "ACCEPT")
with contextlib.suppress(Exception):
await msg_.delete()
except TimeoutConversationError:
with contextlib.suppress(Exception):
await msg.delete()
with contextlib.suppress(Exception):
await message.reply_to_message.delete()
with contextlib.suppress(Exception):
await bot.ban_chat_member(chat.id, user.id, datetime.now() + timedelta(minutes=5))
with contextlib.suppress(Exception):
await log(chat, user, "FAIL_TIMEOUT")

View File

@ -43,10 +43,11 @@ async def chat_members_handle(client: Client, message: Message):
await bot.ban_chat_member(chat.id, user.id, datetime.now() + timedelta(minutes=5))
with contextlib.suppress(Exception):
await log(chat, user, "FAIL_ERROR")
else:
with contextlib.suppress(Exception):
await log(chat, user, "ACCEPT")
with contextlib.suppress(Exception):
await msg_.delete()
with contextlib.suppress(Exception):
await log(chat, user, "ACCEPT")
except TimeoutConversationError:
with contextlib.suppress(Exception):
await msg.delete()