2016-04-14 23:57:40 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2021-01-03 06:10:24 +01:00
|
|
|
# Copyright (C) 2015-2021
|
2016-04-14 23:57:40 +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 base class for handlers as used by the Dispatcher."""
|
2020-05-01 20:27:34 +02:00
|
|
|
from abc import ABC, abstractmethod
|
2020-12-16 17:34:57 +01:00
|
|
|
from typing import TYPE_CHECKING, Any, Callable, Dict, Optional, TypeVar, Union, Generic
|
2021-05-29 16:18:16 +02:00
|
|
|
from sys import version_info as py_ver
|
|
|
|
|
|
|
|
from telegram.utils.deprecate import set_new_attribute_deprecated
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2020-10-31 16:33:34 +01:00
|
|
|
from telegram import Update
|
2021-01-30 14:15:39 +01:00
|
|
|
from telegram.ext.utils.promise import Promise
|
2020-11-17 21:31:01 +01:00
|
|
|
from telegram.utils.helpers import DefaultValue, DEFAULT_FALSE
|
2020-10-09 17:22:07 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from telegram.ext import CallbackContext, Dispatcher
|
|
|
|
|
|
|
|
RT = TypeVar('RT')
|
2020-12-16 17:34:57 +01:00
|
|
|
UT = TypeVar('UT')
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2020-05-01 20:27:34 +02:00
|
|
|
|
2020-12-16 17:34:57 +01:00
|
|
|
class Handler(Generic[UT], ABC):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""The base class for all update handlers. Create custom handlers by inheriting from it.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
Note:
|
|
|
|
:attr:`pass_user_data` and :attr:`pass_chat_data` determine whether a ``dict`` you
|
Bot API 4.0 (#1168)
Telegram Passport (#1174):
- Add full support for telegram passport.
- New types: PassportData, PassportFile, EncryptedPassportElement, EncryptedCredentials, PassportElementError, PassportElementErrorDataField, PassportElementErrorFrontSide, PassportElementErrorReverseSide, PassportElementErrorSelfie, PassportElementErrorFile and PassportElementErrorFiles.
- New bot method: set_passport_data_errors
- New filter: Filters.passport_data
- Field passport_data field on Message
- PassportData is automagically decrypted when you specify your private key when creating Updater or Bot.
- PassportFiles is also automagically decrypted as you download/retrieve them.
- See new passportbot.py example for details on how to use, or go to our telegram passport wiki page for more info
- NOTE: Passport decryption requires new dependency `cryptography`.
Inputfile rework (#1184):
- Change how Inputfile is handled internally
- This allows support for specifying the thumbnails of photos and videos using the thumb= argument in the different send_ methods.
- Also allows Bot.send_media_group to actually finally send more than one media.
- Add thumb to Audio, Video and Videonote
- Add Bot.edit_message_media together with InputMediaAnimation, InputMediaAudio, and inputMediaDocument.
Other Bot API 4.0 changes:
- Add forusquare_type to Venue, InlineQueryResultVenue, InputVenueMessageContent, and Bot.send_venue. (#1170)
- Add vCard support by adding vcard field to Contact, InlineQueryResultContact, InputContactMessageContent, and Bot.send_contact. (#1166)
- Support new message entities: CASHTAG and PHONE_NUMBER. (#1179)
- Cashtag seems to be things like $USD and $GBP, but it seems telegram doesn't currently send them to bots.
- Phone number also seems to have limited support for now
- Add Bot.send_animation, add width, height, and duration to Animation, and add Filters.animation. (#1172)
Co-authored-by: Jasmin Bom <jsmnbom@gmail.com>
Co-authored-by: code1mountain <32801117+code1mountain@users.noreply.github.com>
Co-authored-by: Eldinnie <pieter.schutz+github@gmail.com>
Co-authored-by: mathefreak1 <mathefreak@hi2.in>
2018-08-29 14:18:58 +02:00
|
|
|
can use to keep any data in will be sent to the :attr:`callback` function. Related to
|
2017-07-23 22:33:08 +02:00
|
|
|
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``.
|
2016-04-16 16:36:12 +02:00
|
|
|
|
2018-09-21 08:57:01 +02:00
|
|
|
Note that this is DEPRECATED, and you should use context based callbacks. See
|
2019-02-13 12:07:25 +01:00
|
|
|
https://git.io/fxJuV for more info.
|
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.
|
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.
|
|
|
|
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
|
|
|
"""
|
2020-10-09 17:22:07 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
# Apparently Py 3.7 and below have '__dict__' in ABC
|
|
|
|
if py_ver < (3, 7):
|
|
|
|
__slots__ = (
|
|
|
|
'callback',
|
|
|
|
'pass_update_queue',
|
|
|
|
'pass_job_queue',
|
|
|
|
'pass_user_data',
|
|
|
|
'pass_chat_data',
|
|
|
|
'run_async',
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
__slots__ = (
|
|
|
|
'callback', # type: ignore[assignment]
|
|
|
|
'pass_update_queue',
|
|
|
|
'pass_job_queue',
|
|
|
|
'pass_user_data',
|
|
|
|
'pass_chat_data',
|
|
|
|
'run_async',
|
|
|
|
'__dict__',
|
|
|
|
)
|
|
|
|
|
2020-10-09 17:22:07 +02:00
|
|
|
def __init__(
|
|
|
|
self,
|
2020-12-16 17:34:57 +01:00
|
|
|
callback: Callable[[UT, 'CallbackContext'], RT],
|
2020-10-09 17:22:07 +02:00
|
|
|
pass_update_queue: bool = False,
|
|
|
|
pass_job_queue: bool = False,
|
|
|
|
pass_user_data: bool = False,
|
|
|
|
pass_chat_data: bool = False,
|
2020-11-17 21:31:01 +01:00
|
|
|
run_async: Union[bool, DefaultValue] = DEFAULT_FALSE,
|
2020-10-09 17:22:07 +02:00
|
|
|
):
|
2020-12-16 17:34:57 +01:00
|
|
|
self.callback = callback
|
2016-04-14 23:57:40 +02:00
|
|
|
self.pass_update_queue = pass_update_queue
|
2016-05-26 14:39:11 +02:00
|
|
|
self.pass_job_queue = pass_job_queue
|
2016-10-25 19:28:34 +02:00
|
|
|
self.pass_user_data = pass_user_data
|
|
|
|
self.pass_chat_data = pass_chat_data
|
2020-10-04 17:20:33 +02:00
|
|
|
self.run_async = run_async
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
def __setattr__(self, key: str, value: object) -> None:
|
|
|
|
# See comment on BaseFilter to know why this was done.
|
|
|
|
if key.startswith('__'):
|
|
|
|
key = f"_{self.__class__.__name__}{key}"
|
|
|
|
if issubclass(self.__class__, Handler) and not self.__class__.__module__.startswith(
|
|
|
|
'telegram.ext.'
|
|
|
|
):
|
|
|
|
object.__setattr__(self, key, value)
|
|
|
|
return
|
|
|
|
set_new_attribute_deprecated(self, key, value)
|
|
|
|
|
2020-05-01 20:27:34 +02:00
|
|
|
@abstractmethod
|
2021-01-30 11:38:54 +01:00
|
|
|
def check_update(self, update: object) -> Optional[Union[bool, object]]:
|
2016-04-14 23:57:40 +02:00
|
|
|
"""
|
|
|
|
This method is called to determine if an update should be handled by
|
|
|
|
this handler instance. It should always be overridden.
|
|
|
|
|
2020-12-16 17:34:57 +01:00
|
|
|
Note:
|
|
|
|
Custom updates types can be handled by the dispatcher. Therefore, an implementation of
|
|
|
|
this method should always check the type of :attr:`update`.
|
|
|
|
|
2016-04-14 23:57:40 +02:00
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
update (:obj:`str` | :class:`telegram.Update`): The update to be tested.
|
2016-04-25 09:19:50 +02:00
|
|
|
|
|
|
|
Returns:
|
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
|
|
|
Either :obj:`None` or :obj:`False` if the update should not be handled. Otherwise an
|
|
|
|
object that will be passed to :meth:`handle_update` and
|
|
|
|
:meth:`collect_additional_context` when the update gets handled.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2016-04-14 23:57:40 +02:00
|
|
|
"""
|
|
|
|
|
2020-10-09 17:22:07 +02:00
|
|
|
def handle_update(
|
|
|
|
self,
|
2020-12-16 17:34:57 +01:00
|
|
|
update: UT,
|
2020-10-09 17:22:07 +02:00
|
|
|
dispatcher: 'Dispatcher',
|
|
|
|
check_result: object,
|
|
|
|
context: 'CallbackContext' = None,
|
|
|
|
) -> Union[RT, Promise]:
|
2016-04-14 23:57:40 +02:00
|
|
|
"""
|
|
|
|
This method is called if it was determined that an update should indeed
|
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
|
|
|
be handled by this instance. Calls :attr:`callback` along with its respectful
|
2018-09-21 08:57:01 +02:00
|
|
|
arguments. To work with the :class:`telegram.ext.ConversationHandler`, this method
|
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
|
|
|
returns the value returned from :attr:`callback`.
|
2018-09-21 08:57:01 +02:00
|
|
|
Note that it can be overridden if needed by the subclassing handler.
|
2016-04-14 23:57:40 +02:00
|
|
|
|
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
update (:obj:`str` | :class:`telegram.Update`): The update to be handled.
|
2018-09-21 08:57:01 +02:00
|
|
|
dispatcher (:class:`telegram.ext.Dispatcher`): The calling dispatcher.
|
2020-10-06 19:28:40 +02:00
|
|
|
check_result (:obj:`obj`): The result from :attr:`check_update`.
|
|
|
|
context (:class:`telegram.ext.CallbackContext`, optional): The context as provided by
|
|
|
|
the dispatcher.
|
2016-04-14 23:57:40 +02:00
|
|
|
|
|
|
|
"""
|
2020-11-17 21:31:01 +01:00
|
|
|
run_async = self.run_async
|
2021-05-27 09:38:17 +02:00
|
|
|
if (
|
|
|
|
self.run_async is DEFAULT_FALSE
|
|
|
|
and dispatcher.bot.defaults
|
|
|
|
and dispatcher.bot.defaults.run_async
|
|
|
|
):
|
|
|
|
run_async = True
|
2020-11-17 21:31:01 +01:00
|
|
|
|
2019-02-13 12:18:37 +01:00
|
|
|
if context:
|
2018-09-21 08:57:01 +02:00
|
|
|
self.collect_additional_context(context, update, dispatcher, check_result)
|
2020-11-17 21:31:01 +01:00
|
|
|
if run_async:
|
2020-10-04 17:20:33 +02:00
|
|
|
return dispatcher.run_async(self.callback, update, context, update=update)
|
2020-10-31 16:33:34 +01:00
|
|
|
return self.callback(update, context)
|
|
|
|
|
|
|
|
optional_args = self.collect_optional_args(dispatcher, update, check_result)
|
2020-11-17 21:31:01 +01:00
|
|
|
if run_async:
|
2020-10-31 16:33:34 +01:00
|
|
|
return dispatcher.run_async(
|
|
|
|
self.callback, dispatcher.bot, update, update=update, **optional_args
|
|
|
|
)
|
|
|
|
return self.callback(dispatcher.bot, update, **optional_args) # type: ignore
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2020-10-09 17:22:07 +02:00
|
|
|
def collect_additional_context(
|
|
|
|
self,
|
|
|
|
context: 'CallbackContext',
|
2020-12-16 17:34:57 +01:00
|
|
|
update: UT,
|
2020-10-09 17:22:07 +02:00
|
|
|
dispatcher: 'Dispatcher',
|
|
|
|
check_result: Any,
|
|
|
|
) -> None:
|
2018-09-21 08:57:01 +02:00
|
|
|
"""Prepares additional arguments for the context. Override if needed.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
context (:class:`telegram.ext.CallbackContext`): The context object.
|
|
|
|
update (:class:`telegram.Update`): The update to gather chat/user id from.
|
|
|
|
dispatcher (:class:`telegram.ext.Dispatcher`): The calling dispatcher.
|
|
|
|
check_result: The result (return value) from :attr:`check_update`.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2020-10-09 17:22:07 +02:00
|
|
|
def collect_optional_args(
|
2020-10-31 16:33:34 +01:00
|
|
|
self,
|
|
|
|
dispatcher: 'Dispatcher',
|
2020-12-16 17:34:57 +01:00
|
|
|
update: UT = None,
|
2020-10-31 16:33:34 +01:00
|
|
|
check_result: Any = None, # pylint: disable=W0613
|
2021-01-30 11:38:54 +01:00
|
|
|
) -> Dict[str, object]:
|
2018-09-21 08:57:01 +02:00
|
|
|
"""
|
|
|
|
Prepares the optional arguments. If the handler has additional optional args,
|
|
|
|
it should subclass this method, but remember to call this super method.
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2018-09-21 08:57:01 +02:00
|
|
|
DEPRECATED: This method is being replaced by new context based callbacks. Please see
|
2019-02-13 12:07:25 +01:00
|
|
|
https://git.io/fxJuV for more info.
|
2016-04-14 23:57:40 +02:00
|
|
|
|
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
dispatcher (:class:`telegram.ext.Dispatcher`): The dispatcher.
|
2018-09-21 08:57:01 +02:00
|
|
|
update (:class:`telegram.Update`): The update to gather chat/user id from.
|
|
|
|
check_result: The result from check_update
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2016-04-14 23:57:40 +02:00
|
|
|
"""
|
2021-04-05 13:25:27 +02:00
|
|
|
optional_args: Dict[str, object] = {}
|
2016-10-25 19:28:34 +02:00
|
|
|
|
2016-04-14 23:57:40 +02:00
|
|
|
if self.pass_update_queue:
|
|
|
|
optional_args['update_queue'] = dispatcher.update_queue
|
2016-05-26 14:39:11 +02:00
|
|
|
if self.pass_job_queue:
|
|
|
|
optional_args['job_queue'] = dispatcher.job_queue
|
2020-10-06 19:28:40 +02:00
|
|
|
if self.pass_user_data and isinstance(update, Update):
|
2017-03-26 14:36:34 +02:00
|
|
|
user = update.effective_user
|
2020-10-06 19:28:40 +02:00
|
|
|
optional_args['user_data'] = dispatcher.user_data[
|
2020-10-09 17:22:07 +02:00
|
|
|
user.id if user else None # type: ignore[index]
|
|
|
|
]
|
2020-10-06 19:28:40 +02:00
|
|
|
if self.pass_chat_data and isinstance(update, Update):
|
2019-10-12 15:11:09 +02:00
|
|
|
chat = update.effective_chat
|
2020-10-06 19:28:40 +02:00
|
|
|
optional_args['chat_data'] = dispatcher.chat_data[
|
2020-10-09 17:22:07 +02:00
|
|
|
chat.id if chat else None # type: ignore[index]
|
|
|
|
]
|
2016-04-14 23:57:40 +02:00
|
|
|
|
|
|
|
return optional_args
|