2016-04-16 15:21:19 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2021-01-03 10:40:24 +05:30
|
|
|
# Copyright (C) 2015-2021
|
2016-04-16 15:21:19 +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 CallbackQueryHandler class."""
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2016-08-06 13:33:38 +02:00
|
|
|
import re
|
2020-10-09 17:22:07 +02:00
|
|
|
from typing import (
|
|
|
|
TYPE_CHECKING,
|
2020-10-31 16:33:34 +01:00
|
|
|
Callable,
|
|
|
|
Dict,
|
|
|
|
Match,
|
2020-10-09 17:22:07 +02:00
|
|
|
Optional,
|
|
|
|
Pattern,
|
2020-10-31 16:33:34 +01:00
|
|
|
TypeVar,
|
|
|
|
Union,
|
2020-10-09 17:22:07 +02:00
|
|
|
cast,
|
|
|
|
)
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2020-10-31 16:33:34 +01:00
|
|
|
from telegram import Update
|
2020-11-18 02:01:01 +05:30
|
|
|
from telegram.utils.helpers import DefaultValue, DEFAULT_FALSE
|
2020-10-31 16:33:34 +01:00
|
|
|
|
|
|
|
from .handler import Handler
|
2021-06-06 10:37:53 +02:00
|
|
|
from .utils.types import CCT
|
2020-10-31 16:33:34 +01:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
if TYPE_CHECKING:
|
2021-06-06 10:37:53 +02:00
|
|
|
from telegram.ext import Dispatcher
|
2020-10-06 19:28:40 +02:00
|
|
|
|
|
|
|
RT = TypeVar('RT')
|
|
|
|
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2021-06-06 10:37:53 +02:00
|
|
|
class CallbackQueryHandler(Handler[Update, CCT]):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Handler class to handle Telegram callback queries. Optionally based on a regex.
|
|
|
|
|
2016-08-06 14:19:41 +02:00
|
|
|
Read the documentation of the ``re`` module for more information.
|
2016-04-16 16:36:12 +02:00
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Note:
|
2021-06-06 11:48:48 +02:00
|
|
|
* :attr:`pass_user_data` and :attr:`pass_chat_data` determine whether a ``dict`` you
|
|
|
|
can use to keep any data in will be sent to the :attr:`callback` function. Related to
|
|
|
|
either the user or the chat that the update was sent in. For each update from the same
|
|
|
|
user or in the same chat, it will be the same ``dict``.
|
|
|
|
|
|
|
|
Note that this is DEPRECATED, and you should use context based callbacks. See
|
|
|
|
https://git.io/fxJuV for more info.
|
|
|
|
* If your bot allows arbitrary objects as ``callback_data``, it may happen that the
|
|
|
|
original ``callback_data`` for the incoming :class:`telegram.CallbackQuery`` can not be
|
|
|
|
found. This is the case when either a malicious client tempered with the
|
|
|
|
``callback_data`` or the data was simply dropped from cache or not persisted. In these
|
|
|
|
cases, an instance of :class:`telegram.ext.InvalidCallbackData` will be set as
|
|
|
|
``callback_data``.
|
|
|
|
|
|
|
|
.. versionadded:: 13.6
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2020-10-04 17:20:33 +02:00
|
|
|
Warning:
|
|
|
|
When setting ``run_async`` to :obj:`True`, you cannot rely on adding custom
|
|
|
|
attributes to :class:`telegram.ext.CallbackContext`. See its docs for more info.
|
|
|
|
|
2016-04-16 16:36:12 +02:00
|
|
|
Args:
|
2018-09-21 08:57:01 +02:00
|
|
|
callback (:obj:`callable`): The callback function for this handler. Will be called when
|
|
|
|
:attr:`check_update` has determined that an update should be processed by this handler.
|
|
|
|
Callback signature for context based API:
|
|
|
|
|
|
|
|
``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`.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
pass_update_queue (:obj:`bool`, optional): If set to :obj:`True`, a keyword argument called
|
2016-05-28 16:04:19 +02:00
|
|
|
``update_queue`` will be passed to the callback function. It will be the ``Queue``
|
2017-07-23 22:33:08 +02:00
|
|
|
instance used by the :class:`telegram.ext.Updater` and :class:`telegram.ext.Dispatcher`
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
that contains new updates which can be used to insert updates. Default is :obj:`False`.
|
2018-09-21 08:57:01 +02:00
|
|
|
DEPRECATED: Please switch to context based callbacks.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
pass_job_queue (:obj:`bool`, optional): If set to :obj:`True`, a keyword argument called
|
2017-07-23 22:33:08 +02:00
|
|
|
``job_queue`` will be passed to the callback function. It will be a
|
|
|
|
:class:`telegram.ext.JobQueue` instance created by the :class:`telegram.ext.Updater`
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
which can be used to schedule new jobs. Default is :obj:`False`.
|
2018-09-21 08:57:01 +02:00
|
|
|
DEPRECATED: Please switch to context based callbacks.
|
2021-06-06 11:48:48 +02:00
|
|
|
pattern (:obj:`str` | `Pattern` | :obj:`callable` | :obj:`type`, optional):
|
|
|
|
Pattern to test :attr:`telegram.CallbackQuery.data` against. If a string or a regex
|
|
|
|
pattern is passed, :meth:`re.match` is used on :attr:`telegram.CallbackQuery.data` to
|
|
|
|
determine if an update should be handled by this handler. If your bot allows arbitrary
|
|
|
|
objects as ``callback_data``, non-strings will be accepted. To filter arbitrary
|
|
|
|
objects you may pass
|
|
|
|
|
|
|
|
* a callable, accepting exactly one argument, namely the
|
|
|
|
:attr:`telegram.CallbackQuery.data`. It must return :obj:`True` or
|
|
|
|
:obj:`False`/:obj:`None` to indicate, whether the update should be handled.
|
|
|
|
* a :obj:`type`. If :attr:`telegram.CallbackQuery.data` is an instance of that type
|
|
|
|
(or a subclass), the update will be handled.
|
|
|
|
|
|
|
|
If :attr:`telegram.CallbackQuery.data` is :obj:`None`, the
|
2021-05-27 09:37:37 +02:00
|
|
|
:class:`telegram.CallbackQuery` update will not be handled.
|
2021-06-06 11:48:48 +02:00
|
|
|
|
|
|
|
.. versionchanged:: 13.6
|
|
|
|
Added support for arbitrary callback data.
|
2017-07-23 22:33:08 +02:00
|
|
|
pass_groups (:obj:`bool`, optional): If the callback should be passed the result of
|
|
|
|
``re.match(pattern, data).groups()`` as a keyword argument called ``groups``.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
Default is :obj:`False`
|
2018-09-21 08:57:01 +02:00
|
|
|
DEPRECATED: Please switch to context based callbacks.
|
2017-07-23 22:33:08 +02:00
|
|
|
pass_groupdict (:obj:`bool`, optional): If the callback should be passed the result of
|
|
|
|
``re.match(pattern, data).groupdict()`` as a keyword argument called ``groupdict``.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
Default is :obj:`False`
|
2018-09-21 08:57:01 +02:00
|
|
|
DEPRECATED: Please switch to context based callbacks.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
pass_user_data (:obj:`bool`, optional): If set to :obj:`True`, a keyword argument called
|
|
|
|
``user_data`` will be passed to the callback function. Default is :obj:`False`.
|
2018-09-21 08:57:01 +02:00
|
|
|
DEPRECATED: Please switch to context based callbacks.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
pass_chat_data (:obj:`bool`, optional): If set to :obj:`True`, a keyword argument called
|
|
|
|
``chat_data`` will be passed to the callback function. Default is :obj:`False`.
|
2018-09-21 08:57:01 +02:00
|
|
|
DEPRECATED: Please switch to context based callbacks.
|
2020-10-04 17:20:33 +02:00
|
|
|
run_async (:obj:`bool`): Determines whether the callback will run asynchronously.
|
|
|
|
Defaults to :obj:`False`.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
|
|
|
callback (:obj:`callable`): The callback function for this handler.
|
|
|
|
pass_update_queue (:obj:`bool`): Determines whether ``update_queue`` will be
|
|
|
|
passed to the callback function.
|
|
|
|
pass_job_queue (:obj:`bool`): Determines whether ``job_queue`` will be passed to
|
|
|
|
the callback function.
|
2021-06-06 11:48:48 +02:00
|
|
|
pattern (`Pattern` | :obj:`callable` | :obj:`type`): Optional. Regex pattern, callback or
|
|
|
|
type to test :attr:`telegram.CallbackQuery.data` against.
|
|
|
|
|
|
|
|
.. versionchanged:: 13.6
|
|
|
|
Added support for arbitrary callback data.
|
2020-12-30 15:59:50 +01:00
|
|
|
pass_groups (:obj:`bool`): Determines whether ``groups`` will be passed to the
|
|
|
|
callback function.
|
|
|
|
pass_groupdict (:obj:`bool`): Determines whether ``groupdict``. will be passed to
|
|
|
|
the callback function.
|
|
|
|
pass_user_data (:obj:`bool`): Determines whether ``user_data`` will be passed to
|
|
|
|
the callback function.
|
|
|
|
pass_chat_data (:obj:`bool`): Determines whether ``chat_data`` will be passed to
|
|
|
|
the callback function.
|
|
|
|
run_async (:obj:`bool`): Determines whether the callback will run asynchronously.
|
|
|
|
|
2016-04-16 16:36:12 +02:00
|
|
|
"""
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2021-05-29 19:48:16 +05:30
|
|
|
__slots__ = ('pattern', 'pass_groups', 'pass_groupdict')
|
|
|
|
|
2020-10-09 17:22:07 +02:00
|
|
|
def __init__(
|
|
|
|
self,
|
2021-06-06 10:37:53 +02:00
|
|
|
callback: Callable[[Update, CCT], RT],
|
2020-10-09 17:22:07 +02:00
|
|
|
pass_update_queue: bool = False,
|
|
|
|
pass_job_queue: bool = False,
|
2021-06-06 11:48:48 +02:00
|
|
|
pattern: Union[str, Pattern, type, Callable[[object], Optional[bool]]] = None,
|
2020-10-09 17:22:07 +02:00
|
|
|
pass_groups: bool = False,
|
|
|
|
pass_groupdict: bool = False,
|
|
|
|
pass_user_data: bool = False,
|
|
|
|
pass_chat_data: bool = False,
|
2020-11-18 02:01:01 +05:30
|
|
|
run_async: Union[bool, DefaultValue] = DEFAULT_FALSE,
|
2020-10-09 17:22:07 +02:00
|
|
|
):
|
2020-06-15 18:20:51 +02:00
|
|
|
super().__init__(
|
2016-10-25 19:28:34 +02:00
|
|
|
callback,
|
|
|
|
pass_update_queue=pass_update_queue,
|
|
|
|
pass_job_queue=pass_job_queue,
|
|
|
|
pass_user_data=pass_user_data,
|
2020-10-04 17:20:33 +02:00
|
|
|
pass_chat_data=pass_chat_data,
|
2020-10-09 17:22:07 +02:00
|
|
|
run_async=run_async,
|
|
|
|
)
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2020-06-15 18:20:51 +02:00
|
|
|
if isinstance(pattern, str):
|
2016-08-06 13:33:38 +02:00
|
|
|
pattern = re.compile(pattern)
|
|
|
|
|
|
|
|
self.pattern = pattern
|
|
|
|
self.pass_groups = pass_groups
|
|
|
|
self.pass_groupdict = pass_groupdict
|
|
|
|
|
2021-01-30 11:38:54 +01:00
|
|
|
def check_update(self, update: object) -> Optional[Union[bool, object]]:
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Determines whether an update should be passed to this handlers :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
|
|
|
"""
|
2016-08-06 13:33:38 +02:00
|
|
|
if isinstance(update, Update) and update.callback_query:
|
2021-06-06 11:48:48 +02:00
|
|
|
callback_data = update.callback_query.data
|
2016-08-06 13:33:38 +02:00
|
|
|
if self.pattern:
|
2021-06-06 11:48:48 +02:00
|
|
|
if callback_data is None:
|
|
|
|
return False
|
|
|
|
if isinstance(self.pattern, type):
|
|
|
|
return isinstance(callback_data, self.pattern)
|
|
|
|
if callable(self.pattern):
|
|
|
|
return self.pattern(callback_data)
|
|
|
|
match = re.match(self.pattern, callback_data)
|
|
|
|
if match:
|
|
|
|
return match
|
2016-08-06 13:33:38 +02:00
|
|
|
else:
|
|
|
|
return True
|
2020-10-06 19:28:40 +02:00
|
|
|
return None
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2020-10-09 17:22:07 +02:00
|
|
|
def collect_optional_args(
|
|
|
|
self,
|
|
|
|
dispatcher: 'Dispatcher',
|
2020-12-16 17:34:57 +01:00
|
|
|
update: Update = None,
|
2020-10-09 17:22:07 +02:00
|
|
|
check_result: Union[bool, Match] = None,
|
2021-01-30 11:38:54 +01:00
|
|
|
) -> Dict[str, object]:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Pass the results of ``re.match(pattern, data).{groups(), groupdict()}`` to the
|
|
|
|
callback as a keyword arguments called ``groups`` and ``groupdict``, respectively, if
|
|
|
|
needed.
|
|
|
|
"""
|
2020-06-15 18:20:51 +02:00
|
|
|
optional_args = super().collect_optional_args(dispatcher, update, check_result)
|
2021-06-06 11:48:48 +02:00
|
|
|
if self.pattern and not callable(self.pattern):
|
2020-10-06 19:28:40 +02:00
|
|
|
check_result = cast(Match, check_result)
|
2016-08-06 13:33:38 +02:00
|
|
|
if self.pass_groups:
|
2018-09-21 08:57:01 +02:00
|
|
|
optional_args['groups'] = check_result.groups()
|
2016-08-06 13:33:38 +02:00
|
|
|
if self.pass_groupdict:
|
2018-09-21 08:57:01 +02:00
|
|
|
optional_args['groupdict'] = check_result.groupdict()
|
|
|
|
return optional_args
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2020-10-09 17:22:07 +02:00
|
|
|
def collect_additional_context(
|
|
|
|
self,
|
2021-06-06 10:37:53 +02:00
|
|
|
context: CCT,
|
2020-12-16 17:34:57 +01:00
|
|
|
update: Update,
|
2020-10-09 17:22:07 +02:00
|
|
|
dispatcher: 'Dispatcher',
|
|
|
|
check_result: Union[bool, Match],
|
|
|
|
) -> None:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Add the result of ``re.match(pattern, update.callback_query.data)`` to
|
|
|
|
:attr:`CallbackContext.matches` as list with one element.
|
|
|
|
"""
|
2018-09-21 08:57:01 +02:00
|
|
|
if self.pattern:
|
2020-10-06 19:28:40 +02:00
|
|
|
check_result = cast(Match, check_result)
|
2019-02-13 12:07:25 +01:00
|
|
|
context.matches = [check_result]
|