2018-06-05 15:08:05 +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-06-05 15:08:05 +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/>.
|
|
|
|
|
|
|
|
|
|
import binascii
|
2019-02-05 10:50:32 +00:00
|
|
|
|
import logging
|
2018-06-05 15:08:05 +00:00
|
|
|
|
import os
|
|
|
|
|
import struct
|
2019-02-05 10:50:32 +00:00
|
|
|
|
import time
|
2018-12-19 13:50:23 +00:00
|
|
|
|
from typing import Union, List
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
2018-12-19 13:50:23 +00:00
|
|
|
|
import pyrogram
|
2018-06-05 15:08:05 +00:00
|
|
|
|
from pyrogram.api import functions, types
|
2019-02-05 10:50:32 +00:00
|
|
|
|
from pyrogram.api.errors import FileIdInvalid, FloodWait
|
2018-06-23 08:34:20 +00:00
|
|
|
|
from pyrogram.client.ext import BaseClient, utils
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
2019-02-05 10:50:32 +00:00
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
|
|
|
|
class SendMediaGroup(BaseClient):
|
|
|
|
|
# TODO: Add progress parameter
|
|
|
|
|
# TODO: Figure out how to send albums using URLs
|
2019-03-16 18:23:23 +00:00
|
|
|
|
def send_media_group(
|
|
|
|
|
self,
|
|
|
|
|
chat_id: Union[int, str],
|
|
|
|
|
media: List[Union["pyrogram.InputMediaPhoto", "pyrogram.InputMediaVideo"]],
|
|
|
|
|
disable_notification: bool = None,
|
|
|
|
|
reply_to_message_id: int = None
|
|
|
|
|
):
|
2018-06-05 15:08:05 +00:00
|
|
|
|
"""Use this method to send a group of photos or videos as an album.
|
|
|
|
|
|
|
|
|
|
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).
|
|
|
|
|
|
|
|
|
|
media (``list``):
|
|
|
|
|
A list containing either :obj:`InputMediaPhoto <pyrogram.InputMediaPhoto>` or
|
|
|
|
|
:obj:`InputMediaVideo <pyrogram.InputMediaVideo>` objects
|
|
|
|
|
describing photos and videos to be sent, must include 2–10 items.
|
|
|
|
|
|
|
|
|
|
disable_notification (``bool``, *optional*):
|
|
|
|
|
Sends the message silently.
|
|
|
|
|
Users will receive a notification with no sound.
|
|
|
|
|
|
|
|
|
|
reply_to_message_id (``int``, *optional*):
|
|
|
|
|
If the message is a reply, ID of the original message.
|
2019-02-05 10:50:32 +00:00
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
On success, a :obj:`Messages <pyrogram.Messages>` object is returned containing all the
|
|
|
|
|
single messages sent.
|
|
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
|
:class:`Error <pyrogram.Error>` in case of a Telegram RPC error.
|
2018-06-05 15:08:05 +00:00
|
|
|
|
"""
|
|
|
|
|
multi_media = []
|
|
|
|
|
|
|
|
|
|
for i in media:
|
|
|
|
|
style = self.html if i.parse_mode.lower() == "html" else self.markdown
|
|
|
|
|
|
2018-12-19 13:50:23 +00:00
|
|
|
|
if isinstance(i, pyrogram.InputMediaPhoto):
|
2018-06-05 15:08:05 +00:00
|
|
|
|
if os.path.exists(i.media):
|
2019-02-05 10:50:32 +00:00
|
|
|
|
while True:
|
|
|
|
|
try:
|
|
|
|
|
media = self.send(
|
|
|
|
|
functions.messages.UploadMedia(
|
|
|
|
|
peer=self.resolve_peer(chat_id),
|
|
|
|
|
media=types.InputMediaUploadedPhoto(
|
|
|
|
|
file=self.save_file(i.media)
|
|
|
|
|
)
|
|
|
|
|
)
|
2018-06-05 15:08:05 +00:00
|
|
|
|
)
|
2019-02-05 10:50:32 +00:00
|
|
|
|
except FloodWait as e:
|
|
|
|
|
log.warning("Sleeping for {}s".format(e.x))
|
|
|
|
|
time.sleep(e.x)
|
|
|
|
|
else:
|
|
|
|
|
break
|
2018-06-05 15:08:05 +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-06-05 15:08:05 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
try:
|
|
|
|
|
decoded = utils.decode(i.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-06-05 15:08:05 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
2018-12-19 13:50:23 +00:00
|
|
|
|
elif isinstance(i, pyrogram.InputMediaVideo):
|
2018-06-05 15:08:05 +00:00
|
|
|
|
if os.path.exists(i.media):
|
2019-02-05 10:50:32 +00:00
|
|
|
|
while True:
|
|
|
|
|
try:
|
|
|
|
|
media = self.send(
|
|
|
|
|
functions.messages.UploadMedia(
|
|
|
|
|
peer=self.resolve_peer(chat_id),
|
|
|
|
|
media=types.InputMediaUploadedDocument(
|
|
|
|
|
file=self.save_file(i.media),
|
|
|
|
|
thumb=None if i.thumb is None else self.save_file(i.thumb),
|
2019-02-12 19:29:05 +00:00
|
|
|
|
mime_type="video/mp4",
|
2019-02-05 10:50:32 +00:00
|
|
|
|
attributes=[
|
|
|
|
|
types.DocumentAttributeVideo(
|
|
|
|
|
supports_streaming=i.supports_streaming or None,
|
|
|
|
|
duration=i.duration,
|
|
|
|
|
w=i.width,
|
|
|
|
|
h=i.height
|
|
|
|
|
),
|
2019-03-16 15:50:40 +00:00
|
|
|
|
types.DocumentAttributeFilename(file_name=os.path.basename(i.media))
|
2019-02-05 10:50:32 +00:00
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
)
|
2018-06-05 15:08:05 +00:00
|
|
|
|
)
|
2019-02-05 10:50:32 +00:00
|
|
|
|
except FloodWait as e:
|
|
|
|
|
log.warning("Sleeping for {}s".format(e.x))
|
|
|
|
|
time.sleep(e.x)
|
|
|
|
|
else:
|
|
|
|
|
break
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
|
|
|
|
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-06-05 15:08:05 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
try:
|
|
|
|
|
decoded = utils.decode(i.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)
|
|
|
|
|
|
|
|
|
|
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-06-05 15:08:05 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
multi_media.append(
|
|
|
|
|
types.InputSingleMedia(
|
|
|
|
|
media=media,
|
|
|
|
|
random_id=self.rnd_id(),
|
|
|
|
|
**style.parse(i.caption)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
2019-02-05 10:50:32 +00:00
|
|
|
|
while True:
|
|
|
|
|
try:
|
|
|
|
|
r = self.send(
|
|
|
|
|
functions.messages.SendMultiMedia(
|
|
|
|
|
peer=self.resolve_peer(chat_id),
|
|
|
|
|
multi_media=multi_media,
|
|
|
|
|
silent=disable_notification or None,
|
|
|
|
|
reply_to_msg_id=reply_to_message_id
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
except FloodWait as e:
|
|
|
|
|
log.warning("Sleeping for {}s".format(e.x))
|
|
|
|
|
time.sleep(e.x)
|
|
|
|
|
else:
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
return pyrogram.Messages._parse(
|
|
|
|
|
self,
|
|
|
|
|
types.messages.Messages(
|
|
|
|
|
messages=[m.message for m in filter(
|
|
|
|
|
lambda u: isinstance(u, (types.UpdateNewMessage, types.UpdateNewChannelMessage)),
|
|
|
|
|
r.updates
|
|
|
|
|
)],
|
|
|
|
|
users=r.users,
|
|
|
|
|
chats=r.chats
|
2018-06-05 15:08:05 +00:00
|
|
|
|
)
|
|
|
|
|
)
|