2016-04-16 15:21:19 +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-16 15:21:19 +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 ChosenInlineResultHandler class."""
|
2021-05-19 10:32:11 +02:00
|
|
|
import re
|
2023-02-02 18:55:07 +01:00
|
|
|
from typing import TYPE_CHECKING, Any, Match, Optional, Pattern, TypeVar, Union, cast
|
2016-04-16 15:21:19 +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
|
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
|
2020-10-09 17:22:07 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
RT = TypeVar("RT")
|
|
|
|
|
2021-05-19 10:32:11 +02:00
|
|
|
if TYPE_CHECKING:
|
2022-06-02 10:08:15 +02:00
|
|
|
from telegram.ext import Application
|
2021-05-19 10:32:11 +02:00
|
|
|
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2022-05-12 18:18:40 +02:00
|
|
|
class ChosenInlineResultHandler(BaseHandler[Update, CCT]):
|
2023-09-03 14:13:19 +02:00
|
|
|
"""Handler class to handle Telegram updates that contain
|
2022-04-24 12:38:09 +02:00
|
|
|
:attr:`telegram.Update.chosen_inline_result`.
|
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-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`.
|
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-01-01 16:24:00 +01:00
|
|
|
.. seealso:: :wiki:`Concurrency`
|
2022-02-09 17:30:16 +01:00
|
|
|
pattern (:obj:`str` | :func:`re.Pattern <re.compile>`, optional): Regex pattern. If not
|
|
|
|
:obj:`None`, :func:`re.match`
|
2021-05-19 10:32:11 +02:00
|
|
|
is used on :attr:`telegram.ChosenInlineResult.result_id` to determine if an update
|
|
|
|
should be handled by this handler. This is accessible in the callback as
|
|
|
|
:attr:`telegram.ext.CallbackContext.matches`.
|
|
|
|
|
|
|
|
.. versionadded:: 13.6
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
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`.
|
2021-05-19 10:32:11 +02:00
|
|
|
pattern (`Pattern`): Optional. Regex pattern to test
|
|
|
|
:attr:`telegram.ChosenInlineResult.result_id` against.
|
|
|
|
|
|
|
|
.. versionadded:: 13.6
|
2020-12-30 15:59:50 +01:00
|
|
|
|
2016-04-16 16:36:12 +02:00
|
|
|
"""
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = ("pattern",)
|
|
|
|
|
2021-05-19 10:32:11 +02:00
|
|
|
def __init__(
|
|
|
|
self,
|
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,
|
2023-05-18 07:57:59 +02:00
|
|
|
pattern: Optional[Union[str, Pattern[str]]] = None,
|
2021-05-19 10:32:11 +02:00
|
|
|
):
|
2022-04-24 12:38:09 +02:00
|
|
|
super().__init__(callback, block=block)
|
2021-05-19 10:32:11 +02:00
|
|
|
|
|
|
|
if isinstance(pattern, str):
|
|
|
|
pattern = re.compile(pattern)
|
|
|
|
|
2023-02-02 18:55:07 +01:00
|
|
|
self.pattern: Optional[Union[str, Pattern[str]]] = pattern
|
2021-05-19 10:32:11 +02:00
|
|
|
|
2021-01-30 11:38:54 +01:00
|
|
|
def check_update(self, update: object) -> Optional[Union[bool, object]]:
|
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:
|
2022-04-24 12:38:09 +02:00
|
|
|
:obj:`bool` | :obj:`re.match`
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2021-05-19 10:32:11 +02:00
|
|
|
if isinstance(update, Update) and update.chosen_inline_result:
|
|
|
|
if self.pattern:
|
2023-06-29 18:17:47 +02:00
|
|
|
if match := re.match(self.pattern, update.chosen_inline_result.result_id):
|
2021-05-19 10:32:11 +02:00
|
|
|
return match
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
return None
|
|
|
|
|
|
|
|
def collect_additional_context(
|
|
|
|
self,
|
2022-06-02 10:08:15 +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
|
2023-02-02 18:55:07 +01:00
|
|
|
check_result: Union[bool, Match[str]],
|
2021-05-19 10:32:11 +02:00
|
|
|
) -> None:
|
|
|
|
"""This function adds the matched regex pattern result to
|
2021-05-27 09:38:17 +02:00
|
|
|
:attr:`telegram.ext.CallbackContext.matches`.
|
|
|
|
"""
|
2021-05-19 10:32:11 +02:00
|
|
|
if self.pattern:
|
|
|
|
check_result = cast(Match, check_result)
|
|
|
|
context.matches = [check_result]
|