2015-07-07 21:50:36 +02:00
|
|
|
#!/usr/bin/env python
|
2015-08-22 04:15:29 +02:00
|
|
|
# pylint: disable=C0103,W0622
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# 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-01-05 14:12:03 +01:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# 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/].
|
2016-10-17 00:22:40 +02:00
|
|
|
"""This module contains an object that represents a Telegram User."""
|
2015-07-07 21:50:36 +02:00
|
|
|
|
2015-07-20 12:53:58 +02:00
|
|
|
from telegram import TelegramObject
|
2017-09-01 08:40:05 +02:00
|
|
|
from telegram.utils.helpers import mention_html as util_mention_html
|
2018-02-18 16:49:52 +01:00
|
|
|
from telegram.utils.helpers import mention_markdown as util_mention_markdown
|
2015-07-09 16:40:44 +02:00
|
|
|
|
|
|
|
|
2015-07-20 04:06:04 +02:00
|
|
|
class User(TelegramObject):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""This object represents a Telegram user or bot.
|
2015-08-22 04:15:29 +02:00
|
|
|
|
|
|
|
Attributes:
|
2017-07-23 22:33:08 +02:00
|
|
|
id (:obj:`int`): Unique identifier for this user or bot.
|
2017-09-01 08:40:05 +02:00
|
|
|
is_bot (:obj:`bool`): True, if this user is a bot
|
2017-07-23 22:33:08 +02:00
|
|
|
first_name (:obj:`str`): User's or bot's first name.
|
|
|
|
last_name (:obj:`str`): Optional. User's or bot's last name.
|
2017-09-15 23:55:35 +02:00
|
|
|
username (:obj:`str`): Optional. User's or bot's username.
|
2017-07-23 22:33:08 +02:00
|
|
|
language_code (:obj:`str`): Optional. IETF language tag of the user's language.
|
|
|
|
bot (:class:`telegram.Bot`): Optional. The Bot to use for instance methods.
|
2015-08-22 04:15:29 +02:00
|
|
|
|
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
id (:obj:`int`): Unique identifier for this user or bot.
|
2017-09-01 08:40:05 +02:00
|
|
|
is_bot (:obj:`bool`): True, if this user is a bot
|
2017-07-23 22:33:08 +02:00
|
|
|
first_name (:obj:`str`): User's or bot's first name.
|
|
|
|
last_name (:obj:`str`, optional): User's or bot's last name.
|
|
|
|
username (:obj:`str`, optional): User's or bot's username.
|
|
|
|
language_code (:obj:`str`, optional): IETF language tag of the user's language.
|
|
|
|
bot (:class:`telegram.Bot`, optional): The Bot to use for instance methods.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2015-08-22 04:15:29 +02:00
|
|
|
"""
|
|
|
|
|
2016-12-30 13:57:59 +01:00
|
|
|
def __init__(self,
|
|
|
|
id,
|
|
|
|
first_name,
|
2017-09-01 08:40:05 +02:00
|
|
|
is_bot,
|
2016-12-30 13:57:59 +01:00
|
|
|
last_name=None,
|
|
|
|
username=None,
|
2017-05-21 14:00:53 +02:00
|
|
|
language_code=None,
|
2016-12-30 13:57:59 +01:00
|
|
|
bot=None,
|
|
|
|
**kwargs):
|
2015-08-22 04:15:29 +02:00
|
|
|
# Required
|
|
|
|
self.id = int(id)
|
2015-07-09 02:58:13 +02:00
|
|
|
self.first_name = first_name
|
2017-09-01 08:40:05 +02:00
|
|
|
self.is_bot = is_bot
|
2015-08-22 04:15:29 +02:00
|
|
|
# Optionals
|
2016-10-16 16:24:13 +02:00
|
|
|
self.last_name = last_name
|
|
|
|
self.username = username
|
2017-05-21 14:00:53 +02:00
|
|
|
self.language_code = language_code
|
2015-07-07 21:50:36 +02:00
|
|
|
|
2016-09-20 06:36:55 +02:00
|
|
|
self.bot = bot
|
|
|
|
|
2017-05-14 23:29:31 +02:00
|
|
|
self._id_attrs = (self.id,)
|
|
|
|
|
2015-07-15 15:05:31 +02:00
|
|
|
@property
|
|
|
|
def name(self):
|
2018-05-09 11:42:12 +02:00
|
|
|
""":obj:`str`: Convenience property. If available, returns the user's :attr:`username`
|
|
|
|
prefixed with "@". If :attr:`username` is not available, returns :attr:`full_name`."""
|
2015-07-15 15:05:31 +02:00
|
|
|
if self.username:
|
2017-12-30 21:58:32 +01:00
|
|
|
return '@{}'.format(self.username)
|
|
|
|
return self.full_name
|
2015-07-15 15:05:31 +02:00
|
|
|
|
2017-12-30 14:13:06 +01:00
|
|
|
@property
|
|
|
|
def full_name(self):
|
2018-05-09 11:42:12 +02:00
|
|
|
""":obj:`str`: Convenience property. The user's :attr:`first_name`, followed by (if
|
|
|
|
available) :attr:`last_name`."""
|
2017-12-30 14:13:06 +01:00
|
|
|
|
|
|
|
if self.last_name:
|
2018-04-16 10:37:41 +02:00
|
|
|
return u'{} {}'.format(self.first_name, self.last_name)
|
2017-12-30 14:13:06 +01:00
|
|
|
return self.first_name
|
|
|
|
|
2018-05-09 11:42:12 +02:00
|
|
|
@property
|
|
|
|
def link(self):
|
|
|
|
""":obj:`str`: Convenience property. If :attr:`username` is available, returns a t.me link
|
|
|
|
of the user."""
|
|
|
|
|
|
|
|
if self.username:
|
|
|
|
return "https://t.me/{}".format(self.username)
|
|
|
|
return None
|
|
|
|
|
2017-07-23 21:14:38 +02:00
|
|
|
@classmethod
|
|
|
|
def de_json(cls, data, bot):
|
2015-08-22 04:15:29 +02:00
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
|
2017-07-23 21:14:38 +02:00
|
|
|
data = super(User, cls).de_json(data, bot)
|
2016-12-19 23:07:35 +01:00
|
|
|
|
2017-07-23 21:14:38 +02:00
|
|
|
return cls(bot=bot, **data)
|
2016-09-20 06:36:55 +02:00
|
|
|
|
|
|
|
def get_profile_photos(self, *args, **kwargs):
|
|
|
|
"""
|
2017-07-23 22:33:08 +02:00
|
|
|
Shortcut for::
|
|
|
|
|
|
|
|
bot.get_user_profile_photos(update.message.from_user.id, *args, **kwargs)
|
|
|
|
|
2016-09-20 06:36:55 +02:00
|
|
|
"""
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2017-06-14 00:07:03 +02:00
|
|
|
return self.bot.get_user_profile_photos(self.id, *args, **kwargs)
|
2017-05-21 14:32:36 +02:00
|
|
|
|
2017-07-23 21:14:38 +02:00
|
|
|
@classmethod
|
|
|
|
def de_list(cls, data, bot):
|
2017-05-21 14:32:36 +02:00
|
|
|
if not data:
|
|
|
|
return []
|
|
|
|
|
|
|
|
users = list()
|
|
|
|
for user in data:
|
2017-07-23 21:14:38 +02:00
|
|
|
users.append(cls.de_json(user, bot))
|
2017-05-21 14:32:36 +02:00
|
|
|
|
|
|
|
return users
|
2017-09-01 08:40:05 +02:00
|
|
|
|
|
|
|
def mention_markdown(self, name=None):
|
|
|
|
"""
|
|
|
|
Args:
|
2018-05-09 11:42:12 +02:00
|
|
|
name (:obj:`str`): The name used as a link for the user. Defaults to :attr:`full_name`.
|
2017-09-01 08:40:05 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`str`: The inline mention for the user as markdown.
|
2018-05-09 11:42:12 +02:00
|
|
|
|
2017-09-01 08:40:05 +02:00
|
|
|
"""
|
2018-05-09 11:42:12 +02:00
|
|
|
if name:
|
2017-09-01 08:40:05 +02:00
|
|
|
return util_mention_markdown(self.id, name)
|
2018-05-09 11:42:12 +02:00
|
|
|
return util_mention_markdown(self.id, self.full_name)
|
2017-09-01 08:40:05 +02:00
|
|
|
|
|
|
|
def mention_html(self, name=None):
|
|
|
|
"""
|
|
|
|
Args:
|
2018-05-09 11:42:12 +02:00
|
|
|
name (:obj:`str`): The name used as a link for the user. Defaults to :attr:`full_name`.
|
2017-09-01 08:40:05 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`str`: The inline mention for the user as HTML.
|
2018-05-09 11:42:12 +02:00
|
|
|
|
2017-09-01 08:40:05 +02:00
|
|
|
"""
|
2018-05-09 11:42:12 +02:00
|
|
|
if name:
|
2017-09-01 08:40:05 +02:00
|
|
|
return util_mention_html(self.id, name)
|
2018-05-09 11:42:12 +02:00
|
|
|
return util_mention_html(self.id, self.full_name)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def send_message(self, *args, **kwargs):
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2018-04-25 22:21:11 +02:00
|
|
|
bot.send_message(User.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
Where User is the current instance.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2018-03-17 00:10:11 +01:00
|
|
|
return self.bot.send_message(self.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def send_photo(self, *args, **kwargs):
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2018-04-25 22:21:11 +02:00
|
|
|
bot.send_photo(User.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
Where User is the current instance.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2018-03-17 00:10:11 +01:00
|
|
|
return self.bot.send_photo(self.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def send_audio(self, *args, **kwargs):
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2018-04-25 22:21:11 +02:00
|
|
|
bot.send_audio(User.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
Where User is the current instance.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2018-03-17 00:10:11 +01:00
|
|
|
return self.bot.send_audio(self.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def send_document(self, *args, **kwargs):
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2018-04-25 22:21:11 +02:00
|
|
|
bot.send_document(User.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
Where User is the current instance.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2018-03-17 00:10:11 +01:00
|
|
|
return self.bot.send_document(self.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
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
|
|
|
def send_animation(self, *args, **kwargs):
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
bot.send_animation(User.id, *args, **kwargs)
|
|
|
|
|
|
|
|
Where User is the current instance.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return self.bot.send_animation(self.id, *args, **kwargs)
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
def send_sticker(self, *args, **kwargs):
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2018-04-25 22:21:11 +02:00
|
|
|
bot.send_sticker(User.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
Where User is the current instance.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2018-03-17 00:10:11 +01:00
|
|
|
return self.bot.send_sticker(self.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def send_video(self, *args, **kwargs):
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2018-04-25 22:21:11 +02:00
|
|
|
bot.send_video(User.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
Where User is the current instance.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2018-03-17 00:10:11 +01:00
|
|
|
return self.bot.send_video(self.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def send_video_note(self, *args, **kwargs):
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2018-04-25 22:21:11 +02:00
|
|
|
bot.send_video_note(User.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
Where User is the current instance.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2018-03-17 00:10:11 +01:00
|
|
|
return self.bot.send_video_note(self.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def send_voice(self, *args, **kwargs):
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2018-04-25 22:21:11 +02:00
|
|
|
bot.send_voice(User.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
Where User is the current instance.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2018-03-17 00:10:11 +01:00
|
|
|
return self.bot.send_voice(self.id, *args, **kwargs)
|