-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathedit_inline_media.py
More file actions
243 lines (214 loc) · 9.99 KB
/
edit_inline_media.py
File metadata and controls
243 lines (214 loc) · 9.99 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
# Hydrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2023 Dan <https://github.com/delivrance>
# Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
# This file is part of Hydrogram.
#
# Hydrogram 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.
#
# Hydrogram 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 Hydrogram. If not, see <http://www.gnu.org/licenses/>.
import asyncio
import io
import re
from pathlib import Path
import hydrogram
from hydrogram import raw, types, utils
from hydrogram.errors import MediaEmpty, RPCError
from hydrogram.file_id import FileType
from .inline_session import get_session
class EditInlineMedia:
MAX_RETRIES = 3
async def edit_inline_media(
self: "hydrogram.Client",
inline_message_id: str,
media: "types.InputMedia",
reply_markup: "types.InlineKeyboardMarkup" = None,
) -> bool:
"""Edit inline animation, audio, document, photo or video messages.
When the inline message is edited, a new file can't be uploaded. Use a previously uploaded file via its file_id
or specify a URL.
.. include:: /_includes/usable-by/bots.rst
Parameters:
inline_message_id (``str``):
Required if *chat_id* and *message_id* are not specified.
Identifier of the inline message.
media (:obj:`~hydrogram.types.InputMedia`):
One of the InputMedia objects describing an animation, audio, document, photo or video.
reply_markup (:obj:`~hydrogram.types.InlineKeyboardMarkup`, *optional*):
An InlineKeyboardMarkup object.
Returns:
``bool``: On success, True is returned.
Example:
.. code-block:: python
from hydrogram.types import InputMediaPhoto, InputMediaVideo, InputMediaAudio
# Bots only
# Replace the current media with a local photo
await app.edit_inline_media(inline_message_id, InputMediaPhoto("new_photo.jpg"))
# Replace the current media with a local video
await app.edit_inline_media(inline_message_id, InputMediaVideo("new_video.mp4"))
# Replace the current media with a local audio
await app.edit_inline_media(inline_message_id, InputMediaAudio("new_audio.mp3"))
"""
caption = media.caption
parse_mode = media.parse_mode
is_bytes_io = isinstance(media.media, io.BytesIO)
is_uploaded_file = is_bytes_io or Path(media.media).is_file()
is_external_url = not is_uploaded_file and re.match(r"^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=media.media.name if is_bytes_io else Path(str(media.media)).name
)
]
else:
filename_attribute = []
if isinstance(media, types.InputMediaPhoto):
if is_uploaded_file:
media = raw.types.InputMediaUploadedPhoto(
file=await self.save_file(media.media), 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)
elif isinstance(media, types.InputMediaVideo):
if is_uploaded_file:
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),
file=await self.save_file(media.media),
spoiler=media.has_spoiler,
attributes=[
raw.types.DocumentAttributeVideo(
supports_streaming=media.supports_streaming or None,
duration=media.duration,
w=media.width,
h=media.height,
),
*filename_attribute,
],
)
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.VIDEO)
elif isinstance(media, types.InputMediaAudio):
if is_uploaded_file:
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,
],
)
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):
if is_uploaded_file:
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),
file=await self.save_file(media.media),
spoiler=media.has_spoiler,
attributes=[
raw.types.DocumentAttributeVideo(
supports_streaming=True,
duration=media.duration,
w=media.width,
h=media.height,
),
raw.types.DocumentAttributeAnimated(),
*filename_attribute,
],
nosound_video=True,
)
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)
elif isinstance(media, types.InputMediaDocument):
if is_uploaded_file:
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=True,
)
elif is_external_url:
media = raw.types.InputMediaDocumentExternal(url=media.media)
else:
media = utils.get_input_media_from_file_id(media.media, FileType.DOCUMENT)
unpacked = utils.unpack_inline_message_id(inline_message_id)
dc_id = unpacked.dc_id
session = await get_session(self, dc_id)
if is_uploaded_file:
uploaded_media = await self.invoke(
raw.functions.messages.UploadMedia(peer=raw.types.InputPeerSelf(), media=media)
)
actual_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=getattr(media, "has_spoiler", None),
)
if isinstance(media, types.InputMediaPhoto)
else 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=getattr(media, "has_spoiler", None),
)
)
else:
actual_media = media
for i in range(self.MAX_RETRIES):
try:
return await session.invoke(
raw.functions.messages.EditInlineBotMessage(
id=unpacked,
media=actual_media,
reply_markup=await reply_markup.write(self) if reply_markup else None,
**await self.parser.parse(caption, parse_mode),
),
sleep_threshold=self.sleep_threshold,
)
except RPCError as e:
if i == self.MAX_RETRIES - 1:
raise
if isinstance(e, MediaEmpty):
# Must wait due to a server race condition
await asyncio.sleep(1)
return None