2022-05-03 18:21:50 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2024-02-19 20:06:25 +01:00
|
|
|
# Copyright (C) 2015-2024
|
2022-05-03 18:21:50 +02:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
|
|
|
"""This module contains objects related to Telegram menu buttons."""
|
2023-06-29 18:17:47 +02:00
|
|
|
from typing import TYPE_CHECKING, Dict, Final, Optional, Type
|
2022-05-03 18:21:50 +02:00
|
|
|
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram import constants
|
|
|
|
from telegram._telegramobject import TelegramObject
|
2024-01-17 21:32:37 +01:00
|
|
|
from telegram._utils import enum
|
2022-05-03 18:21:50 +02:00
|
|
|
from telegram._utils.types import JSONDict
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram._webappinfo import WebAppInfo
|
2022-05-03 18:21:50 +02:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from telegram import Bot
|
|
|
|
|
|
|
|
|
|
|
|
class MenuButton(TelegramObject):
|
|
|
|
"""This object describes the bot's menu button in a private chat. It should be one of
|
|
|
|
|
|
|
|
* :class:`telegram.MenuButtonCommands`
|
|
|
|
* :class:`telegram.MenuButtonWebApp`
|
|
|
|
* :class:`telegram.MenuButtonDefault`
|
|
|
|
|
|
|
|
If a menu button other than :class:`telegram.MenuButtonDefault` is set for a private chat,
|
|
|
|
then it is applied in the chat. Otherwise the default menu button is applied. By default, the
|
|
|
|
menu button opens the list of bot commands.
|
|
|
|
|
|
|
|
Objects of this class are comparable in terms of equality. Two objects of this class are
|
|
|
|
considered equal, if their :attr:`type` is equal. For subclasses with additional attributes,
|
|
|
|
the notion of equality is overridden.
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
|
|
|
|
Args:
|
|
|
|
type (:obj:`str`): Type of menu button that the instance represents.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
type (:obj:`str`): Type of menu button that the instance represents.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__slots__ = ("type",)
|
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
def __init__(
|
2023-11-12 10:11:22 +01:00
|
|
|
self,
|
2024-02-07 20:45:57 +01:00
|
|
|
type: str,
|
2023-11-12 10:11:22 +01:00
|
|
|
*,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2022-10-07 11:51:53 +02:00
|
|
|
): # pylint: disable=redefined-builtin
|
|
|
|
super().__init__(api_kwargs=api_kwargs)
|
2024-01-17 21:32:37 +01:00
|
|
|
self.type: str = enum.get_member(constants.MenuButtonType, type, type)
|
2022-05-03 18:21:50 +02:00
|
|
|
|
|
|
|
self._id_attrs = (self.type,)
|
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
@classmethod
|
2024-07-01 19:59:54 +02:00
|
|
|
def de_json(
|
|
|
|
cls, data: Optional[JSONDict], bot: Optional["Bot"] = None
|
|
|
|
) -> Optional["MenuButton"]:
|
2022-05-03 18:21:50 +02:00
|
|
|
"""Converts JSON data to the appropriate :class:`MenuButton` object, i.e. takes
|
|
|
|
care of selecting the correct subclass.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
data (Dict[:obj:`str`, ...]): The JSON data.
|
2024-07-01 19:59:54 +02:00
|
|
|
bot (:class:`telegram.Bot`, optional): The bot associated with this object. Defaults to
|
|
|
|
:obj:`None`, in which case shortcut methods will not be available.
|
|
|
|
|
2024-07-12 17:40:42 +02:00
|
|
|
.. versionchanged:: 21.4
|
2024-07-01 19:59:54 +02:00
|
|
|
:paramref:`bot` is now optional and defaults to :obj:`None`
|
2022-05-03 18:21:50 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
The Telegram object.
|
|
|
|
|
|
|
|
"""
|
|
|
|
data = cls._parse_data(data)
|
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
if data is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
if not data and cls is MenuButton:
|
2022-05-03 18:21:50 +02:00
|
|
|
return None
|
|
|
|
|
2023-08-02 11:51:17 +02:00
|
|
|
_class_mapping: Dict[str, Type[MenuButton]] = {
|
2022-05-03 18:21:50 +02:00
|
|
|
cls.COMMANDS: MenuButtonCommands,
|
|
|
|
cls.WEB_APP: MenuButtonWebApp,
|
|
|
|
cls.DEFAULT: MenuButtonDefault,
|
|
|
|
}
|
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
if cls is MenuButton and data.get("type") in _class_mapping:
|
|
|
|
return _class_mapping[data.pop("type")].de_json(data, bot=bot)
|
2023-03-25 19:18:04 +01:00
|
|
|
return super().de_json(data=data, bot=bot)
|
2022-05-03 18:21:50 +02:00
|
|
|
|
2023-06-29 18:17:47 +02:00
|
|
|
COMMANDS: Final[str] = constants.MenuButtonType.COMMANDS
|
2022-05-03 18:21:50 +02:00
|
|
|
""":const:`telegram.constants.MenuButtonType.COMMANDS`"""
|
2023-06-29 18:17:47 +02:00
|
|
|
WEB_APP: Final[str] = constants.MenuButtonType.WEB_APP
|
2022-05-03 18:21:50 +02:00
|
|
|
""":const:`telegram.constants.MenuButtonType.WEB_APP`"""
|
2023-06-29 18:17:47 +02:00
|
|
|
DEFAULT: Final[str] = constants.MenuButtonType.DEFAULT
|
2022-05-03 18:21:50 +02:00
|
|
|
""":const:`telegram.constants.MenuButtonType.DEFAULT`"""
|
|
|
|
|
|
|
|
|
|
|
|
class MenuButtonCommands(MenuButton):
|
|
|
|
"""Represents a menu button, which opens the bot's list of commands.
|
|
|
|
|
2023-02-08 17:43:14 +01:00
|
|
|
.. include:: inclusions/menu_button_command_video.rst
|
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
.. versionadded:: 20.0
|
|
|
|
Attributes:
|
|
|
|
type (:obj:`str`): :tg-const:`telegram.constants.MenuButtonType.COMMANDS`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__slots__ = ()
|
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def __init__(self, *, api_kwargs: Optional[JSONDict] = None):
|
2022-10-07 11:51:53 +02:00
|
|
|
super().__init__(type=constants.MenuButtonType.COMMANDS, api_kwargs=api_kwargs)
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
2022-05-03 18:21:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
class MenuButtonWebApp(MenuButton):
|
|
|
|
"""Represents a menu button, which launches a
|
|
|
|
`Web App <https://core.telegram.org/bots/webapps>`_.
|
|
|
|
|
|
|
|
Objects of this class are comparable in terms of equality. Two objects of this class are
|
|
|
|
considered equal, if their :attr:`type`, :attr:`text` and :attr:`web_app`
|
|
|
|
are equal.
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
|
|
|
|
Args:
|
|
|
|
text (:obj:`str`): Text of the button.
|
|
|
|
web_app (:class:`telegram.WebAppInfo`): Description of the Web App that will be launched
|
|
|
|
when the user presses the button. The Web App will be able to send an arbitrary
|
2023-01-01 16:24:00 +01:00
|
|
|
message on behalf of the user using the method :meth:`~telegram.Bot.answerWebAppQuery`
|
2024-07-07 13:08:52 +02:00
|
|
|
of :class:`~telegram.Bot`. Alternatively, a ``t.me`` link to a Web App of the bot can
|
|
|
|
be specified in the object instead of the Web App's URL, in which case the Web App
|
|
|
|
will be opened as if the user pressed the link.
|
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
|
|
|
|
Attributes:
|
|
|
|
type (:obj:`str`): :tg-const:`telegram.constants.MenuButtonType.WEB_APP`.
|
|
|
|
text (:obj:`str`): Text of the button.
|
|
|
|
web_app (:class:`telegram.WebAppInfo`): Description of the Web App that will be launched
|
|
|
|
when the user presses the button. The Web App will be able to send an arbitrary
|
2023-01-01 16:24:00 +01:00
|
|
|
message on behalf of the user using the method :meth:`~telegram.Bot.answerWebAppQuery`
|
2024-07-07 13:08:52 +02:00
|
|
|
of :class:`~telegram.Bot`. Alternatively, a ``t.me`` link to a Web App of the bot can
|
|
|
|
be specified in the object instead of the Web App's URL, in which case the Web App
|
|
|
|
will be opened as if the user pressed the link.
|
2022-05-03 18:21:50 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
__slots__ = ("text", "web_app")
|
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def __init__(self, text: str, web_app: WebAppInfo, *, api_kwargs: Optional[JSONDict] = None):
|
2022-10-07 11:51:53 +02:00
|
|
|
super().__init__(type=constants.MenuButtonType.WEB_APP, api_kwargs=api_kwargs)
|
2022-12-15 15:00:36 +01:00
|
|
|
with self._unfrozen():
|
2023-02-02 18:55:07 +01:00
|
|
|
self.text: str = text
|
|
|
|
self.web_app: WebAppInfo = web_app
|
2022-05-03 18:21:50 +02:00
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._id_attrs = (self.type, self.text, self.web_app)
|
2022-05-03 18:21:50 +02:00
|
|
|
|
|
|
|
@classmethod
|
2024-07-01 19:59:54 +02:00
|
|
|
def de_json(
|
|
|
|
cls, data: Optional[JSONDict], bot: Optional["Bot"] = None
|
|
|
|
) -> Optional["MenuButtonWebApp"]:
|
2022-05-03 18:21:50 +02:00
|
|
|
"""See :meth:`telegram.TelegramObject.de_json`."""
|
|
|
|
data = cls._parse_data(data)
|
|
|
|
|
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
|
|
|
|
data["web_app"] = WebAppInfo.de_json(data.get("web_app"), bot)
|
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
return super().de_json(data=data, bot=bot) # type: ignore[return-value]
|
2022-05-03 18:21:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
class MenuButtonDefault(MenuButton):
|
|
|
|
"""Describes that no specific value for the menu button was set.
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
Attributes:
|
|
|
|
type (:obj:`str`): :tg-const:`telegram.constants.MenuButtonType.DEFAULT`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__slots__ = ()
|
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def __init__(self, *, api_kwargs: Optional[JSONDict] = None):
|
2022-10-07 11:51:53 +02:00
|
|
|
super().__init__(type=constants.MenuButtonType.DEFAULT, api_kwargs=api_kwargs)
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|