Source code for pyrogram.raw.types.message_reply_header

#  Pyrogram - Telegram MTProto API Client Library for Python
#  Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
#  This file is part of Pyrogram.
#
#  Pyrogram is free software: you can redistribute it and/or modify
#  it under the terms of the GNU Lesser General Public License as published
#  by the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  Pyrogram 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 General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public License
#  along with Pyrogram.  If not, see <http://www.gnu.org/licenses/>.

from io import BytesIO

from pyrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from pyrogram.raw.core import TLObject
from pyrogram import raw
from typing import List, Optional, Any

# # # # # # # # # # # # # # # # # # # # # # # #
#               !!! WARNING !!!               #
#          This is a generated file!          #
# All changes made in this file will be lost! #
# # # # # # # # # # # # # # # # # # # # # # # #


[docs] class MessageReplyHeader(TLObject): # type: ignore """Message replies and `thread <https://core.telegram.org/api/threads>`_ information Constructor of :obj:`~pyrogram.raw.base.MessageReplyHeader`. Details: - Layer: ``229`` - ID: ``1B97DD66`` Parameters: reply_to_scheduled (``bool``, *optional*): This is a reply to a scheduled message. forum_topic (``bool``, *optional*): Whether this message was sent in a `forum topic <https://core.telegram.org/api/forum#forum-topics>`_ (except for the General topic). quote (``bool``, *optional*): Whether this message is quoting a part of another message. reply_to_ephemeral (``bool``, *optional*): N/A reply_to_msg_id (``int`` ``32-bit``, *optional*): ID of message to which this message is replying reply_to_peer_id (:obj:`Peer <pyrogram.raw.base.Peer>`, *optional*): For replies sent in `channel discussion threads <https://core.telegram.org/api/threads>`_ of which the current user is not a member, the discussion group ID reply_from (:obj:`MessageFwdHeader <pyrogram.raw.base.MessageFwdHeader>`, *optional*): When replying to a message sent by a certain peer to another chat, contains info about the peer that originally sent the message to that other chat. reply_media (:obj:`MessageMedia <pyrogram.raw.base.MessageMedia>`, *optional*): When replying to a media sent by a certain peer to another chat, contains the media of the replied-to message. reply_to_top_id (``int`` ``32-bit``, *optional*): ID of the message that started this `message thread <https://core.telegram.org/api/threads>`_ quote_text (``str``, *optional*): Used to quote-reply to only a certain section (specified here) of the original message. quote_entities (List of :obj:`MessageEntity <pyrogram.raw.base.MessageEntity>`, *optional*): `Message entities for styled text <https://core.telegram.org/api/entities>`_ from the ``quote_text`` field. quote_offset (``int`` ``32-bit``, *optional*): Offset of the message ``quote_text`` within the original message (in `UTF-16 code units <https://core.telegram.org/api/entities#entity-length>`_ ). todo_item_id (``int`` ``32-bit``, *optional*): Can be set to reply to the specified item of a `todo list » <https://core.telegram.org/api/todo>`_. poll_option (``bytes``, *optional*): If the message is a `reply to a specific poll answer option » <https://core.telegram.org/api/poll#replying-to-poll-options>`_, the ``option`` bytes of the answer the reply is directed at. """ __slots__: List[str] = ["reply_to_scheduled", "forum_topic", "quote", "reply_to_ephemeral", "reply_to_msg_id", "reply_to_peer_id", "reply_from", "reply_media", "reply_to_top_id", "quote_text", "quote_entities", "quote_offset", "todo_item_id", "poll_option"] ID = 0x1b97dd66 QUALNAME = "types.MessageReplyHeader" def __init__(self, *, reply_to_scheduled: Optional[bool] = None, forum_topic: Optional[bool] = None, quote: Optional[bool] = None, reply_to_ephemeral: Optional[bool] = None, reply_to_msg_id: Optional[int] = None, reply_to_peer_id: "raw.base.Peer" = None, reply_from: "raw.base.MessageFwdHeader" = None, reply_media: "raw.base.MessageMedia" = None, reply_to_top_id: Optional[int] = None, quote_text: Optional[str] = None, quote_entities: Optional[List["raw.base.MessageEntity"]] = None, quote_offset: Optional[int] = None, todo_item_id: Optional[int] = None, poll_option: Optional[bytes] = None) -> None: self.reply_to_scheduled = reply_to_scheduled # flags.2?true self.forum_topic = forum_topic # flags.3?true self.quote = quote # flags.9?true self.reply_to_ephemeral = reply_to_ephemeral # flags.13?true self.reply_to_msg_id = reply_to_msg_id # flags.4?int self.reply_to_peer_id = reply_to_peer_id # flags.0?Peer self.reply_from = reply_from # flags.5?MessageFwdHeader self.reply_media = reply_media # flags.8?MessageMedia self.reply_to_top_id = reply_to_top_id # flags.1?int self.quote_text = quote_text # flags.6?string self.quote_entities = quote_entities # flags.7?Vector<MessageEntity> self.quote_offset = quote_offset # flags.10?int self.todo_item_id = todo_item_id # flags.11?int self.poll_option = poll_option # flags.12?bytes @staticmethod def read(b: BytesIO, *args: Any) -> "MessageReplyHeader": flags = Int.read(b) reply_to_scheduled = True if flags & (1 << 2) else False forum_topic = True if flags & (1 << 3) else False quote = True if flags & (1 << 9) else False reply_to_ephemeral = True if flags & (1 << 13) else False reply_to_msg_id = Int.read(b) if flags & (1 << 4) else None reply_to_peer_id = TLObject.read(b) if flags & (1 << 0) else None reply_from = TLObject.read(b) if flags & (1 << 5) else None reply_media = TLObject.read(b) if flags & (1 << 8) else None reply_to_top_id = Int.read(b) if flags & (1 << 1) else None quote_text = String.read(b) if flags & (1 << 6) else None quote_entities = TLObject.read(b) if flags & (1 << 7) else [] quote_offset = Int.read(b) if flags & (1 << 10) else None todo_item_id = Int.read(b) if flags & (1 << 11) else None poll_option = Bytes.read(b) if flags & (1 << 12) else None return MessageReplyHeader(reply_to_scheduled=reply_to_scheduled, forum_topic=forum_topic, quote=quote, reply_to_ephemeral=reply_to_ephemeral, reply_to_msg_id=reply_to_msg_id, reply_to_peer_id=reply_to_peer_id, reply_from=reply_from, reply_media=reply_media, reply_to_top_id=reply_to_top_id, quote_text=quote_text, quote_entities=quote_entities, quote_offset=quote_offset, todo_item_id=todo_item_id, poll_option=poll_option) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 2) if self.reply_to_scheduled else 0 flags |= (1 << 3) if self.forum_topic else 0 flags |= (1 << 9) if self.quote else 0 flags |= (1 << 13) if self.reply_to_ephemeral else 0 flags |= (1 << 4) if self.reply_to_msg_id is not None else 0 flags |= (1 << 0) if self.reply_to_peer_id is not None else 0 flags |= (1 << 5) if self.reply_from is not None else 0 flags |= (1 << 8) if self.reply_media is not None else 0 flags |= (1 << 1) if self.reply_to_top_id is not None else 0 flags |= (1 << 6) if self.quote_text is not None else 0 flags |= (1 << 7) if self.quote_entities else 0 flags |= (1 << 10) if self.quote_offset is not None else 0 flags |= (1 << 11) if self.todo_item_id is not None else 0 flags |= (1 << 12) if self.poll_option is not None else 0 b.write(Int(flags)) if self.reply_to_msg_id is not None: b.write(Int(self.reply_to_msg_id)) if self.reply_to_peer_id is not None: b.write(self.reply_to_peer_id.write()) if self.reply_from is not None: b.write(self.reply_from.write()) if self.reply_media is not None: b.write(self.reply_media.write()) if self.reply_to_top_id is not None: b.write(Int(self.reply_to_top_id)) if self.quote_text is not None: b.write(String(self.quote_text)) if self.quote_entities: b.write(Vector(self.quote_entities)) if self.quote_offset is not None: b.write(Int(self.quote_offset)) if self.todo_item_id is not None: b.write(Int(self.todo_item_id)) if self.poll_option is not None: b.write(Bytes(self.poll_option)) return b.getvalue()