2018-08-01 23:10:29 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
2019-01-01 11:36:16 +00:00
|
|
|
# Copyright (C) 2017-2019 Dan Tès <https://github.com/delivrance>
|
2018-08-01 23:10:29 +00:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2018-08-03 16:38:26 +00:00
|
|
|
import binascii
|
2018-08-03 23:23:31 +00:00
|
|
|
import mimetypes
|
2018-08-03 16:36:38 +00:00
|
|
|
import os
|
2018-08-03 16:38:26 +00:00
|
|
|
import struct
|
2018-12-19 13:50:23 +00:00
|
|
|
from typing import Union
|
2018-08-03 16:36:38 +00:00
|
|
|
|
2018-12-18 08:45:49 +00:00
|
|
|
import pyrogram
|
2018-08-03 16:36:38 +00:00
|
|
|
from pyrogram.api import functions, types
|
2018-08-03 16:38:26 +00:00
|
|
|
from pyrogram.api.errors import FileIdInvalid
|
2018-08-03 16:37:10 +00:00
|
|
|
from pyrogram.client.ext import BaseClient, utils
|
2018-08-03 16:36:38 +00:00
|
|
|
from pyrogram.client.types import (
|
2018-08-14 12:14:03 +00:00
|
|
|
InputMediaPhoto, InputMediaVideo, InputMediaAudio,
|
2018-08-23 19:21:27 +00:00
|
|
|
InputMediaAnimation, InputMediaDocument
|
2018-08-03 16:36:38 +00:00
|
|
|
)
|
2018-12-19 13:50:23 +00:00
|
|
|
from pyrogram.client.types.input_media import InputMedia
|
2018-08-01 23:10:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
class EditMessageMedia(BaseClient):
|
2018-08-23 19:07:19 +00:00
|
|
|
async def edit_message_media(self,
|
2018-12-19 13:50:23 +00:00
|
|
|
chat_id: Union[int, str],
|
2018-08-01 23:10:29 +00:00
|
|
|
message_id: int,
|
2018-12-19 13:50:23 +00:00
|
|
|
media: InputMedia,
|
2018-12-19 14:59:15 +00:00
|
|
|
reply_markup: "pyrogram.InlineKeyboardMarkup" = None) -> "pyrogram.Message":
|
2018-09-20 14:33:36 +00:00
|
|
|
"""Use this method to edit audio, document, photo, or video messages.
|
|
|
|
|
|
|
|
If a message is a part of a message album, then it can be edited only to a photo or a video. Otherwise,
|
|
|
|
message type can be changed arbitrarily. When inline message is edited, new file can't be uploaded.
|
|
|
|
Use previously uploaded file via its file_id or specify a URL. On success, if the edited message was sent
|
|
|
|
by the bot, the edited Message is returned, otherwise True is returned.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
chat_id (``int`` | ``str``):
|
|
|
|
Unique identifier (int) or username (str) of the target chat.
|
|
|
|
For your personal cloud (Saved Messages) you can simply use "me" or "self".
|
|
|
|
For a contact that exists in your Telegram address book you can use his phone number (str).
|
|
|
|
|
|
|
|
message_id (``int``):
|
|
|
|
Message identifier in the chat specified in chat_id.
|
|
|
|
|
|
|
|
media (:obj:`InputMediaAnimation` | :obj:`InputMediaAudio` | :obj:`InputMediaDocument` | :obj:`InputMediaPhoto` | :obj:`InputMediaVideo`)
|
|
|
|
One of the InputMedia objects describing an animation, audio, document, photo or video.
|
|
|
|
|
|
|
|
reply_markup (:obj:`InlineKeyboardMarkup`, *optional*):
|
|
|
|
An InlineKeyboardMarkup object.
|
2018-11-03 09:49:11 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
On success, the edited :obj:`Message <pyrogram.Message>` is returned.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
:class:`Error <pyrogram.Error>` in case of a Telegram RPC error.
|
2018-09-20 14:33:36 +00:00
|
|
|
"""
|
2018-08-03 16:36:38 +00:00
|
|
|
style = self.html if media.parse_mode.lower() == "html" else self.markdown
|
|
|
|
caption = media.caption
|
|
|
|
|
|
|
|
if isinstance(media, InputMediaPhoto):
|
|
|
|
if os.path.exists(media.media):
|
2018-08-23 19:07:19 +00:00
|
|
|
media = await self.send(
|
2018-08-03 16:36:38 +00:00
|
|
|
functions.messages.UploadMedia(
|
2018-08-23 19:07:19 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2018-08-03 16:36:38 +00:00
|
|
|
media=types.InputMediaUploadedPhoto(
|
2018-08-23 19:07:19 +00:00
|
|
|
file=await self.save_file(media.media)
|
2018-08-03 16:36:38 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
media = types.InputMediaPhoto(
|
|
|
|
id=types.InputPhoto(
|
|
|
|
id=media.photo.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.photo.access_hash,
|
|
|
|
file_reference=b""
|
2018-08-03 16:36:38 +00:00
|
|
|
)
|
|
|
|
)
|
2018-08-03 16:38:04 +00:00
|
|
|
elif media.media.startswith("http"):
|
|
|
|
media = types.InputMediaPhotoExternal(
|
|
|
|
url=media.media
|
|
|
|
)
|
2018-08-03 16:38:26 +00:00
|
|
|
else:
|
|
|
|
try:
|
|
|
|
decoded = utils.decode(media.media)
|
|
|
|
fmt = "<iiqqqqi" if len(decoded) > 24 else "<iiqq"
|
|
|
|
unpacked = struct.unpack(fmt, decoded)
|
|
|
|
except (AssertionError, binascii.Error, struct.error):
|
|
|
|
raise FileIdInvalid from None
|
|
|
|
else:
|
|
|
|
if unpacked[0] != 2:
|
|
|
|
media_type = BaseClient.MEDIA_TYPE_ID.get(unpacked[0], None)
|
|
|
|
|
|
|
|
if media_type:
|
|
|
|
raise FileIdInvalid("The file_id belongs to a {}".format(media_type))
|
|
|
|
else:
|
|
|
|
raise FileIdInvalid("Unknown media type: {}".format(unpacked[0]))
|
|
|
|
|
|
|
|
media = types.InputMediaPhoto(
|
|
|
|
id=types.InputPhoto(
|
|
|
|
id=unpacked[2],
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=unpacked[3],
|
|
|
|
file_reference=b""
|
2018-08-03 16:38:26 +00:00
|
|
|
)
|
|
|
|
)
|
2018-08-03 16:36:38 +00:00
|
|
|
|
2018-08-03 23:23:31 +00:00
|
|
|
if isinstance(media, InputMediaVideo):
|
|
|
|
if os.path.exists(media.media):
|
2018-08-23 19:07:19 +00:00
|
|
|
media = await self.send(
|
2018-08-03 23:23:31 +00:00
|
|
|
functions.messages.UploadMedia(
|
2018-08-23 19:07:19 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2018-08-03 23:23:31 +00:00
|
|
|
media=types.InputMediaUploadedDocument(
|
|
|
|
mime_type=mimetypes.types_map[".mp4"],
|
2018-08-23 19:07:19 +00:00
|
|
|
file=await self.save_file(media.media),
|
2018-08-03 23:23:31 +00:00
|
|
|
attributes=[
|
|
|
|
types.DocumentAttributeVideo(
|
|
|
|
supports_streaming=media.supports_streaming or None,
|
|
|
|
duration=media.duration,
|
|
|
|
w=media.width,
|
|
|
|
h=media.height
|
|
|
|
),
|
|
|
|
types.DocumentAttributeFilename(os.path.basename(media.media))
|
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
media = types.InputMediaDocument(
|
|
|
|
id=types.InputDocument(
|
|
|
|
id=media.document.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.document.access_hash,
|
|
|
|
file_reference=b""
|
2018-08-03 23:23:31 +00:00
|
|
|
)
|
|
|
|
)
|
2018-08-03 23:27:02 +00:00
|
|
|
elif media.media.startswith("http"):
|
|
|
|
media = types.InputMediaDocumentExternal(
|
|
|
|
url=media.media
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
decoded = utils.decode(media.media)
|
|
|
|
fmt = "<iiqqqqi" if len(decoded) > 24 else "<iiqq"
|
|
|
|
unpacked = struct.unpack(fmt, decoded)
|
|
|
|
except (AssertionError, binascii.Error, struct.error):
|
|
|
|
raise FileIdInvalid from None
|
|
|
|
else:
|
|
|
|
if unpacked[0] != 4:
|
|
|
|
media_type = BaseClient.MEDIA_TYPE_ID.get(unpacked[0], None)
|
|
|
|
|
2018-08-05 08:25:37 +00:00
|
|
|
if media_type:
|
|
|
|
raise FileIdInvalid("The file_id belongs to a {}".format(media_type))
|
|
|
|
else:
|
|
|
|
raise FileIdInvalid("Unknown media type: {}".format(unpacked[0]))
|
|
|
|
|
|
|
|
media = types.InputMediaDocument(
|
|
|
|
id=types.InputDocument(
|
|
|
|
id=unpacked[2],
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=unpacked[3],
|
|
|
|
file_reference=b""
|
2018-08-05 08:25:37 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
if isinstance(media, InputMediaAudio):
|
|
|
|
if os.path.exists(media.media):
|
2018-08-23 19:07:19 +00:00
|
|
|
media = await self.send(
|
2018-08-05 08:25:37 +00:00
|
|
|
functions.messages.UploadMedia(
|
2018-08-23 19:07:19 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2018-08-05 08:25:37 +00:00
|
|
|
media=types.InputMediaUploadedDocument(
|
|
|
|
mime_type=mimetypes.types_map.get("." + media.media.split(".")[-1], "audio/mpeg"),
|
2018-08-23 19:07:19 +00:00
|
|
|
file=await self.save_file(media.media),
|
2018-08-05 08:25:37 +00:00
|
|
|
attributes=[
|
|
|
|
types.DocumentAttributeAudio(
|
|
|
|
duration=media.duration,
|
|
|
|
performer=media.performer,
|
|
|
|
title=media.title
|
|
|
|
),
|
|
|
|
types.DocumentAttributeFilename(os.path.basename(media.media))
|
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
media = types.InputMediaDocument(
|
|
|
|
id=types.InputDocument(
|
|
|
|
id=media.document.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.document.access_hash,
|
|
|
|
file_reference=b""
|
2018-08-05 08:25:37 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
elif media.media.startswith("http"):
|
|
|
|
media = types.InputMediaDocumentExternal(
|
|
|
|
url=media.media
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
decoded = utils.decode(media.media)
|
|
|
|
fmt = "<iiqqqqi" if len(decoded) > 24 else "<iiqq"
|
|
|
|
unpacked = struct.unpack(fmt, decoded)
|
|
|
|
except (AssertionError, binascii.Error, struct.error):
|
|
|
|
raise FileIdInvalid from None
|
|
|
|
else:
|
|
|
|
if unpacked[0] != 9:
|
|
|
|
media_type = BaseClient.MEDIA_TYPE_ID.get(unpacked[0], None)
|
|
|
|
|
2018-08-14 12:14:03 +00:00
|
|
|
if media_type:
|
|
|
|
raise FileIdInvalid("The file_id belongs to a {}".format(media_type))
|
|
|
|
else:
|
|
|
|
raise FileIdInvalid("Unknown media type: {}".format(unpacked[0]))
|
|
|
|
|
|
|
|
media = types.InputMediaDocument(
|
|
|
|
id=types.InputDocument(
|
|
|
|
id=unpacked[2],
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=unpacked[3],
|
|
|
|
file_reference=b""
|
2018-08-14 12:14:03 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
if isinstance(media, InputMediaAnimation):
|
|
|
|
if os.path.exists(media.media):
|
2018-08-23 19:07:19 +00:00
|
|
|
media = await self.send(
|
2018-08-14 12:14:03 +00:00
|
|
|
functions.messages.UploadMedia(
|
2018-08-23 19:07:19 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2018-08-14 12:14:03 +00:00
|
|
|
media=types.InputMediaUploadedDocument(
|
|
|
|
mime_type=mimetypes.types_map[".mp4"],
|
2018-08-23 19:07:19 +00:00
|
|
|
file=await self.save_file(media.media),
|
2018-08-14 12:14:03 +00:00
|
|
|
attributes=[
|
|
|
|
types.DocumentAttributeVideo(
|
|
|
|
supports_streaming=True,
|
|
|
|
duration=media.duration,
|
|
|
|
w=media.width,
|
|
|
|
h=media.height
|
|
|
|
),
|
|
|
|
types.DocumentAttributeFilename(os.path.basename(media.media)),
|
|
|
|
types.DocumentAttributeAnimated()
|
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
media = types.InputMediaDocument(
|
|
|
|
id=types.InputDocument(
|
|
|
|
id=media.document.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.document.access_hash,
|
|
|
|
file_reference=b""
|
2018-08-14 12:14:03 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
elif media.media.startswith("http"):
|
|
|
|
media = types.InputMediaDocumentExternal(
|
|
|
|
url=media.media
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
decoded = utils.decode(media.media)
|
|
|
|
fmt = "<iiqqqqi" if len(decoded) > 24 else "<iiqq"
|
|
|
|
unpacked = struct.unpack(fmt, decoded)
|
|
|
|
except (AssertionError, binascii.Error, struct.error):
|
|
|
|
raise FileIdInvalid from None
|
|
|
|
else:
|
|
|
|
if unpacked[0] != 10:
|
|
|
|
media_type = BaseClient.MEDIA_TYPE_ID.get(unpacked[0], None)
|
|
|
|
|
2018-08-23 19:21:27 +00:00
|
|
|
if media_type:
|
|
|
|
raise FileIdInvalid("The file_id belongs to a {}".format(media_type))
|
|
|
|
else:
|
|
|
|
raise FileIdInvalid("Unknown media type: {}".format(unpacked[0]))
|
|
|
|
|
|
|
|
media = types.InputMediaDocument(
|
|
|
|
id=types.InputDocument(
|
|
|
|
id=unpacked[2],
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=unpacked[3],
|
|
|
|
file_reference=b""
|
2018-08-23 19:21:27 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
if isinstance(media, InputMediaDocument):
|
|
|
|
if os.path.exists(media.media):
|
2018-08-23 19:22:29 +00:00
|
|
|
media = await self.send(
|
2018-08-23 19:21:27 +00:00
|
|
|
functions.messages.UploadMedia(
|
2018-08-23 19:22:29 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2018-08-23 19:21:27 +00:00
|
|
|
media=types.InputMediaUploadedDocument(
|
|
|
|
mime_type=mimetypes.types_map.get("." + media.media.split(".")[-1], "text/plain"),
|
2018-08-23 19:22:29 +00:00
|
|
|
file=await self.save_file(media.media),
|
2018-08-23 19:21:27 +00:00
|
|
|
attributes=[
|
|
|
|
types.DocumentAttributeFilename(os.path.basename(media.media))
|
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
media = types.InputMediaDocument(
|
|
|
|
id=types.InputDocument(
|
|
|
|
id=media.document.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.document.access_hash,
|
|
|
|
file_reference=b""
|
2018-08-23 19:21:27 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
elif media.media.startswith("http"):
|
|
|
|
media = types.InputMediaDocumentExternal(
|
|
|
|
url=media.media
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
decoded = utils.decode(media.media)
|
|
|
|
fmt = "<iiqqqqi" if len(decoded) > 24 else "<iiqq"
|
|
|
|
unpacked = struct.unpack(fmt, decoded)
|
|
|
|
except (AssertionError, binascii.Error, struct.error):
|
|
|
|
raise FileIdInvalid from None
|
|
|
|
else:
|
|
|
|
if unpacked[0] not in (5, 10):
|
|
|
|
media_type = BaseClient.MEDIA_TYPE_ID.get(unpacked[0], None)
|
|
|
|
|
2018-08-03 23:27:02 +00:00
|
|
|
if media_type:
|
|
|
|
raise FileIdInvalid("The file_id belongs to a {}".format(media_type))
|
|
|
|
else:
|
|
|
|
raise FileIdInvalid("Unknown media type: {}".format(unpacked[0]))
|
|
|
|
|
|
|
|
media = types.InputMediaDocument(
|
|
|
|
id=types.InputDocument(
|
|
|
|
id=unpacked[2],
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=unpacked[3],
|
|
|
|
file_reference=b""
|
2018-08-03 23:27:02 +00:00
|
|
|
)
|
|
|
|
)
|
2018-08-03 23:23:31 +00:00
|
|
|
|
2018-08-23 19:07:19 +00:00
|
|
|
r = await self.send(
|
2018-08-01 23:10:29 +00:00
|
|
|
functions.messages.EditMessage(
|
2018-08-23 19:07:19 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2018-08-01 23:10:29 +00:00
|
|
|
id=message_id,
|
|
|
|
reply_markup=reply_markup.write() if reply_markup else None,
|
2018-08-03 16:36:38 +00:00
|
|
|
media=media,
|
|
|
|
**style.parse(caption)
|
2018-08-01 23:10:29 +00:00
|
|
|
)
|
|
|
|
)
|
2018-08-03 16:37:10 +00:00
|
|
|
|
|
|
|
for i in r.updates:
|
|
|
|
if isinstance(i, (types.UpdateEditMessage, types.UpdateEditChannelMessage)):
|
2018-12-22 11:23:08 +00:00
|
|
|
return await pyrogram.Message._parse(
|
2018-08-03 16:37:10 +00:00
|
|
|
self, i.message,
|
|
|
|
{i.id: i for i in r.users},
|
|
|
|
{i.id: i for i in r.chats}
|
|
|
|
)
|