
    i                         d Z ddlZddlmZmZmZmZmZmZm	Z	 ddl
mZ ddlmZ ddlmZ ddlmZmZ erddlmZ  ed	          Z G d
 deeef                   ZdS )z2This module contains the StringRegexHandler class.    N)TYPE_CHECKINGAnyMatchOptionalPatternTypeVarUnion)DEFAULT_TRUE)DVType)BaseHandler)CCTHandlerCallback)ApplicationRTc            
            e Zd ZdZdZefdeeee         f         de	ee
ef         dee         f fdZdedeee                  fd	Zd
e
dedddeee                  ddf
dZ xZS )StringRegexHandlera|  Handler class to handle string updates based on a regex which checks the update content.

    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.

    Note:
        This handler is not used to handle Telegram :class:`telegram.Update`, but strings manually
        put in the queue. For example to send messages with the bot using command line or API.

    Warning:
        When setting :paramref:`block` to :obj:`False`, you cannot rely on adding custom
        attributes to :class:`telegram.ext.CallbackContext`. See its docs for more info.

    Args:
        pattern (:obj:`str` | :func:`re.Pattern <re.compile>`): The regex pattern.
        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: str, context: CallbackContext)

            The return value of the callback is usually ignored except for the special case of
            :class:`telegram.ext.ConversationHandler`.
        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`.

            .. seealso:: :wiki:`Concurrency`

    Attributes:
        pattern (:obj:`str` | :func:`re.Pattern <re.compile>`): The regex pattern.
        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`.

    )patternr   callbackblockc                     t                                          ||           t          |t                    rt	          j        |          }|| _        d S )N)r   )super__init__
isinstancestrrecompiler   )selfr   r   r   	__class__s       o/var/www/html/crypto-bot/backend/venv/lib/python3.11/site-packages/telegram/ext/_handlers/stringregexhandler.pyr   zStringRegexHandler.__init__L   sN     	///gs## 	*j))G18    updatereturnc                 l    t          |t                    rt          j        | j        |          x}r|S dS )zDetermines whether an update should be passed to this handler's :attr:`callback`.

        Args:
            update (:obj:`object`): The incoming update.

        Returns:
            :obj:`None` | :obj:`re.match`

        N)r   r   r   matchr   )r   r!   r$   s      r   check_updatezStringRegexHandler.check_updateY   s:     fc"" 	$,1O1O(O 	Ltr    contextapplicationz)Application[Any, CCT, Any, Any, Any, Any]check_resultNc                 0    | j         r|r|g|_        dS dS dS )z}Add the result of ``re.match(pattern, update)`` to :attr:`CallbackContext.matches` as
        list with one element.
        N)r   matches)r   r&   r!   r'   r(   s        r   collect_additional_contextz-StringRegexHandler.collect_additional_contextg   s6     < 	-L 	-+nGOOO	- 	- 	- 	-r    )__name__
__module____qualname____doc__	__slots__r
   r	   r   r   r   r   r   r   boolr   objectr   r   r%   r+   __classcell__)r   s   @r   r   r   #   s       $ $L I +	9 9sGCL()9 "#sB,/9 d|	9 9 9 9 9 96 huSz.B    -- - A	-
 uSz*- 
- - - - - - - -r    r   )r/   r   typingr   r   r   r   r   r   r	   telegram._utils.defaultvaluer
   telegram._utils.typesr   "telegram.ext._handlers.basehandlerr   telegram.ext._utils.typesr   r   telegram.extr   r   r   r    r    r   <module>r;      s  & 9 8 				 O O O O O O O O O O O O O O O O O O 5 5 5 5 5 5 ( ( ( ( ( ( : : : : : : : : : : : : : : )((((((WT]]O- O- O- O- O-S#X. O- O- O- O- O-r    