pyrofork: Add delete_scheduled_messages method

Signed-off-by: wulan17 <wulan17@nusantararom.org>
This commit is contained in:
wulan17 2024-08-02 19:28:15 +07:00
parent b081928452
commit ee8c19d3f4
No known key found for this signature in database
GPG key ID: 318CD6CD3A6AC0A5
3 changed files with 72 additions and 0 deletions

View file

@ -193,6 +193,7 @@ def pyrogram_api():
edit_inline_reply_markup edit_inline_reply_markup
send_chat_action send_chat_action
delete_messages delete_messages
delete_scheduled_messages
get_available_effects get_available_effects
get_messages get_messages
get_scheduled_messages get_scheduled_messages

View file

@ -20,6 +20,7 @@
from .copy_media_group import CopyMediaGroup from .copy_media_group import CopyMediaGroup
from .copy_message import CopyMessage from .copy_message import CopyMessage
from .delete_messages import DeleteMessages from .delete_messages import DeleteMessages
from .delete_scheduled_messages import DeleteScheduledMessages
from .download_media import DownloadMedia from .download_media import DownloadMedia
from .edit_inline_caption import EditInlineCaption from .edit_inline_caption import EditInlineCaption
from .edit_inline_media import EditInlineMedia from .edit_inline_media import EditInlineMedia
@ -74,6 +75,7 @@ from .vote_poll import VotePoll
class Messages( class Messages(
DeleteMessages, DeleteMessages,
DeleteScheduledMessages,
EditMessageCaption, EditMessageCaption,
EditMessageReplyMarkup, EditMessageReplyMarkup,
EditMessageMedia, EditMessageMedia,

View file

@ -0,0 +1,69 @@
# Pyrofork - Telegram MTProto API Client Library for Python
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan>
#
# This file is part of Pyrofork.
#
# Pyrofork is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrofork is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrofork. If not, see <http://www.gnu.org/licenses/>.
from typing import Union, Iterable
import pyrogram
from pyrogram import raw
class DeleteScheduledMessages:
async def delete_scheduled_messages(
self: "pyrogram.Client",
chat_id: Union[int, str],
message_ids: Union[int, Iterable[int]]
) -> int:
"""Delete scheduled messages.
.. include:: /_includes/usable-by/users-bots.rst
Parameters:
chat_id (``int`` | ``str``):
Unique identifier (int) or username (str) of the target chat.
For your personal cloud (Saved Messages) you can simply use "me" or "self".
For a contact that exists in your Telegram address book you can use his phone number (str).
You can also use chat public link in form of *t.me/<username>* (str).
message_ids (``int`` | Iterable of ``int``):
An iterable of message identifiers to delete (integers) or a single message id.
Returns:
``int`` | List of ``int``: In case *message_ids* was not
a list, a single message id is returned, otherwise a list of messages ids is returned.
Example:
.. code-block:: python
# Delete one message
await app.delete_scheduled_messages(chat_id, message_id)
# Delete multiple messages at once
await app.delete_scheduled_messages(chat_id, list_of_message_ids)
"""
peer = await self.resolve_peer(chat_id)
is_iterable = not isinstance(message_ids, int)
message_ids = list(message_ids) if is_iterable else [message_ids]
r = await self.invoke(
raw.functions.channels.DeleteMessages(
peer=peer,
id=message_ids
)
)
return r.messages if is_iterable else r.messages[0]