2018-05-31 11:32:32 +03:00
|
|
|
from .. import types
|
2018-06-03 12:53:18 +03:00
|
|
|
from ...utils import get_input_peer, get_peer_id, get_inner_text
|
2018-05-31 11:32:32 +03:00
|
|
|
from .messagebutton import MessageButton
|
2018-06-25 12:34:10 +03:00
|
|
|
from .forward import Forward
|
2018-05-31 11:32:32 +03:00
|
|
|
|
|
|
|
|
|
|
|
class Message:
|
|
|
|
"""
|
|
|
|
Custom class that encapsulates a message providing an abstraction to
|
|
|
|
easily access some commonly needed features (such as the markdown text
|
|
|
|
or the text for a given message entity).
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
|
|
|
|
original_message (:tl:`Message`):
|
|
|
|
The original :tl:`Message` object.
|
|
|
|
|
|
|
|
Any other attribute:
|
|
|
|
Attributes not described here are the same as those available
|
|
|
|
in the original :tl:`Message`.
|
|
|
|
"""
|
2018-05-31 13:24:25 +03:00
|
|
|
def __init__(self, client, original, entities, input_chat):
|
2018-06-03 14:00:07 +03:00
|
|
|
# Share the original dictionary. Modifications to this
|
|
|
|
# object should also be reflected in the original one.
|
|
|
|
# This way there's no need to worry about get/setattr.
|
|
|
|
self.__dict__ = original.__dict__
|
2018-05-31 11:32:32 +03:00
|
|
|
self.original_message = original
|
|
|
|
self.stringify = self.original_message.stringify
|
|
|
|
self.to_dict = self.original_message.to_dict
|
|
|
|
self._client = client
|
|
|
|
self._text = None
|
2018-06-02 13:30:25 +03:00
|
|
|
self._reply_message = None
|
2018-05-31 11:32:32 +03:00
|
|
|
self._buttons = None
|
2018-05-31 15:09:43 +03:00
|
|
|
self._buttons_flat = None
|
2018-06-21 22:15:48 +03:00
|
|
|
self._buttons_count = None
|
2018-06-15 13:46:41 +03:00
|
|
|
|
2018-05-31 14:50:08 +03:00
|
|
|
self._sender = entities.get(self.original_message.from_id)
|
2018-06-02 13:30:25 +03:00
|
|
|
if self._sender:
|
|
|
|
self._input_sender = get_input_peer(self._sender)
|
|
|
|
else:
|
|
|
|
self._input_sender = None
|
2018-06-15 00:40:44 +03:00
|
|
|
|
2018-06-23 16:10:07 +03:00
|
|
|
# Determine the right chat where the message
|
|
|
|
# was sent, not *to which ID* it was sent.
|
|
|
|
if not self.original_message.out \
|
|
|
|
and isinstance(self.original_message.to_id, types.PeerUser):
|
|
|
|
self._chat_peer = types.PeerUser(self.original_message.from_id)
|
|
|
|
else:
|
|
|
|
self._chat_peer = self.original_message.to_id
|
|
|
|
|
2018-06-15 13:46:41 +03:00
|
|
|
self._chat = entities.get(self.chat_id)
|
2018-05-31 13:24:25 +03:00
|
|
|
self._input_chat = input_chat
|
2018-06-15 00:40:44 +03:00
|
|
|
if not self._input_chat and self._chat:
|
|
|
|
self._input_chat = get_input_peer(self._chat)
|
|
|
|
|
2018-05-31 14:56:33 +03:00
|
|
|
if getattr(self.original_message, 'fwd_from', None):
|
2018-06-25 12:34:10 +03:00
|
|
|
self._forward = Forward(
|
|
|
|
self._client, self.original_message.fwd_from, entities)
|
|
|
|
else:
|
|
|
|
self._forward = None
|
2018-05-31 11:32:32 +03:00
|
|
|
|
2018-06-01 22:20:34 +03:00
|
|
|
def __new__(cls, client, original, entities, input_chat):
|
|
|
|
if isinstance(original, types.Message):
|
|
|
|
return super().__new__(_CustomMessage)
|
|
|
|
elif isinstance(original, types.MessageService):
|
|
|
|
return super().__new__(_CustomMessageService)
|
|
|
|
else:
|
|
|
|
return cls
|
|
|
|
|
2018-05-31 13:50:08 +03:00
|
|
|
def __str__(self):
|
|
|
|
return str(self.original_message)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return repr(self.original_message)
|
|
|
|
|
2018-05-31 23:39:32 +03:00
|
|
|
def __bytes__(self):
|
|
|
|
return bytes(self.original_message)
|
|
|
|
|
2018-05-31 11:32:32 +03:00
|
|
|
@property
|
|
|
|
def client(self):
|
2018-06-02 13:52:38 +03:00
|
|
|
"""
|
|
|
|
Returns the `telethon.telegram_client.TelegramClient` instance that
|
|
|
|
created this instance.
|
|
|
|
"""
|
2018-05-31 11:32:32 +03:00
|
|
|
return self._client
|
|
|
|
|
|
|
|
@property
|
|
|
|
def text(self):
|
|
|
|
"""
|
2018-06-03 12:53:18 +03:00
|
|
|
The message text, formatted using the client's default parse mode.
|
2018-05-31 14:50:08 +03:00
|
|
|
Will be ``None`` for :tl:`MessageService`.
|
2018-05-31 11:32:32 +03:00
|
|
|
"""
|
2018-05-31 14:50:08 +03:00
|
|
|
if self._text is None\
|
|
|
|
and isinstance(self.original_message, types.Message):
|
2018-06-03 12:53:18 +03:00
|
|
|
if not self._client.parse_mode:
|
2018-05-31 11:32:32 +03:00
|
|
|
return self.original_message.message
|
2018-06-03 12:53:18 +03:00
|
|
|
self._text = self._client.parse_mode.unparse(
|
|
|
|
self.original_message.message, self.original_message.entities)
|
2018-05-31 11:32:32 +03:00
|
|
|
return self._text
|
|
|
|
|
2018-06-03 12:53:18 +03:00
|
|
|
@text.setter
|
|
|
|
def text(self, value):
|
|
|
|
if isinstance(self.original_message, types.Message):
|
|
|
|
if self._client.parse_mode:
|
|
|
|
msg, ent = self._client.parse_mode.parse(value)
|
|
|
|
else:
|
|
|
|
msg, ent = value, []
|
|
|
|
self.original_message.message = msg
|
|
|
|
self.original_message.entities = ent
|
|
|
|
self._text = value
|
|
|
|
|
2018-05-31 11:32:32 +03:00
|
|
|
@property
|
|
|
|
def raw_text(self):
|
|
|
|
"""
|
|
|
|
The raw message text, ignoring any formatting.
|
2018-05-31 14:50:08 +03:00
|
|
|
Will be ``None`` for :tl:`MessageService`.
|
2018-05-31 11:32:32 +03:00
|
|
|
"""
|
2018-05-31 14:50:08 +03:00
|
|
|
if isinstance(self.original_message, types.Message):
|
|
|
|
return self.original_message.message
|
2018-05-31 11:32:32 +03:00
|
|
|
|
2018-06-03 12:53:18 +03:00
|
|
|
@raw_text.setter
|
|
|
|
def raw_text(self, value):
|
|
|
|
if isinstance(self.original_message, types.Message):
|
|
|
|
self.original_message.message = value
|
|
|
|
self.original_message.entities = []
|
|
|
|
self._text = None
|
|
|
|
|
2018-05-31 13:24:25 +03:00
|
|
|
@property
|
2018-05-31 14:50:08 +03:00
|
|
|
def message(self):
|
|
|
|
"""
|
|
|
|
The raw message text, ignoring any formatting.
|
|
|
|
Will be ``None`` for :tl:`MessageService`.
|
|
|
|
"""
|
|
|
|
return self.raw_text
|
|
|
|
|
2018-06-03 12:53:18 +03:00
|
|
|
@message.setter
|
|
|
|
def message(self, value):
|
|
|
|
self.raw_text = value
|
|
|
|
|
2018-05-31 14:50:08 +03:00
|
|
|
@property
|
|
|
|
def action(self):
|
|
|
|
"""
|
|
|
|
The :tl:`MessageAction` for the :tl:`MessageService`.
|
|
|
|
Will be ``None`` for :tl:`Message`.
|
|
|
|
"""
|
|
|
|
if isinstance(self.original_message, types.MessageService):
|
|
|
|
return self.original_message.action
|
|
|
|
|
2018-06-10 21:29:57 +03:00
|
|
|
async def _reload_message(self):
|
2018-06-02 13:30:25 +03:00
|
|
|
"""
|
|
|
|
Re-fetches this message to reload the sender and chat entities,
|
|
|
|
along with their input versions.
|
|
|
|
"""
|
|
|
|
try:
|
2018-06-22 11:05:29 +03:00
|
|
|
chat = await self.get_input_chat() if self.is_channel else None
|
2018-06-10 21:29:57 +03:00
|
|
|
msg = await self._client.get_messages(
|
|
|
|
chat, ids=self.original_message.id)
|
2018-06-02 13:30:25 +03:00
|
|
|
except ValueError:
|
|
|
|
return # We may not have the input chat/get message failed
|
|
|
|
if not msg:
|
|
|
|
return # The message may be deleted and it will be None
|
|
|
|
|
|
|
|
self._sender = msg._sender
|
|
|
|
self._input_sender = msg._input_sender
|
|
|
|
self._chat = msg._chat
|
|
|
|
self._input_chat = msg._input_chat
|
|
|
|
|
2018-05-31 14:50:08 +03:00
|
|
|
@property
|
2018-06-21 22:15:48 +03:00
|
|
|
def sender(self):
|
2018-06-02 13:30:25 +03:00
|
|
|
"""
|
2018-06-21 22:15:48 +03:00
|
|
|
Returns the :tl:`User` that sent this message. It may be ``None``
|
|
|
|
if the message has no sender or if Telegram didn't send the sender
|
|
|
|
inside message events.
|
2018-06-02 13:30:25 +03:00
|
|
|
|
2018-06-21 22:15:48 +03:00
|
|
|
If you're using `telethon.events`, use `get_sender` instead.
|
2018-06-02 13:30:25 +03:00
|
|
|
"""
|
2018-06-21 22:15:48 +03:00
|
|
|
return self._sender
|
|
|
|
|
|
|
|
async def get_sender(self):
|
|
|
|
"""
|
|
|
|
Returns `sender`, but will make an API call to find the
|
|
|
|
sender unless it's already cached.
|
|
|
|
"""
|
|
|
|
if self._sender is None and await self.get_input_sender():
|
2018-06-02 13:30:25 +03:00
|
|
|
try:
|
2018-06-10 21:29:57 +03:00
|
|
|
self._sender =\
|
2018-06-21 10:26:31 +03:00
|
|
|
await self._client.get_entity(self._input_sender)
|
2018-06-02 13:30:25 +03:00
|
|
|
except ValueError:
|
2018-06-10 21:29:57 +03:00
|
|
|
await self._reload_message()
|
2018-05-31 14:50:08 +03:00
|
|
|
return self._sender
|
2018-05-31 13:24:25 +03:00
|
|
|
|
|
|
|
@property
|
2018-06-21 22:15:48 +03:00
|
|
|
def chat(self):
|
|
|
|
"""
|
|
|
|
Returns the :tl:`User`, :tl:`Chat` or :tl:`Channel` where this message
|
|
|
|
was sent. It may be ``None`` if Telegram didn't send the chat inside
|
|
|
|
message events.
|
|
|
|
|
|
|
|
If you're using `telethon.events`, use `get_chat` instead.
|
|
|
|
"""
|
|
|
|
return self._chat
|
|
|
|
|
|
|
|
async def get_chat(self):
|
2018-06-20 12:05:33 +03:00
|
|
|
"""
|
2018-06-21 22:15:48 +03:00
|
|
|
Returns `chat`, but will make an API call to find the
|
|
|
|
chat unless it's already cached.
|
2018-06-20 12:05:33 +03:00
|
|
|
"""
|
2018-06-21 22:15:48 +03:00
|
|
|
if self._chat is None and await self.get_input_chat():
|
2018-06-02 13:30:25 +03:00
|
|
|
try:
|
2018-06-10 21:29:57 +03:00
|
|
|
self._chat =\
|
2018-06-21 10:26:31 +03:00
|
|
|
await self._client.get_entity(self._input_chat)
|
2018-06-02 13:30:25 +03:00
|
|
|
except ValueError:
|
2018-06-10 21:29:57 +03:00
|
|
|
await self._reload_message()
|
2018-05-31 13:24:25 +03:00
|
|
|
return self._chat
|
|
|
|
|
|
|
|
@property
|
2018-06-21 22:15:48 +03:00
|
|
|
def input_sender(self):
|
2018-06-02 13:30:25 +03:00
|
|
|
"""
|
|
|
|
This (:tl:`InputPeer`) is the input version of the user who
|
|
|
|
sent the message. Similarly to `input_chat`, this doesn't have
|
|
|
|
things like username or similar, but still useful in some cases.
|
|
|
|
|
|
|
|
Note that this might not be available if the library can't
|
|
|
|
find the input chat, or if the message a broadcast on a channel.
|
|
|
|
"""
|
2018-05-31 14:50:08 +03:00
|
|
|
if self._input_sender is None:
|
2018-06-02 13:30:25 +03:00
|
|
|
if self.is_channel and not self.is_group:
|
|
|
|
return None
|
2018-06-21 22:15:48 +03:00
|
|
|
try:
|
|
|
|
self._input_sender = self._client.session\
|
|
|
|
.get_input_entity(self.original_message.from_id)
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
return self._input_sender
|
|
|
|
|
|
|
|
async def get_input_sender(self):
|
|
|
|
"""
|
|
|
|
Returns `input_sender`, but will make an API call to find the
|
|
|
|
input sender unless it's already cached.
|
|
|
|
"""
|
|
|
|
if self.input_sender is None\
|
|
|
|
and not self.is_channel and not self.is_group:
|
|
|
|
await self._reload_message()
|
2018-05-31 14:50:08 +03:00
|
|
|
return self._input_sender
|
2018-05-31 13:24:25 +03:00
|
|
|
|
|
|
|
@property
|
2018-06-21 22:15:48 +03:00
|
|
|
def input_chat(self):
|
2018-06-02 13:52:38 +03:00
|
|
|
"""
|
|
|
|
This (:tl:`InputPeer`) is the input version of the chat where the
|
|
|
|
message was sent. Similarly to `input_sender`, this doesn't have
|
|
|
|
things like username or similar, but still useful in some cases.
|
|
|
|
|
|
|
|
Note that this might not be available if the library doesn't know
|
2018-06-24 14:04:55 +03:00
|
|
|
where the message came from.
|
2018-06-02 13:52:38 +03:00
|
|
|
"""
|
2018-05-31 13:24:25 +03:00
|
|
|
if self._input_chat is None:
|
2018-06-21 22:15:48 +03:00
|
|
|
try:
|
2018-06-23 16:10:07 +03:00
|
|
|
self._input_chat =\
|
|
|
|
self._client.session.get_input_entity(self._chat_peer)
|
2018-06-21 22:15:48 +03:00
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return self._input_chat
|
|
|
|
|
|
|
|
async def get_input_chat(self):
|
|
|
|
"""
|
|
|
|
Returns `input_chat`, but will make an API call to find the
|
|
|
|
input chat unless it's already cached.
|
|
|
|
"""
|
|
|
|
if self.input_chat is None:
|
|
|
|
# There's a chance that the chat is a recent new dialog.
|
|
|
|
# The input chat cannot rely on ._reload_message() because
|
|
|
|
# said method may need the input chat.
|
|
|
|
target = self.chat_id
|
|
|
|
async for d in self._client.iter_dialogs(100):
|
|
|
|
if d.id == target:
|
|
|
|
self._chat = d.entity
|
|
|
|
self._input_chat = d.input_entity
|
|
|
|
break
|
2018-06-02 13:30:25 +03:00
|
|
|
|
2018-05-31 13:24:25 +03:00
|
|
|
return self._input_chat
|
|
|
|
|
|
|
|
@property
|
2018-06-02 13:30:25 +03:00
|
|
|
def sender_id(self):
|
|
|
|
"""
|
|
|
|
Returns the marked sender integer ID, if present.
|
|
|
|
"""
|
2018-05-31 13:24:25 +03:00
|
|
|
return self.original_message.from_id
|
|
|
|
|
|
|
|
@property
|
|
|
|
def chat_id(self):
|
2018-06-02 13:30:25 +03:00
|
|
|
"""
|
2018-06-15 13:46:41 +03:00
|
|
|
Returns the marked chat integer ID. Note that this value **will
|
|
|
|
be different** from `to_id` for incoming private messages, since
|
|
|
|
the chat *to* which the messages go is to your own person, but
|
|
|
|
the *chat* itself is with the one who sent the message.
|
|
|
|
|
|
|
|
TL;DR; this gets the ID that you expect.
|
2018-06-02 13:30:25 +03:00
|
|
|
"""
|
2018-06-23 16:10:07 +03:00
|
|
|
return get_peer_id(self._chat_peer)
|
2018-05-31 13:24:25 +03:00
|
|
|
|
2018-06-02 13:30:25 +03:00
|
|
|
@property
|
|
|
|
def is_private(self):
|
|
|
|
"""True if the message was sent as a private message."""
|
|
|
|
return isinstance(self.original_message.to_id, types.PeerUser)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_group(self):
|
|
|
|
"""True if the message was sent on a group or megagroup."""
|
2018-06-12 13:31:37 +03:00
|
|
|
return (
|
|
|
|
isinstance(self.original_message.to_id, (types.PeerChat,
|
|
|
|
types.PeerChannel))
|
|
|
|
and not self.original_message.post
|
|
|
|
)
|
2018-06-02 13:30:25 +03:00
|
|
|
|
|
|
|
@property
|
|
|
|
def is_channel(self):
|
|
|
|
"""True if the message was sent on a megagroup or channel."""
|
|
|
|
return isinstance(self.original_message.to_id, types.PeerChannel)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_reply(self):
|
|
|
|
"""True if the message is a reply to some other or not."""
|
|
|
|
return bool(self.original_message.reply_to_msg_id)
|
|
|
|
|
2018-06-25 12:34:10 +03:00
|
|
|
@property
|
|
|
|
def forward(self):
|
|
|
|
"""
|
|
|
|
Returns `telethon.tl.custom.forward.Forward` if the message
|
|
|
|
has been forwarded from somewhere else.
|
|
|
|
"""
|
|
|
|
return self._forward
|
|
|
|
|
2018-06-21 22:15:48 +03:00
|
|
|
def _set_buttons(self, sender, chat):
|
|
|
|
"""
|
|
|
|
Helper methods to set the buttons given the input sender and chat.
|
|
|
|
"""
|
|
|
|
if isinstance(self.original_message.reply_markup, (
|
|
|
|
types.ReplyInlineMarkup, types.ReplyKeyboardMarkup)):
|
|
|
|
self._buttons = [[
|
|
|
|
MessageButton(self._client, button, sender, chat,
|
|
|
|
self.original_message.id)
|
|
|
|
for button in row.buttons
|
|
|
|
] for row in self.original_message.reply_markup.rows]
|
|
|
|
self._buttons_flat = [x for row in self._buttons for x in row]
|
|
|
|
|
2018-05-31 11:32:32 +03:00
|
|
|
@property
|
2018-06-21 22:15:48 +03:00
|
|
|
def buttons(self):
|
2018-05-31 11:32:32 +03:00
|
|
|
"""
|
|
|
|
Returns a matrix (list of lists) containing all buttons of the message
|
|
|
|
as `telethon.tl.custom.messagebutton.MessageButton` instances.
|
|
|
|
"""
|
|
|
|
if self._buttons is None and self.original_message.reply_markup:
|
2018-06-21 22:15:48 +03:00
|
|
|
if self.input_sender and self.input_chat:
|
|
|
|
self._set_buttons(self._input_sender, self._input_chat)
|
|
|
|
|
|
|
|
return self._buttons
|
|
|
|
|
|
|
|
async def get_buttons(self):
|
|
|
|
"""
|
|
|
|
Returns `buttons`, but will make an API call to find the
|
|
|
|
input chat (needed for the buttons) unless it's already cached.
|
|
|
|
"""
|
|
|
|
if not self.buttons:
|
|
|
|
sender = await self.get_input_sender()
|
|
|
|
chat = await self.get_input_chat()
|
|
|
|
if sender and chat:
|
|
|
|
self._set_buttons(sender, chat)
|
|
|
|
|
2018-05-31 11:32:32 +03:00
|
|
|
return self._buttons
|
|
|
|
|
|
|
|
@property
|
2018-06-21 22:15:48 +03:00
|
|
|
def button_count(self):
|
2018-05-31 11:32:32 +03:00
|
|
|
"""
|
|
|
|
Returns the total button count.
|
|
|
|
"""
|
2018-06-21 22:15:48 +03:00
|
|
|
if self._buttons_count is not None and isinstance(
|
|
|
|
self.original_message.reply_markup, (
|
|
|
|
types.ReplyInlineMarkup, types.ReplyKeyboardMarkup
|
|
|
|
)):
|
|
|
|
self._buttons_count = sum(
|
|
|
|
1
|
|
|
|
for row in self.original_message.reply_markup.rows
|
|
|
|
for _ in row.buttons
|
|
|
|
)
|
|
|
|
|
|
|
|
return self._buttons_count or 0
|
2018-05-31 11:32:32 +03:00
|
|
|
|
|
|
|
@property
|
2018-06-02 13:30:25 +03:00
|
|
|
def photo(self):
|
|
|
|
"""
|
|
|
|
If the message media is a photo,
|
|
|
|
this returns the :tl:`Photo` object.
|
|
|
|
"""
|
|
|
|
if isinstance(self.original_message.media, types.MessageMediaPhoto):
|
|
|
|
photo = self.original_message.media.photo
|
|
|
|
if isinstance(photo, types.Photo):
|
|
|
|
return photo
|
|
|
|
|
|
|
|
@property
|
|
|
|
def document(self):
|
|
|
|
"""
|
|
|
|
If the message media is a document,
|
|
|
|
this returns the :tl:`Document` object.
|
|
|
|
"""
|
|
|
|
if isinstance(self.original_message.media, types.MessageMediaDocument):
|
|
|
|
doc = self.original_message.media.document
|
|
|
|
if isinstance(doc, types.Document):
|
|
|
|
return doc
|
|
|
|
|
|
|
|
def _document_by_attribute(self, kind, condition=None):
|
|
|
|
"""
|
|
|
|
Helper method to return the document only if it has an attribute
|
|
|
|
that's an instance of the given kind, and passes the condition.
|
|
|
|
"""
|
|
|
|
doc = self.document
|
|
|
|
if doc:
|
|
|
|
for attr in doc.attributes:
|
|
|
|
if isinstance(attr, kind):
|
|
|
|
if not condition or condition(doc):
|
|
|
|
return doc
|
|
|
|
|
|
|
|
@property
|
|
|
|
def audio(self):
|
|
|
|
"""
|
|
|
|
If the message media is a document with an Audio attribute,
|
|
|
|
this returns the :tl:`Document` object.
|
|
|
|
"""
|
|
|
|
return self._document_by_attribute(types.DocumentAttributeAudio,
|
|
|
|
lambda attr: not attr.voice)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def voice(self):
|
|
|
|
"""
|
|
|
|
If the message media is a document with a Voice attribute,
|
|
|
|
this returns the :tl:`Document` object.
|
|
|
|
"""
|
|
|
|
return self._document_by_attribute(types.DocumentAttributeAudio,
|
|
|
|
lambda attr: attr.voice)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def video(self):
|
|
|
|
"""
|
|
|
|
If the message media is a document with a Video attribute,
|
|
|
|
this returns the :tl:`Document` object.
|
|
|
|
"""
|
|
|
|
return self._document_by_attribute(types.DocumentAttributeVideo)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def video_note(self):
|
|
|
|
"""
|
|
|
|
If the message media is a document with a Video attribute,
|
|
|
|
this returns the :tl:`Document` object.
|
|
|
|
"""
|
|
|
|
return self._document_by_attribute(types.DocumentAttributeVideo,
|
|
|
|
lambda attr: attr.round_message)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def gif(self):
|
|
|
|
"""
|
|
|
|
If the message media is a document with an Animated attribute,
|
|
|
|
this returns the :tl:`Document` object.
|
|
|
|
"""
|
|
|
|
return self._document_by_attribute(types.DocumentAttributeAnimated)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def sticker(self):
|
|
|
|
"""
|
|
|
|
If the message media is a document with a Sticker attribute,
|
|
|
|
this returns the :tl:`Document` object.
|
|
|
|
"""
|
|
|
|
return self._document_by_attribute(types.DocumentAttributeSticker)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def out(self):
|
|
|
|
"""
|
|
|
|
Whether the message is outgoing (i.e. you sent it from
|
|
|
|
another session) or incoming (i.e. someone else sent it).
|
2018-06-16 18:35:24 +03:00
|
|
|
|
|
|
|
Note that messages in your own chat are always incoming,
|
|
|
|
but this property will be ``True`` if you send a message
|
|
|
|
to your own chat. Messages you forward to your chat are
|
|
|
|
*not* considered outgoing, just like official clients
|
|
|
|
display them.
|
2018-06-02 13:30:25 +03:00
|
|
|
"""
|
|
|
|
return self.original_message.out
|
|
|
|
|
2018-06-21 22:15:48 +03:00
|
|
|
async def get_reply_message(self):
|
2018-05-31 11:32:32 +03:00
|
|
|
"""
|
2018-06-02 13:52:38 +03:00
|
|
|
The `telethon.tl.custom.message.Message` that this message is replying
|
|
|
|
to, or ``None``.
|
2018-05-31 11:32:32 +03:00
|
|
|
|
|
|
|
Note that this will make a network call to fetch the message and
|
|
|
|
will later be cached.
|
|
|
|
"""
|
2018-06-02 13:30:25 +03:00
|
|
|
if self._reply_message is None:
|
2018-05-31 11:32:32 +03:00
|
|
|
if not self.original_message.reply_to_msg_id:
|
|
|
|
return None
|
2018-06-10 21:29:57 +03:00
|
|
|
self._reply_message = await self._client.get_messages(
|
2018-06-22 11:05:29 +03:00
|
|
|
await self.get_input_chat() if self.is_channel else None,
|
2018-05-31 11:32:32 +03:00
|
|
|
ids=self.original_message.reply_to_msg_id
|
|
|
|
)
|
|
|
|
|
2018-06-02 13:30:25 +03:00
|
|
|
return self._reply_message
|
|
|
|
|
2018-06-10 21:29:57 +03:00
|
|
|
async def respond(self, *args, **kwargs):
|
2018-06-02 13:30:25 +03:00
|
|
|
"""
|
|
|
|
Responds to the message (not as a reply). Shorthand for
|
|
|
|
`telethon.telegram_client.TelegramClient.send_message` with
|
|
|
|
``entity`` already set.
|
|
|
|
"""
|
2018-06-10 21:29:57 +03:00
|
|
|
return await self._client.send_message(
|
2018-06-22 11:05:29 +03:00
|
|
|
await self.get_input_chat(), *args, **kwargs)
|
2018-06-02 13:30:25 +03:00
|
|
|
|
2018-06-10 21:29:57 +03:00
|
|
|
async def reply(self, *args, **kwargs):
|
2018-05-31 11:32:32 +03:00
|
|
|
"""
|
|
|
|
Replies to the message (as a reply). Shorthand for
|
|
|
|
`telethon.telegram_client.TelegramClient.send_message` with
|
|
|
|
both ``entity`` and ``reply_to`` already set.
|
|
|
|
"""
|
|
|
|
kwargs['reply_to'] = self.original_message.id
|
2018-06-10 21:29:57 +03:00
|
|
|
return await self._client.send_message(
|
2018-06-22 11:05:29 +03:00
|
|
|
await self.get_input_chat(), *args, **kwargs)
|
2018-05-31 11:32:32 +03:00
|
|
|
|
2018-06-10 21:29:57 +03:00
|
|
|
async def forward_to(self, *args, **kwargs):
|
2018-06-02 13:30:25 +03:00
|
|
|
"""
|
|
|
|
Forwards the message. Shorthand for
|
|
|
|
`telethon.telegram_client.TelegramClient.forward_messages` with
|
|
|
|
both ``messages`` and ``from_peer`` already set.
|
|
|
|
|
|
|
|
If you need to forward more than one message at once, don't use
|
|
|
|
this `forward_to` method. Use a
|
|
|
|
`telethon.telegram_client.TelegramClient` instance directly.
|
|
|
|
"""
|
|
|
|
kwargs['messages'] = self.original_message.id
|
2018-06-22 11:05:29 +03:00
|
|
|
kwargs['from_peer'] = await self.get_input_chat()
|
2018-06-10 21:29:57 +03:00
|
|
|
return await self._client.forward_messages(*args, **kwargs)
|
2018-06-02 13:30:25 +03:00
|
|
|
|
2018-06-10 21:29:57 +03:00
|
|
|
async def edit(self, *args, **kwargs):
|
2018-05-31 15:01:42 +03:00
|
|
|
"""
|
|
|
|
Edits the message iff it's outgoing. Shorthand for
|
|
|
|
`telethon.telegram_client.TelegramClient.edit_message` with
|
|
|
|
both ``entity`` and ``message`` already set.
|
|
|
|
|
|
|
|
Returns ``None`` if the message was incoming, or the edited
|
|
|
|
:tl:`Message` otherwise.
|
|
|
|
"""
|
|
|
|
if self.original_message.fwd_from:
|
|
|
|
return None
|
|
|
|
if not self.original_message.out:
|
|
|
|
if not isinstance(self.original_message.to_id, types.PeerUser):
|
|
|
|
return None
|
|
|
|
me = self._client.get_me(input_peer=True)
|
|
|
|
if self.original_message.to_id.user_id != me.user_id:
|
|
|
|
return None
|
|
|
|
|
2018-06-10 21:29:57 +03:00
|
|
|
return await self._client.edit_message(
|
2018-06-22 11:05:29 +03:00
|
|
|
await self.get_input_chat(), self.original_message,
|
|
|
|
*args, **kwargs
|
|
|
|
)
|
2018-05-31 15:01:42 +03:00
|
|
|
|
2018-06-10 21:29:57 +03:00
|
|
|
async def delete(self, *args, **kwargs):
|
2018-05-31 15:01:42 +03:00
|
|
|
"""
|
|
|
|
Deletes the message. You're responsible for checking whether you
|
|
|
|
have the permission to do so, or to except the error otherwise.
|
|
|
|
Shorthand for
|
|
|
|
`telethon.telegram_client.TelegramClient.delete_messages` with
|
|
|
|
``entity`` and ``message_ids`` already set.
|
2018-06-02 13:30:25 +03:00
|
|
|
|
|
|
|
If you need to delete more than one message at once, don't use
|
|
|
|
this `delete` method. Use a
|
|
|
|
`telethon.telegram_client.TelegramClient` instance directly.
|
2018-05-31 15:01:42 +03:00
|
|
|
"""
|
2018-06-10 21:29:57 +03:00
|
|
|
return await self._client.delete_messages(
|
2018-06-22 11:05:29 +03:00
|
|
|
await self.get_input_chat(), [self.original_message],
|
|
|
|
*args, **kwargs
|
|
|
|
)
|
2018-05-31 15:01:42 +03:00
|
|
|
|
2018-06-10 21:29:57 +03:00
|
|
|
async def download_media(self, *args, **kwargs):
|
2018-05-31 11:32:32 +03:00
|
|
|
"""
|
|
|
|
Downloads the media contained in the message, if any.
|
|
|
|
`telethon.telegram_client.TelegramClient.download_media` with
|
|
|
|
the ``message`` already set.
|
|
|
|
"""
|
2018-06-10 21:29:57 +03:00
|
|
|
return await self._client.download_media(
|
|
|
|
self.original_message, *args, **kwargs)
|
2018-05-31 11:32:32 +03:00
|
|
|
|
2018-06-07 11:46:32 +03:00
|
|
|
def get_entities_text(self, cls=None):
|
2018-05-31 11:32:32 +03:00
|
|
|
"""
|
|
|
|
Returns a list of tuples [(:tl:`MessageEntity`, `str`)], the string
|
|
|
|
being the inner text of the message entity (like bold, italics, etc).
|
2018-06-07 11:46:32 +03:00
|
|
|
|
|
|
|
Args:
|
|
|
|
cls (`type`):
|
|
|
|
Returns entities matching this type only. For example,
|
|
|
|
the following will print the text for all ``code`` entities:
|
|
|
|
|
|
|
|
>>> from telethon.tl.types import MessageEntityCode
|
|
|
|
>>>
|
|
|
|
>>> m = Message(...)
|
|
|
|
>>> for _, inner_text in m.get_entities_text(MessageEntityCode):
|
|
|
|
>>> print(inner_text)
|
|
|
|
"""
|
2018-06-18 14:54:09 +03:00
|
|
|
if not self.original_message.entities:
|
|
|
|
return []
|
|
|
|
|
2018-06-26 16:58:55 +03:00
|
|
|
ent = self.original_message.entities
|
|
|
|
if cls and ent:
|
|
|
|
ent = [c for c in ent if isinstance(c, cls)]
|
|
|
|
|
|
|
|
texts = get_inner_text(self.original_message.message, ent)
|
|
|
|
return list(zip(ent, texts))
|
2018-05-31 11:32:32 +03:00
|
|
|
|
2018-06-10 21:29:57 +03:00
|
|
|
async def click(self, i=None, j=None, *, text=None, filter=None):
|
2018-05-31 11:32:32 +03:00
|
|
|
"""
|
2018-06-11 11:24:57 +03:00
|
|
|
Calls `telethon.tl.custom.messagebutton.MessageButton.click`
|
|
|
|
for the specified button.
|
2018-05-31 11:32:32 +03:00
|
|
|
|
2018-05-31 15:09:43 +03:00
|
|
|
Does nothing if the message has no buttons.
|
|
|
|
|
2018-05-31 11:32:32 +03:00
|
|
|
Args:
|
|
|
|
i (`int`):
|
|
|
|
Clicks the i'th button (starting from the index 0).
|
|
|
|
Will ``raise IndexError`` if out of bounds. Example:
|
|
|
|
|
|
|
|
>>> message = Message(...)
|
|
|
|
>>> # Clicking the 3rd button
|
|
|
|
>>> # [button1] [button2]
|
|
|
|
>>> # [ button3 ]
|
|
|
|
>>> # [button4] [button5]
|
|
|
|
>>> message.click(2) # index
|
|
|
|
|
|
|
|
j (`int`):
|
|
|
|
Clicks the button at position (i, j), these being the
|
|
|
|
indices for the (row, column) respectively. Example:
|
|
|
|
|
|
|
|
>>> # Clicking the 2nd button on the 1st row.
|
|
|
|
>>> # [button1] [button2]
|
|
|
|
>>> # [ button3 ]
|
|
|
|
>>> # [button4] [button5]
|
|
|
|
>>> message.click(0, 1) # (row, column)
|
|
|
|
|
|
|
|
This is equivalent to ``message.buttons[0][1].click()``.
|
|
|
|
|
|
|
|
text (`str` | `callable`):
|
|
|
|
Clicks the first button with the text "text". This may
|
|
|
|
also be a callable, like a ``re.compile(...).match``,
|
|
|
|
and the text will be passed to it.
|
|
|
|
|
|
|
|
filter (`callable`):
|
|
|
|
Clicks the first button for which the callable
|
|
|
|
returns ``True``. The callable should accept a single
|
|
|
|
`telethon.tl.custom.messagebutton.MessageButton` argument.
|
|
|
|
"""
|
2018-06-03 16:20:32 +03:00
|
|
|
if sum(int(x is not None) for x in (i, text, filter)) >= 2:
|
2018-05-31 11:32:32 +03:00
|
|
|
raise ValueError('You can only set either of i, text or filter')
|
|
|
|
|
2018-06-25 12:38:56 +03:00
|
|
|
if not await self.get_buttons():
|
2018-05-31 15:09:43 +03:00
|
|
|
return # Accessing the property sets self._buttons[_flat]
|
|
|
|
|
2018-05-31 11:32:32 +03:00
|
|
|
if text is not None:
|
|
|
|
if callable(text):
|
|
|
|
for button in self._buttons_flat:
|
|
|
|
if text(button.text):
|
2018-06-10 21:29:57 +03:00
|
|
|
return await button.click()
|
2018-05-31 11:32:32 +03:00
|
|
|
else:
|
|
|
|
for button in self._buttons_flat:
|
|
|
|
if button.text == text:
|
2018-06-10 21:29:57 +03:00
|
|
|
return await button.click()
|
2018-05-31 11:32:32 +03:00
|
|
|
return
|
|
|
|
|
|
|
|
if filter is not None:
|
|
|
|
for button in self._buttons_flat:
|
|
|
|
if filter(button):
|
2018-06-10 21:29:57 +03:00
|
|
|
return await button.click()
|
2018-05-31 11:32:32 +03:00
|
|
|
return
|
|
|
|
|
|
|
|
if i is None:
|
|
|
|
i = 0
|
|
|
|
if j is None:
|
2018-06-10 21:29:57 +03:00
|
|
|
return await self._buttons_flat[i].click()
|
2018-05-31 11:32:32 +03:00
|
|
|
else:
|
2018-06-10 21:29:57 +03:00
|
|
|
return await self._buttons[i][j].click()
|
2018-06-01 22:20:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
class _CustomMessage(Message, types.Message):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class _CustomMessageService(Message, types.MessageService):
|
|
|
|
pass
|