mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 23:27:49 +01:00
acf1541395
* New fields channel_post and edited_channel_post for Update refs #468 * setGameScore() changes - Changed behaviour: messages with high scores will be update with new high scores by default. (documentation fix) - Use (new) disable_edit_message in setGameScore to disable the above new behaviour. - The edit_message parameter from setGameScore is no longer in use. For backward compatibility, it will be taken into account for a while, unless disable_edit_message is passed explicitly. refs #468 * New field forward_from_message_id for Message. refs #468 * New parameter cache_time for answerCallbackQuery refs #468 * replykeyboardhide renamed to replykeyboardremove refs #468 * Unitests for updated setGameScore semantics refs #468 * Backward compatibility for ReplyKeyboardHide refs #468 * Fix docstrings of wrapper methods in Message * Unitest new field forward_from_message_id of Message refs #468 * Fix testMaxCaptionLength Telegram servers changed their behaviour - now they truncate a long caption instead of returning an error. * MessageHandler: Added support for channel posts * Fix flake8 complaints in a manner which yapf will like it too. * fix rst markup
128 lines
5.7 KiB
Python
128 lines
5.7 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# A library that provides a Python interface to the Telegram Bot API
|
|
# Copyright (C) 2015-2016
|
|
# 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/].
|
|
""" This module contains the MessageHandler class """
|
|
import warnings
|
|
|
|
from .handler import Handler
|
|
from telegram import Update
|
|
from telegram.utils.deprecate import deprecate
|
|
|
|
|
|
class MessageHandler(Handler):
|
|
"""
|
|
Handler class to handle telegram messages. Messages are Telegram Updates
|
|
that do not contain a command. They might contain text, media or status
|
|
updates.
|
|
|
|
Args:
|
|
filters (telegram.ext.BaseFilter): A filter inheriting from
|
|
:class:`telegram.ext.filters.BaseFilter`. Standard filters can be found in
|
|
:class:`telegram.ext.filters.Filters`. Filters can be combined using bitwise
|
|
operators (& for and, | for or).
|
|
callback (function): A function that takes ``bot, update`` as
|
|
positional arguments. It will be called when the ``check_update``
|
|
has determined that an update should be processed by this handler.
|
|
allow_edited (Optional[bool]): If the handler should also accept edited messages.
|
|
Default is ``False``
|
|
pass_update_queue (optional[bool]): If the handler should be passed the
|
|
update queue as a keyword argument called ``update_queue``. It can
|
|
be used to insert updates. Default is ``False``
|
|
pass_user_data (optional[bool]): If set to ``True``, a keyword argument called
|
|
``user_data`` will be passed to the callback function. It will be a ``dict`` you
|
|
can use to keep any data related to the user that sent the update. For each update of
|
|
the same user, it will be the same ``dict``. Default is ``False``.
|
|
pass_chat_data (optional[bool]): If set to ``True``, a keyword argument called
|
|
``chat_data`` will be passed to the callback function. It will be a ``dict`` you
|
|
can use to keep any data related to the chat that the update was sent in.
|
|
For each update in the same chat, it will be the same ``dict``. Default is ``False``.
|
|
message_updates (Optional[bool]): Should "normal" message updates be handled? Default is
|
|
``True``.
|
|
channel_posts_updates (Optional[bool]): Should channel posts updates be handled? Default is
|
|
``True``.
|
|
|
|
"""
|
|
|
|
def __init__(self,
|
|
filters,
|
|
callback,
|
|
allow_edited=False,
|
|
pass_update_queue=False,
|
|
pass_job_queue=False,
|
|
pass_user_data=False,
|
|
pass_chat_data=False,
|
|
message_updates=True,
|
|
channel_posts_updates=True):
|
|
if not message_updates and not channel_posts_updates:
|
|
raise ValueError('Both message_updates & channel_post_updates are False')
|
|
|
|
super(MessageHandler, self).__init__(
|
|
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)
|
|
self.filters = filters
|
|
self.allow_edited = allow_edited
|
|
self.message_updates = message_updates
|
|
self.channel_posts_updates = channel_posts_updates
|
|
|
|
# We put this up here instead of with the rest of checking code
|
|
# in check_update since we don't wanna spam a ton
|
|
if isinstance(self.filters, list):
|
|
warnings.warn('Using a list of filters in MessageHandler is getting '
|
|
'deprecated, please use bitwise operators (& and |) '
|
|
'instead. More info: https://git.io/vPTbc.')
|
|
|
|
def _is_allowed_message(self, update):
|
|
return (self.message_updates
|
|
and (update.message or (update.edited_message and self.allow_edited)))
|
|
|
|
def _is_allowed_channel_post(self, update):
|
|
return (self.channel_posts_updates
|
|
and (update.channel_post or (update.edited_channel_post and self.allow_edited)))
|
|
|
|
def check_update(self, update):
|
|
if (isinstance(update, Update)
|
|
and (self._is_allowed_message(update) or self._is_allowed_channel_post(update))):
|
|
|
|
if not self.filters:
|
|
res = True
|
|
|
|
else:
|
|
message = (update.message or update.edited_message or update.channel_post
|
|
or update.edited_channel_post)
|
|
if isinstance(self.filters, list):
|
|
res = any(func(message) for func in self.filters)
|
|
else:
|
|
res = self.filters(message)
|
|
|
|
else:
|
|
res = False
|
|
|
|
return res
|
|
|
|
def handle_update(self, update, dispatcher):
|
|
optional_args = self.collect_optional_args(dispatcher, update)
|
|
|
|
return self.callback(dispatcher.bot, update, **optional_args)
|
|
|
|
# old non-PEP8 Handler methods
|
|
m = "telegram.MessageHandler."
|
|
checkUpdate = deprecate(check_update, m + "checkUpdate", m + "check_update")
|
|
handleUpdate = deprecate(handle_update, m + "handleUpdate", m + "handle_update")
|