2016-04-16 15:21:19 +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-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 StringCommandHandler class."""
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
from future.utils import string_types
|
|
|
|
|
2016-04-16 15:21:19 +02:00
|
|
|
from .handler import Handler
|
|
|
|
|
|
|
|
|
|
|
|
class StringCommandHandler(Handler):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Handler class to handle string commands. Commands are string updates that start with ``/``.
|
2016-04-16 16:36:12 +02:00
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Note:
|
|
|
|
This handler is not used to handle Telegram :attr:`telegram.Update`, but strings manually
|
|
|
|
put in the queue. For example to send messages with the bot using command line or API.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
command (:obj:`str`): The command this handler should listen for.
|
|
|
|
callback (:obj:`callable`): The callback function for this handler.
|
2018-05-21 15:00:47 +02:00
|
|
|
pass_args (:obj:`bool`): Optional. 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`): Optional. 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`): Optional. 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
|
|
|
|
2018-05-21 15:00:47 +02:00
|
|
|
Args:
|
|
|
|
command (:obj:`str`): The command this handler should listen for.
|
|
|
|
callback (:obj:`callable`): A function that takes ``bot, update`` as positional arguments.
|
|
|
|
It will be called when the :attr:`check_update` has determined that a command should be
|
|
|
|
processed by this handler.
|
2017-07-23 22:33:08 +02:00
|
|
|
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``
|
|
|
|
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``.
|
|
|
|
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``.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2016-04-16 16:36:12 +02:00
|
|
|
"""
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2016-05-26 14:39:11 +02:00
|
|
|
def __init__(self,
|
|
|
|
command,
|
|
|
|
callback,
|
|
|
|
pass_args=False,
|
|
|
|
pass_update_queue=False,
|
|
|
|
pass_job_queue=False):
|
2016-08-26 11:17:05 +02:00
|
|
|
super(StringCommandHandler, self).__init__(
|
2018-05-21 15:00:47 +02:00
|
|
|
callback, pass_update_queue=pass_update_queue, pass_job_queue=pass_job_queue)
|
2016-04-16 15:21:19 +02:00
|
|
|
self.command = command
|
|
|
|
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:
|
2018-05-21 15:00:47 +02:00
|
|
|
update (:obj:`str`): An incomming command.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
2018-05-21 15:00:47 +02:00
|
|
|
|
|
|
|
return (isinstance(update, string_types) and update.startswith('/')
|
|
|
|
and update[1:].split(' ')[0] == self.command)
|
|
|
|
|
|
|
|
def handle_update(self, update, dispatcher):
|
|
|
|
"""Send the update to the :attr:`callback`.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
update (:obj:`str`): An incomming command.
|
|
|
|
dispatcher (:class:`telegram.ext.Dispatcher`): Dispatcher that originated the command.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
optional_args = self.collect_optional_args(dispatcher)
|
|
|
|
|
2016-04-16 15:21:19 +02:00
|
|
|
if self.pass_args:
|
2018-05-21 15:00:47 +02:00
|
|
|
optional_args['args'] = update.split()[1:]
|
2016-04-16 15:21:19 +02:00
|
|
|
|
2018-05-21 15:00:47 +02:00
|
|
|
return self.callback(dispatcher.bot, update, **optional_args)
|