2016-04-16 15:21:19 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2022-01-03 08:15:18 +01:00
|
|
|
# Copyright (C) 2015-2022
|
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 StringRegexHandler class."""
|
2016-04-16 15:21:19 +02:00
|
|
|
|
|
|
|
import re
|
2022-04-24 12:38:09 +02:00
|
|
|
from typing import TYPE_CHECKING, Match, Optional, Pattern, TypeVar, Union
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram._utils.defaultvalue import DEFAULT_TRUE
|
2022-04-24 12:38:09 +02:00
|
|
|
from telegram._utils.types import DVInput
|
2022-05-12 18:18:40 +02:00
|
|
|
from telegram.ext._handler import BaseHandler
|
2022-04-24 12:38:09 +02:00
|
|
|
from telegram.ext._utils.types import CCT, HandlerCallback
|
2020-10-31 16:33:34 +01: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-16 15:21:19 +02:00
|
|
|
|
2022-05-12 18:18:40 +02:00
|
|
|
class StringRegexHandler(BaseHandler[str, CCT]):
|
|
|
|
"""BaseHandler class to handle string updates based on a regex which checks the update content.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2022-02-09 17:30:16 +01:00
|
|
|
Read the documentation of the :mod:`re` module for more information. The :func:`re.match`
|
|
|
|
function is used to determine if an update should be handled by this handler.
|
2016-04-16 16:36:12 +02:00
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Note:
|
2022-04-24 12:38:09 +02:00
|
|
|
This handler is not used to handle Telegram :class:`telegram.Update`, but strings manually
|
2017-07-23 22:33:08 +02:00
|
|
|
put in the queue. For example to send messages with the bot using command line or API.
|
|
|
|
|
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
|
|
|
pattern (:obj:`str` | :func:`re.Pattern <re.compile>`): The regex pattern.
|
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
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
2022-02-09 17:30:16 +01:00
|
|
|
pattern (:obj:`str` | :func:`re.Pattern <re.compile>`): The regex pattern.
|
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-16 15:21:19 +02:00
|
|
|
|
2021-08-29 18:15:04 +02:00
|
|
|
__slots__ = ("pattern",)
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2016-05-15 03:46:40 +02:00
|
|
|
def __init__(
|
|
|
|
self,
|
2020-10-06 19:28:40 +02:00
|
|
|
pattern: Union[str, Pattern],
|
2022-04-24 12:38:09 +02:00
|
|
|
callback: HandlerCallback[str, CCT, RT],
|
|
|
|
block: DVInput[bool] = DEFAULT_TRUE,
|
2020-10-06 19:28:40 +02:00
|
|
|
):
|
2022-04-24 12:38:09 +02:00
|
|
|
super().__init__(callback, block=block)
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2020-06-15 18:20:51 +02:00
|
|
|
if isinstance(pattern, str):
|
2016-04-16 15:21:19 +02:00
|
|
|
pattern = re.compile(pattern)
|
|
|
|
|
|
|
|
self.pattern = pattern
|
|
|
|
|
2021-01-30 11:38:54 +01:00
|
|
|
def check_update(self, update: object) -> Optional[Match]:
|
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 (:obj:`object`): The incoming update.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
Returns:
|
2022-04-24 12:38:09 +02:00
|
|
|
:obj:`None` | :obj:`re.match`
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2020-06-15 18:20:51 +02:00
|
|
|
if isinstance(update, str):
|
2018-09-21 08:57:01 +02:00
|
|
|
match = re.match(self.pattern, update)
|
|
|
|
if match:
|
|
|
|
return match
|
2020-10-06 19:28:40 +02:00
|
|
|
return None
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def collect_additional_context(
|
|
|
|
self,
|
2021-06-06 10:37:53 +02:00
|
|
|
context: CCT,
|
2022-11-11 18:18:42 +01:00
|
|
|
update: str, # skipcq: BAN-B301
|
|
|
|
application: "Application", # skipcq: BAN-B301
|
2020-10-06 19:28:40 +02:00
|
|
|
check_result: Optional[Match],
|
|
|
|
) -> None:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Add the result of ``re.match(pattern, update)`` to :attr:`CallbackContext.matches` as
|
|
|
|
list with one element.
|
|
|
|
"""
|
2020-10-06 19:28:40 +02:00
|
|
|
if self.pattern and check_result:
|
2019-02-13 12:07:25 +01:00
|
|
|
context.matches = [check_result]
|