python-telegram-bot/telegram/bot.py

698 lines
21 KiB
Python
Raw Normal View History

2015-07-07 21:50:36 +02:00
#!/usr/bin/env python
# pylint: disable=E0611,E0213,E1102,C0103,E1101,W0613,R0913,R0904
2015-08-11 21:58:17 +02:00
#
# A library that provides a Python interface to the Telegram Bot API
# Copyright (C) 2015 Leandro Toledo de Souza <leandrotoeldodesouza@gmail.com>
#
# 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/].
2015-08-10 18:57:31 +02:00
"""This module contains a object that represents a Telegram Bot"""
2015-07-07 21:50:36 +02:00
import functools
2015-07-20 12:53:58 +02:00
import logging
2015-07-07 21:50:36 +02:00
2015-07-09 03:33:13 +02:00
from telegram import (User, Message, Update, UserProfilePhotos, TelegramError,
ReplyMarkup, TelegramObject, NullHandler)
from telegram.utils import request
H = NullHandler()
logging.getLogger(__name__).addHandler(H)
2015-07-07 21:50:36 +02:00
2015-07-20 12:53:58 +02:00
class Bot(TelegramObject):
"""This object represents a Telegram Bot.
Attributes:
id (int):
first_name (str):
last_name (str):
username (str):
name (str):
Args:
token (str):
**kwargs: Arbitrary keyword arguments.
Keyword Args:
base_url (Optional[str]):
"""
2015-07-09 18:19:58 +02:00
2015-07-07 21:50:36 +02:00
def __init__(self,
token,
base_url=None):
2015-07-08 22:23:18 +02:00
self.token = token
2015-07-07 21:50:36 +02:00
if base_url is None:
2015-07-08 22:23:18 +02:00
self.base_url = 'https://api.telegram.org/bot%s' % self.token
2015-07-07 21:50:36 +02:00
else:
2015-07-08 22:23:18 +02:00
self.base_url = base_url + self.token
self.bot = None
self.logger = logging.getLogger(__name__)
2015-07-20 13:36:08 +02:00
def info(func):
"""
Returns:
"""
@functools.wraps(func)
def decorator(self, *args, **kwargs):
"""
decorator
"""
if not self.bot:
self.getMe()
result = func(self, *args, **kwargs)
return result
return decorator
@property
@info
def id(self):
"""int: """
return self.bot.id
2015-07-08 22:23:18 +02:00
@property
@info
def first_name(self):
"""str: """
return self.bot.first_name
2015-07-08 22:23:18 +02:00
@property
@info
def last_name(self):
"""str: """
return self.bot.last_name
2015-07-20 13:59:41 +02:00
@property
@info
def username(self):
"""str: """
return self.bot.username
2015-07-08 22:23:18 +02:00
@property
def name(self):
"""str: """
2015-07-20 12:53:58 +02:00
return '@%s' % self.username
2015-07-08 22:23:18 +02:00
2015-07-20 12:53:58 +02:00
def log(func):
"""
Returns:
A telegram.Message instance representing the message posted.
"""
2015-07-20 12:53:58 +02:00
logger = logging.getLogger(func.__module__)
2015-07-07 21:50:36 +02:00
2015-07-20 12:53:58 +02:00
@functools.wraps(func)
def decorator(self, *args, **kwargs):
"""
decorator
"""
logger.debug('Entering: %s', func.__name__)
2015-07-20 12:53:58 +02:00
result = func(self, *args, **kwargs)
logger.debug(result)
logger.debug('Exiting: %s', func.__name__)
2015-07-20 12:53:58 +02:00
return result
return decorator
2015-07-07 21:50:36 +02:00
def message(func):
"""
Returns:
A telegram.Message instance representing the message posted.
"""
2015-07-20 12:53:58 +02:00
@functools.wraps(func)
def decorator(self, *args, **kwargs):
"""
decorator
"""
url, data = func(self, *args, **kwargs)
2015-09-07 20:53:43 +02:00
if not data.get('chat_id'):
2015-09-04 22:15:44 +02:00
raise TelegramError('Invalid chat_id.')
if kwargs.get('reply_to_message_id'):
reply_to_message_id = kwargs.get('reply_to_message_id')
data['reply_to_message_id'] = reply_to_message_id
if kwargs.get('reply_markup'):
reply_markup = kwargs.get('reply_markup')
if isinstance(reply_markup, ReplyMarkup):
data['reply_markup'] = reply_markup.to_json()
else:
data['reply_markup'] = reply_markup
result = request.post(url, data)
if result is True:
return result
return Message.de_json(result)
2015-07-20 12:53:58 +02:00
return decorator
2015-07-20 12:53:58 +02:00
@log
def getMe(self):
"""A simple method for testing your bot's auth token.
Returns:
A telegram.User instance representing that bot if the
credentials are valid, None otherwise.
"""
url = '%s/getMe' % self.base_url
result = request.get(url)
2015-07-20 12:53:58 +02:00
self.bot = User.de_json(result)
2015-08-14 21:30:30 +02:00
return self.bot
2015-07-20 12:53:58 +02:00
@log
@message
2015-07-07 21:50:36 +02:00
def sendMessage(self,
chat_id,
text,
disable_web_page_preview=None,
**kwargs):
2015-07-08 00:54:00 +02:00
"""Use this method to send text messages.
Args:
chat_id:
2015-08-10 18:57:31 +02:00
Unique identifier for the message recipient - telegram.User or
2015-07-08 00:54:00 +02:00
telegram.GroupChat id.
text:
Text of the message to be sent.
disable_web_page_preview:
Disables link previews for links in this message. [Optional]
reply_to_message_id:
If the message is a reply, ID of the original message. [Optional]
reply_markup:
Additional interface options. A JSON-serialized object for a custom
reply keyboard, instructions to hide keyboard or to force a reply
from the user. [Optional]
2015-07-08 21:58:18 +02:00
2015-07-08 00:54:00 +02:00
Returns:
A telegram.Message instance representing the message posted.
"""
2015-07-07 21:50:36 +02:00
url = '%s/sendMessage' % self.base_url
2015-07-07 21:50:36 +02:00
data = {'chat_id': chat_id,
'text': text}
2015-07-07 21:50:36 +02:00
if disable_web_page_preview:
data['disable_web_page_preview'] = disable_web_page_preview
return url, data
2015-07-07 21:50:36 +02:00
2015-07-20 12:53:58 +02:00
@log
@message
2015-07-07 21:50:36 +02:00
def forwardMessage(self,
chat_id,
from_chat_id,
message_id):
2015-07-08 00:54:00 +02:00
"""Use this method to forward messages of any kind.
Args:
chat_id:
2015-08-10 18:57:31 +02:00
Unique identifier for the message recipient - User or GroupChat id.
2015-07-08 00:54:00 +02:00
from_chat_id:
Unique identifier for the chat where the original message was sent
2015-08-10 18:57:31 +02:00
- User or GroupChat id.
2015-07-08 00:54:00 +02:00
message_id:
Unique message identifier.
2015-07-08 21:58:18 +02:00
2015-07-08 00:54:00 +02:00
Returns:
A telegram.Message instance representing the message forwarded.
"""
2015-07-07 21:50:36 +02:00
url = '%s/forwardMessage' % self.base_url
2015-07-07 21:50:36 +02:00
data = {}
if chat_id:
data['chat_id'] = chat_id
if from_chat_id:
data['from_chat_id'] = from_chat_id
if message_id:
data['message_id'] = message_id
return url, data
2015-07-07 21:50:36 +02:00
2015-07-20 12:53:58 +02:00
@log
@message
2015-07-07 21:50:36 +02:00
def sendPhoto(self,
chat_id,
photo,
caption=None,
**kwargs):
2015-07-08 00:54:00 +02:00
"""Use this method to send photos.
Args:
chat_id:
2015-08-10 18:57:31 +02:00
Unique identifier for the message recipient - User or GroupChat id.
2015-07-08 00:54:00 +02:00
photo:
Photo to send. You can either pass a file_id as String to resend a
photo that is already on the Telegram servers, or upload a new
photo using multipart/form-data.
caption:
Photo caption (may also be used when resending photos by file_id).
[Optional]
reply_to_message_id:
If the message is a reply, ID of the original message. [Optional]
reply_markup:
Additional interface options. A JSON-serialized object for a custom
reply keyboard, instructions to hide keyboard or to force a reply
from the user. [Optional]
2015-07-08 21:58:18 +02:00
2015-07-08 00:54:00 +02:00
Returns:
A telegram.Message instance representing the message posted.
"""
2015-07-07 21:50:36 +02:00
url = '%s/sendPhoto' % self.base_url
2015-07-07 21:50:36 +02:00
data = {'chat_id': chat_id,
'photo': photo}
2015-07-07 23:46:32 +02:00
2015-07-07 21:50:36 +02:00
if caption:
data['caption'] = caption
return url, data
2015-07-07 21:50:36 +02:00
2015-07-20 12:53:58 +02:00
@log
@message
2015-07-08 01:10:43 +02:00
def sendAudio(self,
chat_id,
audio,
duration=None,
performer=None,
title=None,
**kwargs):
2015-07-08 01:10:43 +02:00
"""Use this method to send audio files, if you want Telegram clients to
display them in the music player. Your audio must be in an .mp3 format.
On success, the sent Message is returned. Bots can currently send audio
files of up to 50 MB in size, this limit may be changed in the future.
For backward compatibility, when both fields title and description are
empty and mime-type of the sent file is not "audio/mpeg", file is sent
as playable voice message. In this case, your audio must be in an .ogg
file encoded with OPUS. This will be removed in the future. You need to
use sendVoice method instead.
2015-07-08 01:10:43 +02:00
Args:
chat_id:
2015-08-10 18:57:31 +02:00
Unique identifier for the message recipient - User or GroupChat id.
2015-07-08 01:10:43 +02:00
audio:
Audio file to send. You can either pass a file_id as String to
resend an audio that is already on the Telegram servers, or upload
a new audio file using multipart/form-data.
duration:
Duration of sent audio in seconds. [Optional]
performer:
Performer of sent audio. [Optional]
title:
Title of sent audio. [Optional]
2015-07-08 01:10:43 +02:00
reply_to_message_id:
If the message is a reply, ID of the original message. [Optional]
reply_markup:
Additional interface options. A JSON-serialized object for a
custom reply keyboard, instructions to hide keyboard or to force a
reply from the user. [Optional]
2015-07-08 21:58:18 +02:00
2015-07-08 01:10:43 +02:00
Returns:
A telegram.Message instance representing the message posted.
"""
url = '%s/sendAudio' % self.base_url
2015-07-07 21:50:36 +02:00
2015-07-08 01:10:43 +02:00
data = {'chat_id': chat_id,
'audio': audio}
if duration:
data['duration'] = duration
if performer:
data['performer'] = performer
if title:
data['title'] = title
return url, data
2015-07-08 01:10:43 +02:00
2015-07-20 12:53:58 +02:00
@log
@message
2015-07-08 02:12:51 +02:00
def sendDocument(self,
chat_id,
document,
**kwargs):
"""Use this method to send general files.
2015-07-08 02:12:51 +02:00
Args:
chat_id:
2015-08-10 18:57:31 +02:00
Unique identifier for the message recipient - User or GroupChat id.
2015-07-08 02:12:51 +02:00
document:
File to send. You can either pass a file_id as String to resend a
file that is already on the Telegram servers, or upload a new file
using multipart/form-data.
reply_to_message_id:
If the message is a reply, ID of the original message. [Optional]
reply_markup:
Additional interface options. A JSON-serialized object for a
custom reply keyboard, instructions to hide keyboard or to force a
reply from the user. [Optional]
2015-07-08 21:58:18 +02:00
2015-07-08 02:12:51 +02:00
Returns:
A telegram.Message instance representing the message posted.
"""
url = '%s/sendDocument' % self.base_url
2015-07-07 21:50:36 +02:00
2015-07-08 02:12:51 +02:00
data = {'chat_id': chat_id,
'document': document}
return url, data
2015-07-08 02:12:51 +02:00
2015-07-20 12:53:58 +02:00
@log
@message
2015-07-08 04:52:12 +02:00
def sendSticker(self,
chat_id,
sticker,
**kwargs):
2015-07-08 14:17:18 +02:00
"""Use this method to send .webp stickers.
Args:
chat_id:
2015-08-10 18:57:31 +02:00
Unique identifier for the message recipient - User or GroupChat id.
2015-07-08 14:17:18 +02:00
sticker:
Sticker to send. You can either pass a file_id as String to resend
a sticker that is already on the Telegram servers, or upload a new
sticker using multipart/form-data.
reply_to_message_id:
If the message is a reply, ID of the original message. [Optional]
reply_markup:
Additional interface options. A JSON-serialized object for a
custom reply keyboard, instructions to hide keyboard or to force a
reply from the user. [Optional]
2015-07-08 21:58:18 +02:00
2015-07-08 14:17:18 +02:00
Returns:
A telegram.Message instance representing the message posted.
"""
2015-07-08 04:52:12 +02:00
url = '%s/sendSticker' % self.base_url
2015-07-07 21:50:36 +02:00
2015-07-08 04:52:12 +02:00
data = {'chat_id': chat_id,
'sticker': sticker}
return url, data
2015-07-08 04:52:12 +02:00
2015-07-20 12:53:58 +02:00
@log
@message
2015-07-08 14:17:18 +02:00
def sendVideo(self,
chat_id,
video,
2015-08-11 22:32:06 +02:00
duration=None,
caption=None,
**kwargs):
2015-07-08 14:17:18 +02:00
"""Use this method to send video files, Telegram clients support mp4
videos (other formats may be sent as telegram.Document).
Args:
chat_id:
2015-08-10 18:57:31 +02:00
Unique identifier for the message recipient - User or GroupChat id.
2015-07-08 14:17:18 +02:00
video:
Video to send. You can either pass a file_id as String to resend a
video that is already on the Telegram servers, or upload a new
video file using multipart/form-data.
2015-08-11 22:32:06 +02:00
duration:
Duration of sent video in seconds. [Optional]
caption:
Video caption (may also be used when resending videos by file_id).
[Optional]
2015-07-08 14:17:18 +02:00
reply_to_message_id:
If the message is a reply, ID of the original message. [Optional]
reply_markup:
Additional interface options. A JSON-serialized object for a
custom reply keyboard, instructions to hide keyboard or to force a
reply from the user. [Optional]
2015-07-08 21:58:18 +02:00
2015-07-08 14:17:18 +02:00
Returns:
A telegram.Message instance representing the message posted.
"""
url = '%s/sendVideo' % self.base_url
2015-07-07 21:50:36 +02:00
2015-07-08 14:17:18 +02:00
data = {'chat_id': chat_id,
'video': video}
2015-08-11 22:32:06 +02:00
if duration:
data['duration'] = duration
if caption:
data['caption'] = caption
return url, data
2015-07-08 14:17:18 +02:00
@log
@message
def sendVoice(self,
chat_id,
voice,
duration=None,
**kwargs):
"""Use this method to send audio files, if you want Telegram clients to
display the file as a playable voice message. For this to work, your
audio must be in an .ogg file encoded with OPUS (other formats may be
sent as Audio or Document). On success, the sent Message is returned.
Bots can currently send audio files of up to 50 MB in size, this limit
may be changed in the future.
Args:
chat_id:
Unique identifier for the message recipient - User or GroupChat id.
voice:
Audio file to send. You can either pass a file_id as String to
resend an audio that is already on the Telegram servers, or upload
a new audio file using multipart/form-data.
duration:
Duration of sent audio in seconds. [Optional]
reply_to_message_id:
If the message is a reply, ID of the original message. [Optional]
reply_markup:
Additional interface options. A JSON-serialized object for a
custom reply keyboard, instructions to hide keyboard or to force a
reply from the user. [Optional]
Returns:
A telegram.Message instance representing the message posted.
"""
url = '%s/sendVoice' % self.base_url
data = {'chat_id': chat_id,
'voice': voice}
if duration:
data['duration'] = duration
return url, data
2015-07-20 12:53:58 +02:00
@log
@message
def sendLocation(self,
chat_id,
latitude,
longitude,
**kwargs):
"""Use this method to send point on the map.
Args:
chat_id:
2015-08-10 18:57:31 +02:00
Unique identifier for the message recipient - User or GroupChat id.
latitude:
Latitude of location.
longitude:
Longitude of location.
reply_to_message_id:
If the message is a reply, ID of the original message. [Optional]
reply_markup:
Additional interface options. A JSON-serialized object for a
custom reply keyboard, instructions to hide keyboard or to force a
reply from the user. [Optional]
2015-07-08 21:58:18 +02:00
Returns:
A telegram.Message instance representing the message posted.
"""
url = '%s/sendLocation' % self.base_url
2015-07-07 21:50:36 +02:00
data = {'chat_id': chat_id,
'latitude': latitude,
'longitude': longitude}
return url, data
2015-07-20 12:53:58 +02:00
@log
@message
def sendChatAction(self,
chat_id,
action):
"""Use this method when you need to tell the user that something is
happening on the bot's side. The status is set for 5 seconds or less
(when a message arrives from your bot, Telegram clients clear its
typing status).
Args:
chat_id:
2015-08-10 18:57:31 +02:00
Unique identifier for the message recipient - User or GroupChat id.
action:
Type of action to broadcast. Choose one, depending on what the user
is about to receive:
- ChatAction.TYPING for text messages,
- ChatAction.UPLOAD_PHOTO for photos,
2015-08-25 13:45:02 +02:00
- ChatAction.UPLOAD_VIDEO for videos,
- ChatAction.UPLOAD_AUDIO for audio files,
- ChatAction.UPLOAD_DOCUMENT for general files,
- ChatAction.FIND_LOCATION for location data.
"""
url = '%s/sendChatAction' % self.base_url
2015-07-07 21:50:36 +02:00
data = {'chat_id': chat_id,
'action': action}
return url, data
2015-07-20 12:53:58 +02:00
@log
2015-07-08 15:10:08 +02:00
def getUserProfilePhotos(self,
user_id,
offset=None,
limit=100):
"""Use this method to get a list of profile pictures for a user.
Args:
user_id:
Unique identifier of the target user.
offset:
Sequential number of the first photo to be returned. By default,
all photos are returned. [Optional]
limit:
2015-08-10 18:57:31 +02:00
Limits the number of photos to be retrieved. Values between 1-100
are accepted. Defaults to 100. [Optional]
2015-07-08 21:58:18 +02:00
Returns:
Returns a telegram.UserProfilePhotos object.
"""
2015-07-08 15:10:08 +02:00
url = '%s/getUserProfilePhotos' % self.base_url
2015-07-07 21:50:36 +02:00
2015-07-08 15:10:08 +02:00
data = {'user_id': user_id}
if offset:
data['offset'] = offset
if limit:
data['limit'] = limit
result = request.post(url, data)
2015-07-08 15:10:08 +02:00
return UserProfilePhotos.de_json(result)
2015-07-08 15:10:08 +02:00
2015-07-20 12:53:58 +02:00
@log
2015-07-07 21:50:36 +02:00
def getUpdates(self,
offset=None,
limit=100,
timeout=0):
2015-07-08 14:22:31 +02:00
"""Use this method to receive incoming updates using long polling.
Args:
offset:
Identifier of the first update to be returned. Must be greater by
one than the highest among the identifiers of previously received
updates. By default, updates starting with the earliest unconfirmed
update are returned. An update is considered confirmed as soon as
getUpdates is called with an offset higher than its update_id.
limit:
2015-08-10 18:57:31 +02:00
Limits the number of updates to be retrieved. Values between 1-100
2015-07-08 14:22:31 +02:00
are accepted. Defaults to 100.
timeout:
Timeout in seconds for long polling. Defaults to 0, i.e. usual
short polling.
2015-07-08 21:58:18 +02:00
2015-07-08 14:22:31 +02:00
Returns:
A list of telegram.Update objects are returned.
"""
2015-07-07 21:50:36 +02:00
url = '%s/getUpdates' % self.base_url
2015-07-07 21:50:36 +02:00
data = {}
if offset:
data['offset'] = offset
if limit:
data['limit'] = limit
if timeout:
data['timeout'] = timeout
result = request.post(url, data)
2015-07-07 21:50:36 +02:00
if result:
self.logger.info(
'Getting updates: %s', [u['update_id'] for u in result])
2015-07-20 13:59:41 +02:00
else:
self.logger.info('No new updates found.')
2015-07-20 13:59:41 +02:00
return [Update.de_json(x) for x in result]
2015-07-07 21:50:36 +02:00
2015-07-20 12:53:58 +02:00
@log
def setWebhook(self,
webhook_url=None,
certificate=None):
2015-07-09 18:19:58 +02:00
"""Use this method to specify a url and receive incoming updates via an
outgoing webhook. Whenever there is an update for the bot, we will send
an HTTPS POST request to the specified url, containing a
JSON-serialized Update. In case of an unsuccessful request, we will
give up after a reasonable amount of attempts.
Args:
url:
HTTPS url to send updates to.
Use an empty string to remove webhook integration
Returns:
True if successful else TelegramError was raised
"""
url = '%s/setWebhook' % self.base_url
2015-07-07 21:50:36 +02:00
data = {}
if webhook_url:
data['url'] = webhook_url
if certificate:
data['certificate'] = certificate
2015-07-09 18:19:58 +02:00
result = request.post(url, data)
2015-07-09 18:19:58 +02:00
return result
2015-07-20 12:53:58 +02:00
@staticmethod
def de_json(data):
pass
2015-07-20 13:36:08 +02:00
def to_dict(self):
"""
Returns:
dict:
"""
2015-07-20 12:53:58 +02:00
data = {'id': self.id,
'username': self.username,
'first_name': self.username}
if self.last_name:
data['last_name'] = self.last_name
return data
def __reduce__(self):
2015-08-12 04:46:09 +02:00
return (self.__class__, (self.token,
2015-08-12 04:43:40 +02:00
self.base_url.replace(self.token, '')))