2017-05-22 13:20:26 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2023-01-01 21:31:29 +01:00
|
|
|
# Copyright (C) 2015-2023
|
2017-05-22 13:20:26 +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 PreCheckoutQueryHandler class."""
|
2021-01-30 11:38:54 +01:00
|
|
|
|
2017-05-22 13:20:26 +02:00
|
|
|
|
|
|
|
from telegram import Update
|
2023-06-25 15:08:26 +02:00
|
|
|
from telegram.ext._basehandler import BaseHandler
|
2021-10-10 15:10:21 +02:00
|
|
|
from telegram.ext._utils.types import CCT
|
2020-10-31 16:33:34 +01:00
|
|
|
|
2017-05-22 13:20:26 +02:00
|
|
|
|
2022-05-12 18:18:40 +02:00
|
|
|
class PreCheckoutQueryHandler(BaseHandler[Update, CCT]):
|
|
|
|
"""BaseHandler class to handle Telegram :attr:`telegram.Update.pre_checkout_query`.
|
2017-05-22 13:20:26 +02:00
|
|
|
|
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.
|
|
|
|
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
Examples:
|
|
|
|
:any:`Payment Bot <examples.paymentbot>`
|
2022-08-27 11:46:51 +02:00
|
|
|
|
2017-05-22 13:20:26 +02:00
|
|
|
Args:
|
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
|
|
|
|
2023-01-01 16:24:00 +01:00
|
|
|
.. seealso:: :wiki:`Concurrency`
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
2022-04-24 12:38:09 +02:00
|
|
|
callback (:term:`coroutine function`): The callback function for this handler.
|
|
|
|
block (:obj:`bool`): Determines whether the callback will run in a blocking way..
|
2020-12-30 15:59:50 +01:00
|
|
|
|
2017-05-22 13:20:26 +02:00
|
|
|
"""
|
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = ()
|
|
|
|
|
2021-01-30 11:38:54 +01:00
|
|
|
def check_update(self, update: object) -> bool:
|
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 (:class:`telegram.Update` | :obj:`object`): Incoming update.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`
|
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2020-10-06 19:28:40 +02:00
|
|
|
return isinstance(update, Update) and bool(update.pre_checkout_query)
|