2016-04-14 23:57:40 +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
|
2016-04-14 23:57:40 +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/].
|
2017-09-01 08:43:08 +02:00
|
|
|
"""This module contains the MessageHandler class."""
|
2023-02-02 18:55:07 +01:00
|
|
|
from typing import TYPE_CHECKING, Any, Dict, List, Optional, TypeVar, Union
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2020-10-31 16:33:34 +01:00
|
|
|
from telegram import Update
|
2022-04-24 12:38:09 +02:00
|
|
|
from telegram._utils.defaultvalue import DEFAULT_TRUE
|
2023-02-02 18:55:07 +01:00
|
|
|
from telegram._utils.types import DVType
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram.ext import filters as filters_module
|
2024-01-15 20:15:33 +01:00
|
|
|
from telegram.ext._handlers.basehandler import BaseHandler
|
2022-04-24 12:38:09 +02:00
|
|
|
from telegram.ext._utils.types import CCT, HandlerCallback
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
if TYPE_CHECKING:
|
2022-04-24 12:38:09 +02:00
|
|
|
from telegram.ext import Application
|
2020-10-06 19:28:40 +02:00
|
|
|
|
|
|
|
RT = TypeVar("RT")
|
|
|
|
|
2016-04-25 13:26:52 +02:00
|
|
|
|
2022-05-12 18:18:40 +02:00
|
|
|
class MessageHandler(BaseHandler[Update, CCT]):
|
2023-09-03 14:13:19 +02:00
|
|
|
"""Handler class to handle Telegram messages. They might contain text, media or status
|
2022-05-12 18:18:40 +02:00
|
|
|
updates.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2020-10-04 17:20:33 +02:00
|
|
|
Warning:
|
2022-04-24 12:38:09 +02:00
|
|
|
When setting :paramref:`block` to :obj:`False`, you cannot rely on adding custom
|
2020-10-04 17:20:33 +02:00
|
|
|
attributes to :class:`telegram.ext.CallbackContext`. See its docs for more info.
|
|
|
|
|
2016-04-16 16:36:12 +02:00
|
|
|
Args:
|
2022-02-09 17:30:16 +01:00
|
|
|
filters (:class:`telegram.ext.filters.BaseFilter`): A filter inheriting from
|
2016-12-11 22:44:52 +01:00
|
|
|
:class:`telegram.ext.filters.BaseFilter`. Standard filters can be found in
|
2021-11-20 11:36:18 +01:00
|
|
|
:mod:`telegram.ext.filters`. Filters can be combined using bitwise
|
2022-12-15 15:20:04 +01:00
|
|
|
operators (& for and, | for or, ~ for not). Passing :obj:`None` is a shortcut
|
|
|
|
to passing :class:`telegram.ext.filters.ALL`.
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
|
2023-03-25 19:18:04 +01:00
|
|
|
.. seealso:: :wiki:`Advanced Filters <Extensions---Advanced-Filters>`
|
2022-04-24 12:38:09 +02:00
|
|
|
callback (:term:`coroutine function`): The callback function for this handler. Will be
|
|
|
|
called when :meth:`check_update` has determined that an update should be processed by
|
|
|
|
this handler. Callback signature::
|
|
|
|
|
|
|
|
async def callback(update: Update, context: CallbackContext)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
|
|
|
The return value of the callback is usually ignored except for the special case of
|
|
|
|
:class:`telegram.ext.ConversationHandler`.
|
2022-04-24 12:38:09 +02:00
|
|
|
block (:obj:`bool`, optional): Determines whether the return value of the callback should
|
|
|
|
be awaited before processing the next handler in
|
|
|
|
:meth:`telegram.ext.Application.process_update`. Defaults to :obj:`True`.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2023-01-01 16:24:00 +01:00
|
|
|
.. seealso:: :wiki:`Concurrency`
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
2021-11-20 11:36:18 +01:00
|
|
|
filters (:class:`telegram.ext.filters.BaseFilter`): Only allow updates with these Filters.
|
|
|
|
See :mod:`telegram.ext.filters` for a full list of all available filters.
|
2022-04-24 12:38:09 +02:00
|
|
|
callback (:term:`coroutine function`): The callback function for this handler.
|
|
|
|
block (:obj:`bool`): Determines whether the return value of the callback should be
|
|
|
|
awaited before processing the next handler in
|
|
|
|
:meth:`telegram.ext.Application.process_update`.
|
2020-12-30 15:59:50 +01:00
|
|
|
|
2016-04-16 16:36:12 +02:00
|
|
|
"""
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = ("filters",)
|
|
|
|
|
2016-05-31 15:35:40 +02:00
|
|
|
def __init__(
|
|
|
|
self,
|
2024-01-01 15:58:50 +01:00
|
|
|
filters: Optional[filters_module.BaseFilter],
|
2022-04-24 12:38:09 +02:00
|
|
|
callback: HandlerCallback[Update, CCT, RT],
|
2023-02-02 18:55:07 +01:00
|
|
|
block: DVType[bool] = DEFAULT_TRUE,
|
2020-10-06 19:28:40 +02:00
|
|
|
):
|
2022-04-24 12:38:09 +02:00
|
|
|
super().__init__(callback, block=block)
|
2023-02-02 18:55:07 +01:00
|
|
|
self.filters: filters_module.BaseFilter = (
|
|
|
|
filters if filters is not None else filters_module.ALL
|
|
|
|
)
|
2016-12-11 22:44:52 +01:00
|
|
|
|
2023-02-02 18:55:07 +01:00
|
|
|
def check_update(self, update: object) -> Optional[Union[bool, Dict[str, List[Any]]]]:
|
2022-04-24 12:38:09 +02:00
|
|
|
"""Determines whether an update should be passed to this handler's :attr:`callback`.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
Args:
|
2020-12-16 17:34:57 +01:00
|
|
|
update (:class:`telegram.Update` | :obj:`object`): Incoming update.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`
|
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2021-08-29 18:15:04 +02:00
|
|
|
if isinstance(update, Update):
|
2022-04-24 12:38:09 +02:00
|
|
|
return self.filters.check_update(update) or False
|
2020-10-06 19:28:40 +02:00
|
|
|
return None
|
2019-02-13 12:07:25 +01:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def collect_additional_context(
|
|
|
|
self,
|
2021-06-06 10:37:53 +02:00
|
|
|
context: CCT,
|
2024-05-12 09:13:20 +02:00
|
|
|
update: Update, # noqa: ARG002
|
|
|
|
application: "Application[Any, CCT, Any, Any, Any, Any]", # noqa: ARG002
|
2021-01-30 11:38:54 +01:00
|
|
|
check_result: Optional[Union[bool, Dict[str, object]]],
|
2020-10-06 19:28:40 +02:00
|
|
|
) -> None:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Adds possible output of data filters to the :class:`CallbackContext`."""
|
2019-02-13 12:07:25 +01:00
|
|
|
if isinstance(check_result, dict):
|
|
|
|
context.update(check_result)
|