2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
2021-01-01 21:58:48 +00:00
|
|
|
# Copyright (C) 2017-2021 Dan <https://github.com/delivrance>
|
2019-06-14 02:52:05 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# This file is part of Pyrogram.
|
2019-06-14 02:52:05 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram 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.
|
2019-06-14 02:52:05 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram 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.
|
2019-06-14 02:52:05 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
2019-06-14 02:52:05 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
from pyrogram import raw
|
|
|
|
from pyrogram import types
|
|
|
|
from pyrogram import utils
|
|
|
|
from pyrogram.scaffold import Scaffold
|
2020-08-22 07:22:14 +00:00
|
|
|
from .inline_session import get_session
|
2019-06-14 02:52:05 +00:00
|
|
|
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
class EditInlineReplyMarkup(Scaffold):
|
2020-08-21 05:28:27 +00:00
|
|
|
async def edit_inline_reply_markup(
|
2019-06-14 02:52:05 +00:00
|
|
|
self,
|
|
|
|
inline_message_id: str,
|
2020-08-22 06:05:05 +00:00
|
|
|
reply_markup: "types.InlineKeyboardMarkup" = None
|
2019-06-14 02:52:05 +00:00
|
|
|
) -> bool:
|
2019-07-25 09:22:14 +00:00
|
|
|
"""Edit only the reply markup of inline messages sent via the bot (for inline bots).
|
2019-06-14 02:52:05 +00:00
|
|
|
|
|
|
|
Parameters:
|
|
|
|
inline_message_id (``str``):
|
|
|
|
Identifier of the inline message.
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
reply_markup (:obj:`~pyrogram.types.InlineKeyboardMarkup`, *optional*):
|
2019-06-14 02:52:05 +00:00
|
|
|
An InlineKeyboardMarkup object.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
``bool``: On success, True is returned.
|
|
|
|
|
2019-07-25 09:22:14 +00:00
|
|
|
Example:
|
|
|
|
.. code-block:: python
|
|
|
|
|
2020-10-31 18:29:39 +00:00
|
|
|
from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton
|
2019-07-25 09:22:14 +00:00
|
|
|
|
|
|
|
# Bots only
|
|
|
|
app.edit_inline_reply_markup(
|
|
|
|
inline_message_id,
|
|
|
|
InlineKeyboardMarkup([[
|
|
|
|
InlineKeyboardButton("New button", callback_data="new_data")]]))
|
2019-06-14 02:52:05 +00:00
|
|
|
"""
|
2020-08-22 07:22:14 +00:00
|
|
|
|
|
|
|
unpacked = utils.unpack_inline_message_id(inline_message_id)
|
|
|
|
dc_id = unpacked.dc_id
|
|
|
|
|
2020-08-26 05:43:57 +00:00
|
|
|
session = await get_session(self, dc_id)
|
2020-08-22 07:22:14 +00:00
|
|
|
|
|
|
|
return await session.send(
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.functions.messages.EditInlineBotMessage(
|
2020-08-22 07:22:14 +00:00
|
|
|
id=unpacked,
|
2021-03-17 16:13:55 +00:00
|
|
|
reply_markup=await reply_markup.write(self) if reply_markup else None,
|
2020-08-27 12:12:51 +00:00
|
|
|
),
|
|
|
|
sleep_threshold=self.sleep_threshold
|
2019-06-14 02:52:05 +00:00
|
|
|
)
|