
    ՟f                         d Z ddlZddl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 ddlmZmZ  ed	      Z G d
 deeeef         Zy)z7This module contains the PreCheckoutQueryHandler class.    N)OptionalPatternTypeVarUnion)Update)DEFAULT_TRUE)DVType)BaseHandler)CCTHandlerCallbackRTc                   v     e Zd ZdZdZedfdddeeee	f   de
e   deeeee   f      f fd	Zd
edefdZ xZS )PreCheckoutQueryHandlera  Handler class to handle Telegram :attr:`telegram.Update.pre_checkout_query`.

    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.

    Examples:
        :any:`Payment Bot <examples.paymentbot>`

    Args:
        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)

            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`
        pattern (:obj:`str` | :func:`re.Pattern <re.compile>`, optional): Optional. Regex pattern
            to test :attr:`telegram.PreCheckoutQuery.invoice_payload` against.

            .. versionadded:: 20.8

    Attributes:
        callback (:term:`coroutine function`): The callback function for this handler.
        block (:obj:`bool`): Determines whether the callback will run in a blocking way..
        pattern (:obj:`str` | :func:`re.Pattern <re.compile>`, optional): Optional. Regex pattern
            to test :attr:`telegram.PreCheckoutQuery.invoice_payload` against.

            .. versionadded:: 20.8

    )patternNselfz PreCheckoutQueryHandler[CCT, RT]callbackblockr   c                 p    t         |   ||       |t        j                  |      | _        y d | _        y )N)r   )super__init__recompiler   )r   r   r   r   	__class__s       i/var/www/cvtools/html/venv/lib/python3.12/site-packages/telegram/ext/_handlers/precheckoutqueryhandler.pyr   z PreCheckoutQueryHandler.__init__K   s3     	/FMFYrzz'/B_c    updatereturnc                     t        |t              rL|j                  r@|j                  j                  }| j                  r| j                  j                  |      ryyyy)zDetermines whether an update should be passed to this handler's :attr:`callback`.

        Args:
            update (:class:`telegram.Update` | :obj:`object`): Incoming update.

        Returns:
            :obj:`bool`

        TF)
isinstancer   pre_checkout_queryinvoice_payloadr   match)r   r   r!   s      r   check_updatez$PreCheckoutQueryHandler.check_updateU   sP     ff%&*C*C$77GGO||<<%%o6  r   )__name__
__module____qualname____doc__	__slots__r   r   r   r   r   r	   boolr   r   strr   r   objectr#   __classcell__)r   s   @r   r   r   "   s{    $L I
 +6:	d0d!&#r/2d d|d %WS\ 123	d6 d r   r   )r'   r   typingr   r   r   r   telegramr   telegram._utils.defaultvaluer   telegram._utils.typesr	   "telegram.ext._handlers.basehandlerr
   telegram.ext._utils.typesr   r   r   r    r   r   <module>r4      sF   & > 
 4 4  5 ( : :T]Dk&#r/: Dr   