2016-04-14 23:57:40 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2018-01-04 16:16:06 +01:00
|
|
|
# Copyright (C) 2015-2018
|
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/].
|
2018-05-22 21:44:20 +02:00
|
|
|
"""This module contains the CommandHandler class."""
|
2017-07-01 17:08:45 +02:00
|
|
|
from future.utils import string_types
|
|
|
|
|
2018-05-22 21:44:20 +02:00
|
|
|
from telegram import Update
|
2018-05-21 15:00:47 +02:00
|
|
|
from .handler import Handler
|
2016-04-14 23:57:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
class CommandHandler(Handler):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Handler class to handle Telegram commands.
|
|
|
|
|
|
|
|
Commands are Telegram messages that start with ``/``, optionally followed by an ``@`` and the
|
2018-05-22 21:44:20 +02:00
|
|
|
bot's name and/or some additional text.
|
2016-04-16 16:36:12 +02:00
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Attributes:
|
|
|
|
command (:obj:`str` | List[:obj:`str`]): The command or list of commands this handler
|
2018-05-22 21:44:20 +02:00
|
|
|
should listen for.
|
2017-07-23 22:33:08 +02:00
|
|
|
callback (:obj:`callable`): The callback function for this handler.
|
|
|
|
filters (:class:`telegram.ext.BaseFilter`): Optional. Only allow updates with these
|
|
|
|
Filters.
|
2018-05-21 15:00:47 +02:00
|
|
|
allow_edited (:obj:`bool`): Determines Whether the handler should also accept
|
2017-07-23 22:33:08 +02:00
|
|
|
edited messages.
|
2018-05-21 15:00:47 +02:00
|
|
|
pass_args (:obj:`bool`): Determines whether the handler should be passed
|
2017-07-23 22:33:08 +02:00
|
|
|
``args``.
|
2018-05-21 15:00:47 +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-05-21 15:00:47 +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-05-21 15:00:47 +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-05-21 15:00:47 +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.
|
|
|
|
|
|
|
|
Note:
|
|
|
|
:attr:`pass_user_data` and :attr:`pass_chat_data` determine whether a ``dict`` you
|
2018-05-22 21:44:20 +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``.
|
|
|
|
|
2018-05-21 15:00:47 +02:00
|
|
|
Note that this is DEPRECATED, and you should use context based callbacks. See
|
|
|
|
https://git.io/vp113 for more info.
|
|
|
|
|
2016-04-16 16:36:12 +02:00
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
command (:obj:`str` | List[:obj:`str`]): The command or list of commands this handler
|
2018-05-22 21:44:20 +02:00
|
|
|
should listen for.
|
2018-05-21 15:00:47 +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
|
|
|
filters (:class:`telegram.ext.BaseFilter`, optional): A filter inheriting from
|
2017-02-28 15:44:55 +01:00
|
|
|
:class:`telegram.ext.filters.BaseFilter`. Standard filters can be found in
|
|
|
|
:class:`telegram.ext.filters.Filters`. Filters can be combined using bitwise
|
2017-07-23 22:33:08 +02:00
|
|
|
operators (& for and, | for or, ~ for not).
|
|
|
|
allow_edited (:obj:`bool`, optional): Determines whether the handler should also accept
|
|
|
|
edited messages. Default is ``False``.
|
|
|
|
pass_args (:obj:`bool`, optional): Determines whether the handler should be passed the
|
|
|
|
arguments passed to the command as a keyword argument called ``args``. It will contain
|
|
|
|
a list of strings, which is the text following the command split on single or
|
|
|
|
consecutive whitespace characters. Default is ``False``
|
2018-05-21 15:00:47 +02:00
|
|
|
DEPRECATED: Please switch to context based callbacks.
|
2017-07-23 22:33:08 +02:00
|
|
|
pass_update_queue (:obj:`bool`, optional): If set to ``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`
|
|
|
|
that contains new updates which can be used to insert updates. Default is ``False``.
|
2018-05-21 15:00:47 +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-05-21 15:00:47 +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-05-21 15:00:47 +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-05-21 15:00:47 +02:00
|
|
|
DEPRECATED: Please switch to context based callbacks.
|
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-26 14:39:11 +02:00
|
|
|
def __init__(self,
|
|
|
|
command,
|
|
|
|
callback,
|
2017-02-28 15:44:55 +01:00
|
|
|
filters=None,
|
2016-05-27 11:06:29 +02:00
|
|
|
allow_edited=False,
|
2016-05-26 14:39:11 +02:00
|
|
|
pass_args=False,
|
|
|
|
pass_update_queue=False,
|
2016-10-25 19:28:34 +02:00
|
|
|
pass_job_queue=False,
|
|
|
|
pass_user_data=False,
|
|
|
|
pass_chat_data=False):
|
2016-08-26 11:17:05 +02:00
|
|
|
super(CommandHandler, 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)
|
2017-05-19 23:21:37 +05:00
|
|
|
|
2017-07-01 17:08:45 +02:00
|
|
|
if isinstance(command, string_types):
|
2017-06-08 23:00:47 +02:00
|
|
|
self.command = [command.lower()]
|
2017-05-19 23:21:37 +05:00
|
|
|
else:
|
2017-06-08 23:00:47 +02:00
|
|
|
self.command = [x.lower() for x in command]
|
2017-02-28 15:44:55 +01:00
|
|
|
self.filters = filters
|
2016-05-27 11:06:29 +02:00
|
|
|
self.allow_edited = allow_edited
|
2016-04-14 23:57:40 +02:00
|
|
|
self.pass_args = pass_args
|
|
|
|
|
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
|
|
|
"""
|
2018-05-21 15:00:47 +02:00
|
|
|
if (isinstance(update, Update) and
|
|
|
|
(update.message or update.edited_message and self.allow_edited)):
|
2018-05-22 21:44:20 +02:00
|
|
|
message = update.message or update.edited_message
|
2016-05-27 11:06:29 +02:00
|
|
|
|
2018-05-22 21:44:20 +02:00
|
|
|
if message.text and message.text.startswith('/') and len(message.text) > 1:
|
|
|
|
first_word = message.text_html.split(None, 1)[0]
|
|
|
|
if len(first_word) > 1 and first_word.startswith('/'):
|
|
|
|
command = first_word[1:].split('@')
|
|
|
|
command.append(
|
|
|
|
message.bot.username) # in case the command was sent without a username
|
2018-03-01 08:11:16 +00:00
|
|
|
|
2018-05-22 21:44:20 +02:00
|
|
|
if not (command[0].lower() in self.command
|
|
|
|
and command[1].lower() == message.bot.username.lower()):
|
|
|
|
return None
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2018-05-22 21:44:20 +02:00
|
|
|
if self.filters is None or self.filters(message):
|
|
|
|
return message.text.split()[1:]
|
2016-05-27 11:06:29 +02:00
|
|
|
|
2018-05-21 15:00:47 +02:00
|
|
|
def collect_optional_args(self, dispatcher, update=None, check_result=None):
|
|
|
|
optional_args = super(CommandHandler, self).collect_optional_args(dispatcher, update)
|
2016-04-14 23:57:40 +02:00
|
|
|
if self.pass_args:
|
2018-05-21 15:00:47 +02:00
|
|
|
optional_args['args'] = check_result
|
|
|
|
return optional_args
|
2016-04-14 23:57:40 +02:00
|
|
|
|
2018-05-21 15:00:47 +02:00
|
|
|
def collect_additional_context(self, context, update, dispatcher, check_result):
|
|
|
|
context.args = check_result
|