
    il                         d Z ddl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mZ erddlmZ  G d d	e	eeef                   Zd
S )z4This module contains the StringCommandHandler class.    )TYPE_CHECKINGAny)DEFAULT_TRUE)DVType)BaseHandler)CCTRTHandlerCallback)Applicationc            
            e Zd ZdZdZefdddedeeee	f         de
e         f fdZd	ed
ee         dz  fdZded	edddee         dz  d
df
dZ xZS )StringCommandHandlera  Handler class to handle string commands. Commands are string updates that start with
    ``/``. The handler will add a :obj:`list` to the
    :class:`CallbackContext` named :attr:`CallbackContext.args`. It will contain a list of strings,
    which is the text following the command split on single whitespace characters.

    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:
        command (:obj:`str`): The command this handler should listen for.
        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:
        command (:obj:`str`): The command this handler should listen for.
        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`.

    )commandselfzStringCommandHandler[CCT, RT]r   callbackblockc                 \    t                                          ||           || _        d S )N)r   )super__init__r   )r   r   r   r   	__class__s       k/Users/shanyulin/my-agent/.venv/lib/python3.11/site-packages/telegram/ext/_handlers/stringcommandhandler.pyr   zStringCommandHandler.__init__I   s-     	///#    updatereturnNc                     t          |t                    rM|                    d          r8|dd                             d          }|d         | j        k    r
|dd         S dS )a	  Determines whether an update should be passed to this handler's :attr:`callback`.

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

        Returns:
            list[:obj:`str`]: List containing the text command split on whitespace.

        /   N r   )
isinstancestr
startswithsplitr   )r   r   argss      r   check_updatez!StringCommandHandler.check_updateR   si     fc"" 	 v'8'8'='= 	 !"":##C((DAw$,&&ABBxtr   contextapplicationz)Application[Any, CCT, Any, Any, Any, Any]check_resultc                     ||_         dS )zqAdd text after the command to :attr:`CallbackContext.args` as list, split on single
        whitespaces.
        N)r"   )r   r$   r   r%   r&   s        r   collect_additional_contextz/StringCommandHandler.collect_additional_contextb   s     $r   )__name__
__module____qualname____doc__	__slots__r   r   r
   r   r	   r   boolr   objectlistr#   r(   __classcell__)r   s   @r   r   r       s       $ $L I +	$ $-$$ "#sB,/$ d|	$ $ $ $ $ $6 d3i$.>     
$
$ 
$ A	
$
 3i$&
$ 

$ 
$ 
$ 
$ 
$ 
$ 
$ 
$r   r   N)r,   typingr   r   telegram._utils.defaultvaluer   telegram._utils.typesr   "telegram.ext._handlers.basehandlerr   telegram.ext._utils.typesr   r	   r
   telegram.extr   r   r    r   r   <module>r9      s   & ; : % % % % % % % % 5 5 5 5 5 5 ( ( ( ( ( ( : : : : : : > > > > > > > > > > )((((((L$ L$ L$ L$ L$;sC|4 L$ L$ L$ L$ L$r   