U
    g                     @   s   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 deeeef ZdS )z7This module contains the PreCheckoutQueryHandler class.    N)OptionalPatternTypeVarUnion)Update)DEFAULT_TRUE)DVType)BaseHandler)CCTHandlerCallbackRTc                	       sd   e Zd ZdZdZedfdeeee	f e
e eeeee f  d fddZeedd	d
Z  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

    )patternNz PreCheckoutQueryHandler[CCT, RT]selfcallbackblockr   c                    s,   t  j||d |d k	r"t|nd | _d S )N)r   )super__init__recompiler   r   	__class__ R/tmp/pip-unpacked-wheel-swnnwir2/telegram/ext/_handlers/precheckoutqueryhandler.pyr   K   s    z PreCheckoutQueryHandler.__init__)updatereturnc                 C   s8   t |tr4|jr4|jj}| jr0| j|r4dS ndS dS )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   Zpre_checkout_queryinvoice_payloadr   match)r   r   r   r   r   r   check_updateU   s    
z$PreCheckoutQueryHandler.check_update)__name__
__module____qualname____doc__	__slots__r   r   r   r
   r   r   boolr   r   strr   r   objectr    __classcell__r   r   r   r   r   "   s   &
r   )r$   r   typingr   r   r   r   Ztelegramr   Ztelegram._utils.defaultvaluer   Ztelegram._utils.typesr   Z"telegram.ext._handlers.basehandlerr	   Ztelegram.ext._utils.typesr
   r   r   r   r   r   r   r   <module>   s   