2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
2021-01-01 21:58:48 +00:00
|
|
|
# Copyright (C) 2017-2021 Dan <https://github.com/delivrance>
|
2018-08-01 23:10:29 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# This file is part of Pyrogram.
|
2018-08-01 23:10:29 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# 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.
|
2018-08-01 23:10:29 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# 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.
|
2018-08-01 23:10:29 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# 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-01 23:10:29 +00:00
|
|
|
|
2018-08-03 16:36:38 +00:00
|
|
|
import os
|
2020-07-09 00:22:56 +00:00
|
|
|
import re
|
2018-12-19 13:50:23 +00:00
|
|
|
from typing import Union
|
2018-08-03 16:36:38 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
from pyrogram import raw
|
|
|
|
from pyrogram import types
|
|
|
|
from pyrogram import utils
|
2020-11-27 21:09:17 +00:00
|
|
|
from pyrogram.file_id import FileType
|
2020-08-22 06:05:05 +00:00
|
|
|
from pyrogram.scaffold import Scaffold
|
2018-08-01 23:10:29 +00:00
|
|
|
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
class EditMessageMedia(Scaffold):
|
2020-08-21 05:28:27 +00:00
|
|
|
async def edit_message_media(
|
2019-03-16 18:23:23 +00:00
|
|
|
self,
|
2019-06-14 02:52:05 +00:00
|
|
|
chat_id: Union[int, str],
|
|
|
|
message_id: int,
|
2020-08-22 06:05:05 +00:00
|
|
|
media: "types.InputMedia",
|
|
|
|
reply_markup: "types.InlineKeyboardMarkup" = None,
|
2020-07-27 13:21:42 +00:00
|
|
|
file_name: str = None
|
2020-08-22 06:05:05 +00:00
|
|
|
) -> "types.Message":
|
2019-06-14 00:12:06 +00:00
|
|
|
"""Edit animation, audio, document, photo or video messages.
|
2018-09-20 14:33:36 +00:00
|
|
|
|
2019-06-14 02:52:05 +00:00
|
|
|
If a message is a part of a message album, then it can be edited only to a photo or a video. Otherwise, the
|
|
|
|
message type can be changed arbitrarily.
|
2018-09-20 14:33:36 +00:00
|
|
|
|
2019-05-09 02:28:46 +00:00
|
|
|
Parameters:
|
2019-06-14 02:52:05 +00:00
|
|
|
chat_id (``int`` | ``str``):
|
2018-09-20 14:33:36 +00:00
|
|
|
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).
|
|
|
|
|
2019-06-14 02:52:05 +00:00
|
|
|
message_id (``int``):
|
2018-09-20 14:33:36 +00:00
|
|
|
Message identifier in the chat specified in chat_id.
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
media (:obj:`~pyrogram.types.InputMedia`):
|
2019-06-14 02:52:05 +00:00
|
|
|
One of the InputMedia objects describing an animation, audio, document, photo or video.
|
2018-09-20 14:33:36 +00:00
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
reply_markup (:obj:`~pyrogram.types.InlineKeyboardMarkup`, *optional*):
|
2018-09-20 14:33:36 +00:00
|
|
|
An InlineKeyboardMarkup object.
|
2018-11-03 09:49:11 +00:00
|
|
|
|
2020-07-27 13:21:42 +00:00
|
|
|
file_name (``str``, *optional*):
|
|
|
|
File name of the media to be sent. Not applicable to photos.
|
|
|
|
Defaults to file's path basename.
|
|
|
|
|
2018-11-03 09:49:11 +00:00
|
|
|
Returns:
|
2020-08-22 06:05:05 +00:00
|
|
|
:obj:`~pyrogram.types.Message`: On success, the edited message is returned.
|
2018-11-03 09:49:11 +00:00
|
|
|
|
2019-07-25 09:22:14 +00:00
|
|
|
Example:
|
|
|
|
.. code-block:: python
|
|
|
|
|
2020-10-31 18:29:39 +00:00
|
|
|
from pyrogram.types import InputMediaPhoto, InputMediaVideo, InputMediaAudio
|
2019-07-25 09:22:14 +00:00
|
|
|
|
|
|
|
# Replace the current media with a local photo
|
|
|
|
app.edit_message_media(chat_id, message_id, InputMediaPhoto("new_photo.jpg"))
|
|
|
|
|
|
|
|
# Replace the current media with a local video
|
|
|
|
app.edit_message_media(chat_id, message_id, InputMediaVideo("new_video.mp4"))
|
|
|
|
|
|
|
|
# Replace the current media with a local audio
|
|
|
|
app.edit_message_media(chat_id, message_id, InputMediaAudio("new_audio.mp3"))
|
2018-09-20 14:33:36 +00:00
|
|
|
"""
|
2018-08-03 16:36:38 +00:00
|
|
|
caption = media.caption
|
2019-07-01 22:00:59 +00:00
|
|
|
parse_mode = media.parse_mode
|
2018-08-03 16:36:38 +00:00
|
|
|
|
2021-01-08 08:02:29 +00:00
|
|
|
message, entities = None, None
|
|
|
|
|
|
|
|
if caption is not None:
|
|
|
|
message, entities = (await self.parser.parse(caption, parse_mode)).values()
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
if isinstance(media, types.InputMediaPhoto):
|
2020-07-09 00:22:56 +00:00
|
|
|
if os.path.isfile(media.media):
|
2020-08-21 05:28:27 +00:00
|
|
|
media = await self.send(
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.functions.messages.UploadMedia(
|
2020-08-21 05:28:27 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2020-08-22 06:05:05 +00:00
|
|
|
media=raw.types.InputMediaUploadedPhoto(
|
2020-08-21 05:28:27 +00:00
|
|
|
file=await self.save_file(media.media)
|
2018-08-03 16:36:38 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaPhoto(
|
|
|
|
id=raw.types.InputPhoto(
|
2018-08-03 16:36:38 +00:00
|
|
|
id=media.photo.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.photo.access_hash,
|
2020-04-06 14:09:35 +00:00
|
|
|
file_reference=media.photo.file_reference
|
2018-08-03 16:36:38 +00:00
|
|
|
)
|
|
|
|
)
|
2020-07-09 00:22:56 +00:00
|
|
|
elif re.match("^https?://", media.media):
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaPhotoExternal(
|
2018-08-03 16:38:04 +00:00
|
|
|
url=media.media
|
|
|
|
)
|
2018-08-03 16:38:26 +00:00
|
|
|
else:
|
2020-11-27 21:09:17 +00:00
|
|
|
media = utils.get_input_media_from_file_id(media.media, FileType.PHOTO)
|
2020-08-22 06:05:05 +00:00
|
|
|
elif isinstance(media, types.InputMediaVideo):
|
2020-07-09 00:22:56 +00:00
|
|
|
if os.path.isfile(media.media):
|
2020-08-21 05:28:27 +00:00
|
|
|
media = await self.send(
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.functions.messages.UploadMedia(
|
2020-08-21 05:28:27 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2020-08-22 06:05:05 +00:00
|
|
|
media=raw.types.InputMediaUploadedDocument(
|
2019-04-20 15:59:42 +00:00
|
|
|
mime_type=self.guess_mime_type(media.media) or "video/mp4",
|
2020-08-21 05:28:27 +00:00
|
|
|
thumb=await self.save_file(media.thumb),
|
|
|
|
file=await self.save_file(media.media),
|
2018-08-03 23:23:31 +00:00
|
|
|
attributes=[
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.types.DocumentAttributeVideo(
|
2018-08-03 23:23:31 +00:00
|
|
|
supports_streaming=media.supports_streaming or None,
|
|
|
|
duration=media.duration,
|
|
|
|
w=media.width,
|
|
|
|
h=media.height
|
|
|
|
),
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.types.DocumentAttributeFilename(
|
2020-07-27 13:21:42 +00:00
|
|
|
file_name=file_name or os.path.basename(media.media)
|
2019-03-16 15:50:40 +00:00
|
|
|
)
|
2018-08-03 23:23:31 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaDocument(
|
|
|
|
id=raw.types.InputDocument(
|
2018-08-03 23:23:31 +00:00
|
|
|
id=media.document.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.document.access_hash,
|
2020-04-06 14:09:35 +00:00
|
|
|
file_reference=media.document.file_reference
|
2018-08-03 23:23:31 +00:00
|
|
|
)
|
|
|
|
)
|
2020-07-09 00:22:56 +00:00
|
|
|
elif re.match("^https?://", media.media):
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaDocumentExternal(
|
2018-08-03 23:27:02 +00:00
|
|
|
url=media.media
|
|
|
|
)
|
|
|
|
else:
|
2020-11-27 21:09:17 +00:00
|
|
|
media = utils.get_input_media_from_file_id(media.media, FileType.VIDEO)
|
2020-08-22 06:05:05 +00:00
|
|
|
elif isinstance(media, types.InputMediaAudio):
|
2020-07-09 00:22:56 +00:00
|
|
|
if os.path.isfile(media.media):
|
2020-08-21 05:28:27 +00:00
|
|
|
media = await self.send(
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.functions.messages.UploadMedia(
|
2020-08-21 05:28:27 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2020-08-22 06:05:05 +00:00
|
|
|
media=raw.types.InputMediaUploadedDocument(
|
2019-04-20 15:59:42 +00:00
|
|
|
mime_type=self.guess_mime_type(media.media) or "audio/mpeg",
|
2020-08-21 05:28:27 +00:00
|
|
|
thumb=await self.save_file(media.thumb),
|
|
|
|
file=await self.save_file(media.media),
|
2018-08-05 08:25:37 +00:00
|
|
|
attributes=[
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.types.DocumentAttributeAudio(
|
2018-08-05 08:25:37 +00:00
|
|
|
duration=media.duration,
|
|
|
|
performer=media.performer,
|
|
|
|
title=media.title
|
|
|
|
),
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.types.DocumentAttributeFilename(
|
2020-07-27 13:21:42 +00:00
|
|
|
file_name=file_name or os.path.basename(media.media)
|
2019-03-16 15:50:40 +00:00
|
|
|
)
|
2018-08-05 08:25:37 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaDocument(
|
|
|
|
id=raw.types.InputDocument(
|
2018-08-05 08:25:37 +00:00
|
|
|
id=media.document.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.document.access_hash,
|
2020-04-06 14:09:35 +00:00
|
|
|
file_reference=media.document.file_reference
|
2018-08-05 08:25:37 +00:00
|
|
|
)
|
|
|
|
)
|
2020-07-09 00:22:56 +00:00
|
|
|
elif re.match("^https?://", media.media):
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaDocumentExternal(
|
2018-08-05 08:25:37 +00:00
|
|
|
url=media.media
|
|
|
|
)
|
|
|
|
else:
|
2020-11-27 21:09:17 +00:00
|
|
|
media = utils.get_input_media_from_file_id(media.media, FileType.AUDIO)
|
2020-08-22 06:05:05 +00:00
|
|
|
elif isinstance(media, types.InputMediaAnimation):
|
2020-07-09 00:22:56 +00:00
|
|
|
if os.path.isfile(media.media):
|
2020-08-21 05:28:27 +00:00
|
|
|
media = await self.send(
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.functions.messages.UploadMedia(
|
2020-08-21 05:28:27 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2020-08-22 06:05:05 +00:00
|
|
|
media=raw.types.InputMediaUploadedDocument(
|
2019-04-20 15:59:42 +00:00
|
|
|
mime_type=self.guess_mime_type(media.media) or "video/mp4",
|
2020-08-22 06:05:05 +00:00
|
|
|
thumb=await self.save_file(media.thumb),
|
2020-08-21 05:28:27 +00:00
|
|
|
file=await self.save_file(media.media),
|
2018-08-14 12:14:03 +00:00
|
|
|
attributes=[
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.types.DocumentAttributeVideo(
|
2018-08-14 12:14:03 +00:00
|
|
|
supports_streaming=True,
|
|
|
|
duration=media.duration,
|
|
|
|
w=media.width,
|
|
|
|
h=media.height
|
|
|
|
),
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.types.DocumentAttributeFilename(
|
2020-07-27 13:21:42 +00:00
|
|
|
file_name=file_name or os.path.basename(media.media)
|
2019-03-16 15:50:40 +00:00
|
|
|
),
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.types.DocumentAttributeAnimated()
|
2018-08-14 12:14:03 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaDocument(
|
|
|
|
id=raw.types.InputDocument(
|
2018-08-14 12:14:03 +00:00
|
|
|
id=media.document.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.document.access_hash,
|
2020-04-06 14:09:35 +00:00
|
|
|
file_reference=media.document.file_reference
|
2018-08-14 12:14:03 +00:00
|
|
|
)
|
|
|
|
)
|
2020-07-09 00:22:56 +00:00
|
|
|
elif re.match("^https?://", media.media):
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaDocumentExternal(
|
2018-08-14 12:14:03 +00:00
|
|
|
url=media.media
|
|
|
|
)
|
|
|
|
else:
|
2020-11-27 21:09:17 +00:00
|
|
|
media = utils.get_input_media_from_file_id(media.media, FileType.ANIMATION)
|
2020-08-22 06:05:05 +00:00
|
|
|
elif isinstance(media, types.InputMediaDocument):
|
2020-07-09 00:22:56 +00:00
|
|
|
if os.path.isfile(media.media):
|
2020-08-21 05:28:27 +00:00
|
|
|
media = await self.send(
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.functions.messages.UploadMedia(
|
2020-08-21 05:28:27 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2020-08-22 06:05:05 +00:00
|
|
|
media=raw.types.InputMediaUploadedDocument(
|
2019-04-20 15:59:42 +00:00
|
|
|
mime_type=self.guess_mime_type(media.media) or "application/zip",
|
2020-08-21 05:28:27 +00:00
|
|
|
thumb=await self.save_file(media.thumb),
|
|
|
|
file=await self.save_file(media.media),
|
2018-08-23 19:21:27 +00:00
|
|
|
attributes=[
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.types.DocumentAttributeFilename(
|
2020-07-27 13:21:42 +00:00
|
|
|
file_name=file_name or os.path.basename(media.media)
|
2019-03-16 15:50:40 +00:00
|
|
|
)
|
2018-08-23 19:21:27 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaDocument(
|
|
|
|
id=raw.types.InputDocument(
|
2018-08-23 19:21:27 +00:00
|
|
|
id=media.document.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
access_hash=media.document.access_hash,
|
2020-04-06 14:09:35 +00:00
|
|
|
file_reference=media.document.file_reference
|
2018-08-23 19:21:27 +00:00
|
|
|
)
|
|
|
|
)
|
2020-07-09 00:22:56 +00:00
|
|
|
elif re.match("^https?://", media.media):
|
2020-08-22 06:05:05 +00:00
|
|
|
media = raw.types.InputMediaDocumentExternal(
|
2018-08-23 19:21:27 +00:00
|
|
|
url=media.media
|
|
|
|
)
|
|
|
|
else:
|
2020-11-27 21:09:17 +00:00
|
|
|
media = utils.get_input_media_from_file_id(media.media, FileType.DOCUMENT)
|
2018-08-03 23:23:31 +00:00
|
|
|
|
2020-08-21 05:28:27 +00:00
|
|
|
r = await self.send(
|
2020-08-22 06:05:05 +00:00
|
|
|
raw.functions.messages.EditMessage(
|
2020-08-21 05:28:27 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2018-08-01 23:10:29 +00:00
|
|
|
id=message_id,
|
2018-08-03 16:36:38 +00:00
|
|
|
media=media,
|
2019-06-14 00:12:06 +00:00
|
|
|
reply_markup=reply_markup.write() if reply_markup else None,
|
2021-01-08 08:02:29 +00:00
|
|
|
message=message,
|
|
|
|
entities=entities
|
2018-08-01 23:10:29 +00:00
|
|
|
)
|
|
|
|
)
|
2018-08-03 16:37:10 +00:00
|
|
|
|
|
|
|
for i in r.updates:
|
2020-08-22 06:05:05 +00:00
|
|
|
if isinstance(i, (raw.types.UpdateEditMessage, raw.types.UpdateEditChannelMessage)):
|
|
|
|
return await types.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}
|
|
|
|
)
|