2016-04-14 23:57:40 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2020-02-02 22:08:54 +01:00
|
|
|
# Copyright (C) 2015-2020
|
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-07-23 22:33:08 +02:00
|
|
|
# TODO: Remove allow_edited
|
2017-09-01 08:43:08 +02:00
|
|
|
"""This module contains the MessageHandler class."""
|
2016-09-29 19:10:22 +02:00
|
|
|
import warnings
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2019-02-13 12:07:25 +01:00
|
|
|
from telegram.utils.deprecate import TelegramDeprecationWarning
|
|
|
|
|
2016-04-14 23:57:40 +02:00
|
|
|
from telegram import Update
|
2019-02-13 12:07:25 +01:00
|
|
|
from telegram.ext import Filters
|
2017-10-14 22:48:06 +02:00
|
|
|
from .handler import Handler
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2016-04-25 13:26:52 +02:00
|
|
|
|
2016-04-14 23:57:40 +02:00
|
|
|
class MessageHandler(Handler):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Handler class to handle telegram messages. They might contain text, media or status updates.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
Attributes:
|
|
|
|
filters (:obj:`Filter`): Only allow updates with these Filters. See
|
|
|
|
:mod:`telegram.ext.filters` for a full list of all available filters.
|
|
|
|
callback (:obj:`callable`): The callback function for this handler.
|
2018-09-21 08:57:01 +02:00
|
|
|
pass_update_queue (:obj:`bool`): Determines whether ``update_queue`` will be
|
2017-07-23 22:33:08 +02:00
|
|
|
passed to the callback function.
|
2018-09-21 08:57:01 +02:00
|
|
|
pass_job_queue (:obj:`bool`): Determines whether ``job_queue`` will be passed to
|
2017-07-23 22:33:08 +02:00
|
|
|
the callback function.
|
2018-09-21 08:57:01 +02:00
|
|
|
pass_user_data (:obj:`bool`): Determines whether ``user_data`` will be passed to
|
2017-07-23 22:33:08 +02:00
|
|
|
the callback function.
|
2018-09-21 08:57:01 +02:00
|
|
|
pass_chat_data (:obj:`bool`): Determines whether ``chat_data`` will be passed to
|
2017-07-23 22:33:08 +02:00
|
|
|
the callback function.
|
2018-09-21 08:57:01 +02:00
|
|
|
message_updates (:obj:`bool`): Should "normal" message updates be handled?
|
2019-02-13 12:07:25 +01:00
|
|
|
Default is ``None``.
|
2018-09-21 08:57:01 +02:00
|
|
|
channel_post_updates (:obj:`bool`): Should channel posts updates be handled?
|
2019-02-13 12:07:25 +01:00
|
|
|
Default is ``None``.
|
2018-09-21 08:57:01 +02:00
|
|
|
edited_updates (:obj:`bool`): Should "edited" message updates be handled?
|
2019-02-13 12:07:25 +01:00
|
|
|
Default is ``None``.
|
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
|
|
|
|
2016-04-16 16:36:12 +02:00
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
filters (:class:`telegram.ext.BaseFilter`, optional): A filter inheriting from
|
2016-12-11 22:44:52 +01:00
|
|
|
:class:`telegram.ext.filters.BaseFilter`. Standard filters can be found in
|
|
|
|
:class:`telegram.ext.filters.Filters`. Filters can be combined using bitwise
|
2019-02-13 12:07:25 +01:00
|
|
|
operators (& for and, | for or, ~ for not). Default is
|
|
|
|
:attr:`telegram.ext.filters.Filters.update`. This defaults to all message_type updates
|
|
|
|
being: ``message``, ``edited_message``, ``channel_post`` and ``edited_channel_post``.
|
|
|
|
If you don't want or need any of those pass ``~Filters.update.*`` in the filter
|
|
|
|
argument.
|
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`.
|
2017-07-23 22:33:08 +02:00
|
|
|
pass_update_queue (:obj:`bool`, optional): If set to ``True``, a keyword argument called
|
|
|
|
``update_queue`` will be passed to the callback function. It will be the ``Queue``
|
|
|
|
instance used by the :class:`telegram.ext.Updater` and :class:`telegram.ext.Dispatcher`
|
|
|
|
that contains new updates which can be used to insert updates. Default is ``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_job_queue (:obj:`bool`, optional): If set to ``True``, a keyword argument called
|
|
|
|
``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`
|
|
|
|
which can be used to schedule new jobs. Default is ``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_user_data (:obj:`bool`, optional): If set to ``True``, a keyword argument called
|
|
|
|
``user_data`` will be passed to the callback function. Default is ``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_chat_data (:obj:`bool`, optional): If set to ``True``, a keyword argument called
|
|
|
|
``chat_data`` will be passed to the callback function. Default is ``False``.
|
2018-09-21 08:57:01 +02:00
|
|
|
DEPRECATED: Please switch to context based callbacks.
|
2017-07-23 22:33:08 +02:00
|
|
|
message_updates (:obj:`bool`, optional): Should "normal" message updates be handled?
|
2019-02-13 12:07:25 +01:00
|
|
|
Default is ``None``.
|
|
|
|
DEPRECATED: Please switch to filters for update filtering.
|
2017-07-23 22:33:08 +02:00
|
|
|
channel_post_updates (:obj:`bool`, optional): Should channel posts updates be handled?
|
2019-02-13 12:07:25 +01:00
|
|
|
Default is ``None``.
|
|
|
|
DEPRECATED: Please switch to filters for update filtering.
|
2017-07-23 22:33:08 +02:00
|
|
|
edited_updates (:obj:`bool`, optional): Should "edited" message updates be handled? Default
|
2019-02-13 12:07:25 +01:00
|
|
|
is ``None``.
|
|
|
|
DEPRECATED: Please switch to filters for update filtering.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
ValueError
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2016-04-16 16:36:12 +02:00
|
|
|
"""
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2016-05-31 15:35:40 +02:00
|
|
|
def __init__(self,
|
|
|
|
filters,
|
|
|
|
callback,
|
|
|
|
pass_update_queue=False,
|
2016-10-25 19:28:34 +02:00
|
|
|
pass_job_queue=False,
|
|
|
|
pass_user_data=False,
|
2016-12-11 22:44:52 +01:00
|
|
|
pass_chat_data=False,
|
2019-02-13 12:07:25 +01:00
|
|
|
message_updates=None,
|
|
|
|
channel_post_updates=None,
|
|
|
|
edited_updates=None):
|
2016-12-11 22:44:52 +01:00
|
|
|
|
2016-08-26 11:17:05 +02:00
|
|
|
super(MessageHandler, self).__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,
|
|
|
|
pass_chat_data=pass_chat_data)
|
2019-02-13 12:07:25 +01:00
|
|
|
if message_updates is False and channel_post_updates is False and edited_updates is False:
|
|
|
|
raise ValueError(
|
|
|
|
'message_updates, channel_post_updates and edited_updates are all False')
|
2016-04-14 23:57:40 +02:00
|
|
|
self.filters = filters
|
2019-02-13 12:07:25 +01:00
|
|
|
if self.filters is not None:
|
|
|
|
self.filters &= Filters.update
|
|
|
|
else:
|
|
|
|
self.filters = Filters.update
|
|
|
|
if message_updates is not None:
|
|
|
|
warnings.warn('message_updates is deprecated. See https://git.io/fxJuV for more info',
|
|
|
|
TelegramDeprecationWarning,
|
|
|
|
stacklevel=2)
|
|
|
|
if message_updates is False:
|
|
|
|
self.filters &= ~Filters.update.message
|
|
|
|
|
|
|
|
if channel_post_updates is not None:
|
|
|
|
warnings.warn('channel_post_updates is deprecated. See https://git.io/fxJuV '
|
|
|
|
'for more info',
|
|
|
|
TelegramDeprecationWarning,
|
|
|
|
stacklevel=2)
|
|
|
|
if channel_post_updates is False:
|
|
|
|
self.filters &= ~Filters.update.channel_post
|
|
|
|
|
|
|
|
if edited_updates is not None:
|
|
|
|
warnings.warn('edited_updates is deprecated. See https://git.io/fxJuV for more info',
|
|
|
|
TelegramDeprecationWarning,
|
|
|
|
stacklevel=2)
|
|
|
|
if edited_updates is False:
|
|
|
|
self.filters &= ~(Filters.update.edited_message
|
|
|
|
| Filters.update.edited_channel_post)
|
2016-12-11 22:44:52 +01:00
|
|
|
|
2016-04-28 14:29:27 +02:00
|
|
|
def check_update(self, update):
|
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:
|
|
|
|
update (:class:`telegram.Update`): Incoming telegram update.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`
|
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2019-02-13 12:07:25 +01:00
|
|
|
if isinstance(update, Update) and update.effective_message:
|
|
|
|
return self.filters(update)
|
|
|
|
|
|
|
|
def collect_additional_context(self, context, update, dispatcher, check_result):
|
|
|
|
if isinstance(check_result, dict):
|
|
|
|
context.update(check_result)
|