Telethon/telethon/tl/custom/forward.py

45 lines
1.6 KiB
Python
Raw Normal View History

2018-07-10 16:15:22 +03:00
from .chatgetter import ChatGetter
from .sendergetter import SenderGetter
from ... import utils
from ...tl import types
2018-06-25 12:34:10 +03:00
2018-07-10 16:15:22 +03:00
class Forward(ChatGetter, SenderGetter):
2018-06-25 12:34:10 +03:00
"""
Custom class that encapsulates a :tl:`MessageFwdHeader` providing an
abstraction to easily access information like the original sender.
2018-07-10 16:15:22 +03:00
Remember that this class implements `ChatGetter
<telethon.tl.custom.chatgetter.ChatGetter>` and `SenderGetter
<telethon.tl.custom.sendergetter.SenderGetter>` which means you
have access to all their sender and chat properties and methods.
2018-06-25 12:34:10 +03:00
Attributes:
original_fwd (:tl:`MessageFwdHeader`):
The original :tl:`MessageFwdHeader` instance.
Any other attribute:
Attributes not described here are the same as those available
in the original :tl:`MessageFwdHeader`.
"""
def __init__(self, client, original, entities):
self.__dict__ = original.__dict__
self._client = client
self.original_fwd = original
2019-05-12 15:00:12 +03:00
sender, input_sender = utils._get_entity_pair(
original.from_id, entities, client._entity_cache)
2018-06-25 12:34:10 +03:00
2019-05-12 15:00:12 +03:00
if not original.channel_id:
peer = chat = input_chat = None
2018-07-10 16:15:22 +03:00
else:
2019-05-12 15:00:12 +03:00
peer = types.PeerChannel(original.channel_id)
chat, input_chat = utils._get_entity_pair(
utils.get_peer_id(peer), entities, client._entity_cache)
ChatGetter.__init__(self, peer, chat=chat, input_chat=input_chat)
SenderGetter.__init__(self, original.from_id, sender=sender, input_sender=input_sender)
2018-06-25 12:34:10 +03:00
2018-07-10 16:15:22 +03:00
# TODO We could reload the message