|
30 | 30 | • `{i}unpin (all) <reply to message>`
|
31 | 31 | Unpin the message(s) in the chat.
|
32 | 32 |
|
| 33 | +• `{i}pinned` |
| 34 | + Get pinned message in the current chat. |
| 35 | +
|
| 36 | +• `{i}listpinned` |
| 37 | + Get all pinned messages in current chat. |
| 38 | +
|
33 | 39 | • `{i}purge <reply to message>`
|
34 | 40 | Purge all messages from the replied message.
|
35 | 41 |
|
|
51 | 57 | from telethon.errors import BadRequestError
|
52 | 58 | from telethon.errors.rpcerrorlist import UserIdInvalidError
|
53 | 59 | from telethon.tl.functions.channels import EditAdminRequest
|
54 |
| -from telethon.tl.types import ChatAdminRights |
| 60 | +from telethon.tl.types import ChatAdminRights, InputMessagesFilterPinned |
55 | 61 |
|
56 | 62 | from . import *
|
57 | 63 |
|
@@ -427,4 +433,48 @@ async def editer(edit):
|
427 | 433 | i = i + 1
|
428 | 434 |
|
429 | 435 |
|
| 436 | +@ultroid_cmd(pattern="pinned") |
| 437 | +async def get_pinned(event): |
| 438 | + x = await eor(event, get_string("com_1")) |
| 439 | + chat_id = (str(event.chat_id)).replace("-100", "") |
| 440 | + chat_name = (await event.get_chat()).title |
| 441 | + tem = "" |
| 442 | + c = 0 |
| 443 | + |
| 444 | + async for i in ultroid.iter_messages( |
| 445 | + event.chat_id, filter=InputMessagesFilterPinned |
| 446 | + ): |
| 447 | + c += 1 |
| 448 | + tem += f"The pinned message in {chat_name} can be found <a href=https://t.me/c/{chat_id}/{i.id}>here.</a>" |
| 449 | + if c == 1: |
| 450 | + return await x.edit(tem, parse_mode="html") |
| 451 | + |
| 452 | + if tem == "": |
| 453 | + return await eod(x, "There is no pinned message in chat!", time=5) |
| 454 | + |
| 455 | + |
| 456 | +@ultroid_cmd(pattern="listpinned") |
| 457 | +async def get_all_pinned(event): |
| 458 | + x = await eor(event, get_string("com_1")) |
| 459 | + chat_id = (str(event.chat_id)).replace("-100", "") |
| 460 | + chat_name = (await event.get_chat()).title |
| 461 | + a = "" |
| 462 | + c = 1 |
| 463 | + async for i in ultroid.iter_messages( |
| 464 | + event.chat_id, filter=InputMessagesFilterPinned |
| 465 | + ): |
| 466 | + a += f"{c}. <a href=https://t.me/c/{chat_id}/{i.id}>Go to message.</a>\n" |
| 467 | + c += 1 |
| 468 | + |
| 469 | + if c == 1: |
| 470 | + m = f"<b>The pinned message in {chat_name}:</b>\n\n" |
| 471 | + else: |
| 472 | + m = f"<b>List of pinned message(s) in {chat_name}:</b>\n\n" |
| 473 | + |
| 474 | + if a == "": |
| 475 | + return await eod(x, "There is no message pinned in this group!", time=5) |
| 476 | + |
| 477 | + await x.edit(m + a, parse_mode="html") |
| 478 | + |
| 479 | + |
430 | 480 | HELP.update({f"{__name__.split('.')[1]}": f"{__doc__.format(i=HNDLR)}"})
|
0 commit comments