PagerMaid_Plugins/nthmsg.py
2022-01-18 16:47:20 +08:00

28 lines
856 B
Python

from pagermaid.listener import listener
from telethon import functions, types
from pagermaid.utils import alias_command
from pagermaid import version
@listener(outgoing=True, command=alias_command("nthmsg"),
description="获取你发送的第 n 条消息,默认为第一条",
parameters="<n>")
async def nthmsg(context):
await context.edit("获取中 . . .")
try:
n = int(context.parameter[0])
except:
n = 1
m = object()
async for m in context.client.iter_messages(context.chat_id, from_user="me", reverse=True, limit=n):
pass
try:
r = await context.client(
functions.channels.ExportMessageLinkRequest(channel=m.to_id, id=m.id, grouped=True))
except AttributeError:
await context.edit('获取失败。')
return
await context.edit(r.link)