mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-22 01:15:34 +00:00
74 lines
2.7 KiB
Python
74 lines
2.7 KiB
Python
from telethon.tl.types import ChannelParticipantsAdmins
|
||
from pagermaid.utils import alias_command
|
||
from pagermaid.listener import listener
|
||
import time
|
||
|
||
|
||
@listener(is_plugin=True, outgoing=True, command=alias_command("atadmins"),
|
||
description="一键 AT 本群管理员(仅在群组中有效)",
|
||
parameters="回复消息(可选) <要说的话(可选)>")
|
||
async def atadmins(context):
|
||
await context.edit('正在获取管理员列表中...')
|
||
chat = await context.get_chat()
|
||
try:
|
||
admins = await context.client.get_participants(chat, filter=ChannelParticipantsAdmins)
|
||
except:
|
||
await context.edit('请在群组中运行。')
|
||
return True
|
||
admin_list = []
|
||
if context.arguments == '':
|
||
say = '召唤本群所有管理员'
|
||
else:
|
||
say = context.arguments
|
||
for admin in admins:
|
||
if not admin.bot:
|
||
if admin.username is not None:
|
||
admin_list.extend(['@' + admin.username])
|
||
elif admin.first_name is not None:
|
||
admin_list.extend(['[' + admin.first_name + '](tg://user?id=' + str(admin.id) + ')'])
|
||
send_list = ' , '.join(admin_list)
|
||
reply = await context.get_reply_message()
|
||
if reply:
|
||
await reply.reply(f'{say}:\n{send_list}')
|
||
else:
|
||
await context.reply(f'{say}:\n{send_list}')
|
||
await context.delete()
|
||
|
||
|
||
@listener(is_plugin=True, outgoing=True, command=alias_command("atall"),
|
||
description="一键 AT 本群成员(仅在群组中有效)",
|
||
parameters="回复消息(可选) <要说的话(可选)>")
|
||
async def atall(context):
|
||
await context.edit('正在获取成员列表中...')
|
||
chat = await context.get_chat()
|
||
try:
|
||
users = await context.client.get_participants(chat)
|
||
except:
|
||
await context.edit('请在群组中运行。')
|
||
return True
|
||
user_list = []
|
||
if context.arguments == '':
|
||
say = '召唤本群所有成员'
|
||
else:
|
||
say = context.arguments
|
||
for user in users:
|
||
if not user.bot:
|
||
if len(user_list) < 128:
|
||
if user.username is not None:
|
||
user_list.extend(['@' + user.username])
|
||
elif user.first_name is not None:
|
||
user_list.extend(['[' + user.first_name + '](tg://user?id=' + str(user.id) + ')'])
|
||
else:
|
||
user_list_old = user_list
|
||
text = ' , '.join(user_list_old)
|
||
await context.reply("%s:\n\n%s" % (say, text))
|
||
user_list = []
|
||
time.sleep(1)
|
||
text = ' , '.join(user_list)
|
||
reply = await context.get_reply_message()
|
||
if reply:
|
||
await reply.reply(f'{say}:\n{text}')
|
||
else:
|
||
await context.reply(f'{say}:\n{text}')
|
||
await context.delete()
|