forked from TelegramPlayground/PyroTGFork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit_message_media.py
More file actions
412 lines (374 loc) · 18.2 KB
/
Copy pathedit_message_media.py
File metadata and controls
412 lines (374 loc) · 18.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# 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 datetime import datetime
import io
import os
import re
from typing import Union
import pyrogram
from pyrogram import raw, types, utils
from pyrogram.file_id import FileType
from .inline_session import get_session
class EditMessageMedia:
async def edit_message_media(
self: "pyrogram.Client",
chat_id: Union[int, str],
message_id: int,
media: "types.InputMedia",
reply_markup: "types.InlineKeyboardMarkup" = None,
file_name: str = None,
schedule_date: datetime = None,
business_connection_id: str = None
) -> "types.Message":
"""Edit animation, audio, document, photo or video messages, or to add media to text messages.
If a message is part of a message album, then it can be edited only to an audio for audio albums, only to a document for document albums and to a photo or a video otherwise. Otherwise, the
message type can be changed arbitrarily.
Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent.
.. include:: /_includes/usable-by/users-bots.rst
Parameters:
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:`~pyrogram.types.InputMedia`):
One of the InputMedia objects describing an animation, audio, document, photo or video.
reply_markup (:obj:`~pyrogram.types.InlineKeyboardMarkup`, *optional*):
An InlineKeyboardMarkup object.
file_name (``str``, *optional*):
File name of the media to be sent. Not applicable to photos.
Defaults to file's path basename.
schedule_date (:py:obj:`~datetime.datetime`, *optional*):
Date when the message will be automatically sent.
business_connection_id (``str``, *optional*):
Unique identifier of the business connection on behalf of which the message to be edited was sent
Returns:
:obj:`~pyrogram.types.Message`: On success, the edited message is returned.
Example:
.. code-block:: python
from pyrogram.types import InputMediaPhoto, InputMediaVideo, InputMediaAudio
# Replace the current media with a local photo
await app.edit_message_media(chat_id, message_id,
InputMediaPhoto("new_photo.jpg"))
# Replace the current media with a local video
await app.edit_message_media(chat_id, message_id,
InputMediaVideo("new_video.mp4"))
# Replace the current media with a local audio
await app.edit_message_media(chat_id, message_id,
InputMediaAudio("new_audio.mp3"))
"""
caption = media.caption
parse_mode = media.parse_mode
caption_entities = media.caption_entities
show_caption_above_media = []
message, entities = None, None
if caption is not None:
message, entities = (await utils.parse_text_entities(self, caption, parse_mode, caption_entities)).values()
is_bytes_io = isinstance(media.media, io.BytesIO)
is_uploaded_file = is_bytes_io or os.path.isfile(media.media)
is_external_url = not is_uploaded_file and re.match("^https?://", media.media)
if is_bytes_io and not hasattr(media.media, "name"):
media.media.name = "media"
if is_uploaded_file:
filename_attribute = [
raw.types.DocumentAttributeFilename(
file_name=file_name or (media.media.name if is_bytes_io else os.path.basename(media.media))
)
]
else:
filename_attribute = []
if isinstance(media, types.InputMediaPhoto):
show_caption_above_media.append(media.show_caption_above_media)
if is_uploaded_file:
uploaded_media = await self.invoke(
raw.functions.messages.UploadMedia(
business_connection_id=None, # TODO
peer=await self.resolve_peer(chat_id),
media=raw.types.InputMediaUploadedPhoto(
file=await self.save_file(media.media),
spoiler=media.has_spoiler
)
)
)
media = raw.types.InputMediaPhoto(
id=raw.types.InputPhoto(
id=uploaded_media.photo.id,
access_hash=uploaded_media.photo.access_hash,
file_reference=uploaded_media.photo.file_reference
),
spoiler=media.has_spoiler
)
elif is_external_url:
media = raw.types.InputMediaPhotoExternal(
url=media.media,
spoiler=media.has_spoiler
)
else:
media = utils.get_input_media_from_file_id(media.media, FileType.PHOTO, has_spoiler=media.has_spoiler)
elif isinstance(media, types.InputMediaVideo):
show_caption_above_media.append(media.show_caption_above_media)
coverfile = None
start_timestamp = None
# TODO: remove this duplicate code
if media.start_timestamp:
start_timestamp = media.start_timestamp
if media.cover:
cover = media.cover
cover_is_bytes_io = isinstance(cover, io.BytesIO)
cover_is_uploaded_file = cover_is_bytes_io or os.path.isfile(cover)
cover_is_external_url = not cover_is_uploaded_file and re.match("^https?://", cover)
if cover_is_bytes_io and not hasattr(cover, "name"):
cover.name = "cover.jpg"
if cover_is_uploaded_file:
coverfile = await self.invoke(
raw.functions.messages.UploadMedia(
business_connection_id=business_connection_id,
peer=await self.resolve_peer(chat_id),
media=raw.types.InputMediaUploadedPhoto(
file=await self.save_file(cover)
)
)
)
coverfile = raw.types.InputPhoto(
id=coverfile.photo.id,
access_hash=coverfile.photo.access_hash,
file_reference=coverfile.photo.file_reference
)
elif cover_is_external_url:
coverfile = await self.invoke(
raw.functions.messages.UploadMedia(
business_connection_id=business_connection_id,
peer=await self.resolve_peer(chat_id),
media=raw.types.InputMediaPhotoExternal(
url=cover
)
)
)
coverfile = raw.types.InputPhoto(
id=coverfile.photo.id,
access_hash=coverfile.photo.access_hash,
file_reference=coverfile.photo.file_reference
)
else:
coverfile = (utils.get_input_media_from_file_id(cover, FileType.PHOTO)).id
if is_uploaded_file:
uploaded_media = await self.invoke(
raw.functions.messages.UploadMedia(
business_connection_id=None, # TODO
peer=await self.resolve_peer(chat_id),
media=raw.types.InputMediaUploadedDocument(
mime_type=(None if is_bytes_io else self.guess_mime_type(media.media)) or "video/mp4",
thumb=await self.save_file(media.thumb),
spoiler=media.has_spoiler,
file=await self.save_file(media.media),
attributes=[
raw.types.DocumentAttributeVideo(
supports_streaming=media.supports_streaming or None,
duration=media.duration,
w=media.width,
h=media.height
),
] + filename_attribute,
nosound_video=not media.disable_content_type_detection,
force_file=media.disable_content_type_detection or None,
)
)
)
media = raw.types.InputMediaDocument(
id=raw.types.InputDocument(
id=uploaded_media.document.id,
access_hash=uploaded_media.document.access_hash,
file_reference=uploaded_media.document.file_reference
),
spoiler=media.has_spoiler,
video_cover=coverfile,
video_timestamp=start_timestamp
)
elif is_external_url:
media = raw.types.InputMediaDocumentExternal(
url=media.media,
spoiler=media.has_spoiler,
video_cover=coverfile,
video_timestamp=start_timestamp
)
else:
media = utils.get_input_media_from_file_id(media.media, FileType.VIDEO, has_spoiler=media.has_spoiler)
media.video_cover = coverfile
media.video_timestamp = start_timestamp
elif isinstance(media, types.InputMediaAudio):
if is_uploaded_file:
media = await self.invoke(
raw.functions.messages.UploadMedia(
business_connection_id=None, # TODO
peer=await self.resolve_peer(chat_id),
media=raw.types.InputMediaUploadedDocument(
mime_type=(None if is_bytes_io else self.guess_mime_type(media.media)) or "audio/mpeg",
thumb=await self.save_file(media.thumb),
file=await self.save_file(media.media),
attributes=[
raw.types.DocumentAttributeAudio(
duration=media.duration,
performer=media.performer,
title=media.title
),
] + filename_attribute,
)
)
)
media = raw.types.InputMediaDocument(
id=raw.types.InputDocument(
id=media.document.id,
access_hash=media.document.access_hash,
file_reference=media.document.file_reference
)
)
elif is_external_url:
media = raw.types.InputMediaDocumentExternal(
url=media.media
)
else:
media = utils.get_input_media_from_file_id(media.media, FileType.AUDIO)
elif isinstance(media, types.InputMediaAnimation):
show_caption_above_media.append(media.show_caption_above_media)
if is_uploaded_file:
uploaded_media = await self.invoke(
raw.functions.messages.UploadMedia(
business_connection_id=None, # TODO
peer=await self.resolve_peer(chat_id),
media=raw.types.InputMediaUploadedDocument(
mime_type=(None if is_bytes_io else self.guess_mime_type(media.media)) or "video/mp4",
thumb=await self.save_file(media.thumb),
spoiler=media.has_spoiler,
file=await self.save_file(media.media),
attributes=[
raw.types.DocumentAttributeVideo(
supports_streaming=True,
duration=media.duration,
w=media.width,
h=media.height
),
raw.types.DocumentAttributeAnimated(),
] + filename_attribute,
)
)
)
media = raw.types.InputMediaDocument(
id=raw.types.InputDocument(
id=uploaded_media.document.id,
access_hash=uploaded_media.document.access_hash,
file_reference=uploaded_media.document.file_reference
),
spoiler=media.has_spoiler
)
elif is_external_url:
media = raw.types.InputMediaDocumentExternal(
url=media.media,
spoiler=media.has_spoiler
)
else:
media = utils.get_input_media_from_file_id(media.media, FileType.ANIMATION, has_spoiler=media.has_spoiler)
elif isinstance(media, types.InputMediaDocument):
if is_uploaded_file:
media = await self.invoke(
raw.functions.messages.UploadMedia(
business_connection_id=None, # TODO
peer=await self.resolve_peer(chat_id),
media=raw.types.InputMediaUploadedDocument(
mime_type=(None if is_bytes_io else self.guess_mime_type(media.media)) or "application/zip",
thumb=await self.save_file(media.thumb),
file=await self.save_file(media.media),
attributes=filename_attribute,
force_file=media.disable_content_type_detection
)
)
)
media = raw.types.InputMediaDocument(
id=raw.types.InputDocument(
id=media.document.id,
access_hash=media.document.access_hash,
file_reference=media.document.file_reference
)
)
elif is_external_url:
media = raw.types.InputMediaDocumentExternal(
url=media.media
)
else:
media = utils.get_input_media_from_file_id(media.media, FileType.DOCUMENT)
rpc = raw.functions.messages.EditMessage(
peer=await self.resolve_peer(chat_id),
id=message_id,
media=media,
reply_markup=await reply_markup.write(self) if reply_markup else None,
message=message,
entities=entities,
invert_media=any(show_caption_above_media),
schedule_date=utils.datetime_to_timestamp(schedule_date)
)
session = None
business_connection = None
if business_connection_id:
business_connection = self.business_user_connection_cache[business_connection_id]
if business_connection is None:
business_connection = await self.get_business_connection(business_connection_id)
session = await get_session(
self,
business_connection._raw.connection.dc_id
)
if business_connection_id:
r = await session.invoke(
raw.functions.InvokeWithBusinessConnection(
query=rpc,
connection_id=business_connection_id
)
)
# await session.stop()
else:
r = await self.invoke(rpc)
for i in r.updates:
if isinstance(
i,
(
raw.types.UpdateEditMessage,
raw.types.UpdateEditChannelMessage,
raw.types.UpdateNewScheduledMessage
)
):
return await types.Message._parse(
self, i.message,
{i.id: i for i in r.users},
{i.id: i for i in r.chats},
is_scheduled=isinstance(i, raw.types.UpdateNewScheduledMessage),
replies=self.fetch_replies
)
elif isinstance(
i,
(
raw.types.UpdateBotEditBusinessMessage
)
):
return await types.Message._parse(
self,
i.message,
{i.id: i for i in r.users},
{i.id: i for i in r.chats},
business_connection_id=getattr(i, "connection_id", business_connection_id),
raw_reply_to_message=i.reply_to_message,
replies=0
)