2021-07-11 14:57:20 +00:00
|
|
|
|
from pagermaid.listener import listener
|
|
|
|
|
from pagermaid.utils import alias_command
|
2022-01-18 08:47:20 +00:00
|
|
|
|
from pagermaid import version
|
2021-07-11 14:57:20 +00:00
|
|
|
|
from telethon.tl.types import ChannelParticipantsAdmins
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def eval_time(context, msg, day):
|
|
|
|
|
now = context.date
|
|
|
|
|
old = msg.date
|
2021-07-11 15:43:30 +00:00
|
|
|
|
sec = (now - old).seconds
|
|
|
|
|
days = (now - old).days
|
|
|
|
|
if days < day:
|
2021-07-11 14:57:20 +00:00
|
|
|
|
return None
|
2021-07-11 15:43:30 +00:00
|
|
|
|
minute, sec = divmod(sec, 60)
|
2021-07-11 14:57:20 +00:00
|
|
|
|
hour, minute = divmod(minute, 60)
|
2021-07-11 15:43:30 +00:00
|
|
|
|
|
|
|
|
|
month, days = divmod(days, 30)
|
2021-07-11 14:57:20 +00:00
|
|
|
|
year, month = divmod(month, 12)
|
|
|
|
|
if year > 0:
|
2021-07-11 15:43:30 +00:00
|
|
|
|
time = "%02d年%02d月%02d天%02d时%02d分%02d秒" % (year, month, days, hour, minute, sec)
|
2021-07-11 14:57:20 +00:00
|
|
|
|
elif month > 0:
|
2021-07-11 15:43:30 +00:00
|
|
|
|
time = "%02d月%02d天%02d时%02d分%02d秒" % (month, days, hour, minute, sec)
|
2021-07-11 14:57:20 +00:00
|
|
|
|
elif day > 0:
|
2021-07-11 15:43:30 +00:00
|
|
|
|
time = "%02d天%02d时%02d分%02d秒" % (days, hour, minute, sec)
|
2021-07-11 14:57:20 +00:00
|
|
|
|
elif hour > 0:
|
|
|
|
|
time = "%02d时%02d分%02d秒" % (hour, minute, sec)
|
|
|
|
|
elif minute > 0:
|
|
|
|
|
time = "%02d分%02d秒" % (minute, sec)
|
|
|
|
|
else:
|
|
|
|
|
time = f"{sec}秒"
|
|
|
|
|
return time
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def mention_user(user):
|
|
|
|
|
if user.username:
|
|
|
|
|
mention = user.username
|
|
|
|
|
else:
|
|
|
|
|
mention = user.id
|
|
|
|
|
return f'`{user.first_name}` [`{mention}`]'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@listener(is_plugin=False, outgoing=True, command=alias_command("fuckadmin"),
|
|
|
|
|
description='列出群组中所有潜水超过 n 天的管理员。(n>=7)。',
|
|
|
|
|
parameters="<day>")
|
|
|
|
|
async def fuck_admin(context):
|
2021-07-11 15:08:23 +00:00
|
|
|
|
admins = 0
|
2021-07-11 14:57:20 +00:00
|
|
|
|
if context.is_group:
|
|
|
|
|
pass
|
|
|
|
|
else:
|
|
|
|
|
await context.edit('请在群组中运行。')
|
|
|
|
|
return
|
|
|
|
|
# 读取天数
|
|
|
|
|
text = ''
|
|
|
|
|
if len(context.parameter) == 1:
|
|
|
|
|
try:
|
|
|
|
|
day = int(context.parameter[0])
|
|
|
|
|
if day < 7:
|
|
|
|
|
day = 7
|
|
|
|
|
text += '由于输入的数据过小,时间自动设置为 7 天。\n'
|
2021-08-21 11:35:00 +00:00
|
|
|
|
except (KeyError or ValueError):
|
2021-07-11 14:57:20 +00:00
|
|
|
|
day = 7
|
|
|
|
|
text += '由于输入的数据错误,时间自动设置为 7 天。\n'
|
|
|
|
|
else:
|
|
|
|
|
day = 7
|
|
|
|
|
text += '由于未输入数据,时间自动设置为 7 天。\n'
|
|
|
|
|
text += f'查找潜水超过 {day} 天的管理员中。'
|
|
|
|
|
await context.edit(text)
|
|
|
|
|
# 获取管理员
|
|
|
|
|
text = f'以下是潜水超过 {day} 天的管理员列表:\n\n'
|
|
|
|
|
msg = 0
|
|
|
|
|
async for x in context.client.iter_participants(context.chat, filter=ChannelParticipantsAdmins):
|
|
|
|
|
async for message in context.client.iter_messages(context.chat_id, limit=1, from_user=x):
|
|
|
|
|
msg += 1
|
|
|
|
|
time = eval_time(context, message, day)
|
|
|
|
|
if time:
|
2021-07-11 15:08:23 +00:00
|
|
|
|
admins += 1
|
2021-07-11 14:57:20 +00:00
|
|
|
|
text += f'{mention_user(x)} {time}\n'
|
|
|
|
|
break
|
|
|
|
|
if msg == 1:
|
|
|
|
|
msg = 0
|
|
|
|
|
else:
|
2021-07-11 15:08:23 +00:00
|
|
|
|
admins += 1
|
2021-07-11 14:57:20 +00:00
|
|
|
|
text += f'{mention_user(x)} 从未发言\n'
|
2021-07-11 15:08:23 +00:00
|
|
|
|
if admins > 0:
|
|
|
|
|
await context.edit(text)
|
|
|
|
|
else:
|
|
|
|
|
await context.edit('没有发现潜水超过 n 天的管理员呢,大家都很活跃!')
|