Source code for pyrogram.raw.types.input_media_photo

#  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 InputMediaPhoto(TLObject): # type: ignore """Forwarded photo Constructor of :obj:`~pyrogram.raw.base.InputMedia`. Details: - Layer: ``229`` - ID: ``E3AF4434`` Parameters: id (:obj:`InputPhoto <pyrogram.raw.base.InputPhoto>`): Photo to be forwarded spoiler (``bool``, *optional*): Whether this media should be hidden behind a spoiler warning live_photo (``bool``, *optional*): Whether this is a live photo, i.e. a still photo paired with the short ``video`` clip captured alongside it ttl_seconds (``int`` ``32-bit``, *optional*): Time to live of self-destructing photo, can be ``0`` to disable self-destruction, ``0x7FFFFFFF`` to self-destruct the document immediately after it's played; otherwise self-destructs ``ttl_seconds`` after it's played. video (:obj:`InputDocument <pyrogram.raw.base.InputDocument>`, *optional*): The short video clip of the live photo """ __slots__: List[str] = ["id", "spoiler", "live_photo", "ttl_seconds", "video"] ID = 0xe3af4434 QUALNAME = "types.InputMediaPhoto" def __init__(self, *, id: "raw.base.InputPhoto", spoiler: Optional[bool] = None, live_photo: Optional[bool] = None, ttl_seconds: Optional[int] = None, video: "raw.base.InputDocument" = None) -> None: self.id = id # InputPhoto self.spoiler = spoiler # flags.1?true self.live_photo = live_photo # flags.2?true self.ttl_seconds = ttl_seconds # flags.0?int self.video = video # flags.2?InputDocument @staticmethod def read(b: BytesIO, *args: Any) -> "InputMediaPhoto": flags = Int.read(b) spoiler = True if flags & (1 << 1) else False live_photo = True if flags & (1 << 2) else False id = TLObject.read(b) ttl_seconds = Int.read(b) if flags & (1 << 0) else None video = TLObject.read(b) if flags & (1 << 2) else None return InputMediaPhoto(id=id, spoiler=spoiler, live_photo=live_photo, ttl_seconds=ttl_seconds, video=video) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 1) if self.spoiler else 0 flags |= (1 << 2) if self.live_photo else 0 flags |= (1 << 0) if self.ttl_seconds is not None else 0 flags |= (1 << 2) if self.video is not None else 0 b.write(Int(flags)) b.write(self.id.write()) if self.ttl_seconds is not None: b.write(Int(self.ttl_seconds)) if self.video is not None: b.write(self.video.write()) return b.getvalue()