2020-03-21 14:43:32 +00:00
|
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
|
|
|
# Copyright (C) 2017-2020 Dan <https://github.com/delivrance>
|
2018-06-05 15:08:05 +00:00
|
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
|
# This file is part of Pyrogram.
|
2018-06-05 15:08:05 +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-06-05 15:08:05 +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-06-05 15:08:05 +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-06-05 15:08:05 +00:00
|
|
|
|
|
2019-02-05 10:50:32 +00:00
|
|
|
|
import logging
|
2018-06-05 15:08:05 +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, List
|
2018-06-05 15:08:05 +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-06-05 15:08:05 +00:00
|
|
|
|
|
2019-09-08 17:24:06 +00:00
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
|
class SendMediaGroup(Scaffold):
|
2018-06-05 15:08:05 +00:00
|
|
|
|
# TODO: Add progress parameter
|
2020-08-21 05:28:27 +00:00
|
|
|
|
async def send_media_group(
|
2019-03-16 18:23:23 +00:00
|
|
|
|
self,
|
|
|
|
|
chat_id: Union[int, str],
|
2020-11-08 12:39:43 +00:00
|
|
|
|
media: List[Union[
|
|
|
|
|
"types.InputMediaPhoto",
|
|
|
|
|
"types.InputMediaVideo",
|
|
|
|
|
"types.InputMediaAudio",
|
|
|
|
|
"types.InputMediaDocument"
|
|
|
|
|
]],
|
2019-03-16 18:23:23 +00:00
|
|
|
|
disable_notification: bool = None,
|
|
|
|
|
reply_to_message_id: int = None
|
2020-08-22 06:05:05 +00:00
|
|
|
|
) -> List["types.Message"]:
|
2019-05-12 17:49:06 +00:00
|
|
|
|
"""Send a group of photos or videos as an album.
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
2019-05-09 02:28:46 +00:00
|
|
|
|
Parameters:
|
2018-06-05 15:08:05 +00:00
|
|
|
|
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).
|
|
|
|
|
|
2020-11-08 12:39:43 +00:00
|
|
|
|
media (List of :obj:`~pyrogram.types.InputMediaPhoto`, :obj:`~pyrogram.types.InputMediaVideo`, :obj:`~pyrogram.types.InputMediaAudio` and :obj:`~pyrogram.types.InputMediaDocument`):
|
2019-03-22 11:14:31 +00:00
|
|
|
|
A list describing photos and videos to be sent, must include 2–10 items.
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
|
|
|
|
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:
|
2020-08-22 06:05:05 +00:00
|
|
|
|
List of :obj:`~pyrogram.types.Message`: On success, a list of the sent messages is returned.
|
2019-02-05 10:50:32 +00:00
|
|
|
|
|
2019-07-25 09:22:14 +00:00
|
|
|
|
Example:
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
2020-10-18 16:00:17 +00:00
|
|
|
|
from pyrogram.types import InputMediaPhoto, InputMediaVideo
|
2019-07-25 09:22:14 +00:00
|
|
|
|
|
|
|
|
|
app.send_media_group(
|
|
|
|
|
"me",
|
|
|
|
|
[
|
|
|
|
|
InputMediaPhoto("photo1.jpg"),
|
|
|
|
|
InputMediaPhoto("photo2.jpg", caption="photo caption"),
|
|
|
|
|
InputMediaVideo("video.mp4", caption="a video")
|
|
|
|
|
]
|
|
|
|
|
)
|
2018-06-05 15:08:05 +00:00
|
|
|
|
"""
|
|
|
|
|
multi_media = []
|
|
|
|
|
|
|
|
|
|
for i in media:
|
2020-08-22 06:05:05 +00:00
|
|
|
|
if isinstance(i, types.InputMediaPhoto):
|
2020-07-09 00:22:56 +00:00
|
|
|
|
if os.path.isfile(i.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(i.media)
|
2018-06-05 15:08:05 +00:00
|
|
|
|
)
|
2020-05-07 10:53:45 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
|
media = raw.types.InputMediaPhoto(
|
|
|
|
|
id=raw.types.InputPhoto(
|
2018-06-05 15:08:05 +00:00
|
|
|
|
id=media.photo.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
|
access_hash=media.photo.access_hash,
|
2019-07-19 11:40:12 +00:00
|
|
|
|
file_reference=media.photo.file_reference
|
|
|
|
|
)
|
|
|
|
|
)
|
2020-07-09 00:22:56 +00:00
|
|
|
|
elif re.match("^https?://", i.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.InputMediaPhotoExternal(
|
2019-07-19 11:40:12 +00:00
|
|
|
|
url=i.media
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
|
media = raw.types.InputMediaPhoto(
|
|
|
|
|
id=raw.types.InputPhoto(
|
2019-07-19 11:40:12 +00:00
|
|
|
|
id=media.photo.id,
|
|
|
|
|
access_hash=media.photo.access_hash,
|
|
|
|
|
file_reference=media.photo.file_reference
|
2018-06-05 15:08:05 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
else:
|
2020-11-27 21:09:17 +00:00
|
|
|
|
media = utils.get_input_media_from_file_id(i.media, FileType.PHOTO)
|
2020-08-22 06:05:05 +00:00
|
|
|
|
elif isinstance(i, types.InputMediaVideo):
|
2020-07-09 00:22:56 +00:00
|
|
|
|
if os.path.isfile(i.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(
|
2020-08-21 05:28:27 +00:00
|
|
|
|
file=await self.save_file(i.media),
|
2020-08-22 06:05:05 +00:00
|
|
|
|
thumb=await self.save_file(i.thumb),
|
2020-05-07 10:53:45 +00:00
|
|
|
|
mime_type=self.guess_mime_type(i.media) or "video/mp4",
|
|
|
|
|
attributes=[
|
2020-08-22 06:05:05 +00:00
|
|
|
|
raw.types.DocumentAttributeVideo(
|
2020-05-07 10:53:45 +00:00
|
|
|
|
supports_streaming=i.supports_streaming or None,
|
|
|
|
|
duration=i.duration,
|
|
|
|
|
w=i.width,
|
|
|
|
|
h=i.height
|
|
|
|
|
),
|
2020-08-22 06:05:05 +00:00
|
|
|
|
raw.types.DocumentAttributeFilename(file_name=os.path.basename(i.media))
|
2020-05-07 10:53:45 +00:00
|
|
|
|
]
|
2018-06-05 15:08:05 +00:00
|
|
|
|
)
|
2020-05-07 10:53:45 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
|
media = raw.types.InputMediaDocument(
|
|
|
|
|
id=raw.types.InputDocument(
|
2018-06-05 15:08:05 +00:00
|
|
|
|
id=media.document.id,
|
2018-12-22 23:55:00 +00:00
|
|
|
|
access_hash=media.document.access_hash,
|
2020-10-31 15:47:55 +00:00
|
|
|
|
file_reference=media.document.file_reference
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
elif re.match("^https?://", i.media):
|
|
|
|
|
media = await self.send(
|
|
|
|
|
raw.functions.messages.UploadMedia(
|
|
|
|
|
peer=await self.resolve_peer(chat_id),
|
|
|
|
|
media=raw.types.InputMediaDocumentExternal(
|
|
|
|
|
url=i.media
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
media = raw.types.InputMediaDocument(
|
|
|
|
|
id=raw.types.InputDocument(
|
|
|
|
|
id=media.document.id,
|
|
|
|
|
access_hash=media.document.access_hash,
|
|
|
|
|
file_reference=media.document.file_reference
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
else:
|
2020-11-27 21:09:17 +00:00
|
|
|
|
media = utils.get_input_media_from_file_id(i.media, FileType.VIDEO)
|
2020-10-31 15:47:55 +00:00
|
|
|
|
elif isinstance(i, types.InputMediaAudio):
|
|
|
|
|
if os.path.isfile(i.media):
|
|
|
|
|
media = await self.send(
|
|
|
|
|
raw.functions.messages.UploadMedia(
|
|
|
|
|
peer=await self.resolve_peer(chat_id),
|
|
|
|
|
media=raw.types.InputMediaUploadedDocument(
|
|
|
|
|
mime_type=self.guess_mime_type(i.media) or "audio/mpeg",
|
|
|
|
|
file=await self.save_file(i.media),
|
|
|
|
|
thumb=await self.save_file(i.thumb),
|
|
|
|
|
attributes=[
|
|
|
|
|
raw.types.DocumentAttributeAudio(
|
|
|
|
|
duration=i.duration,
|
|
|
|
|
performer=i.performer,
|
|
|
|
|
title=i.title
|
|
|
|
|
),
|
|
|
|
|
raw.types.DocumentAttributeFilename(file_name=os.path.basename(i.media))
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
media = raw.types.InputMediaDocument(
|
|
|
|
|
id=raw.types.InputDocument(
|
|
|
|
|
id=media.document.id,
|
|
|
|
|
access_hash=media.document.access_hash,
|
2019-07-19 11:40:12 +00:00
|
|
|
|
file_reference=media.document.file_reference
|
|
|
|
|
)
|
|
|
|
|
)
|
2020-07-09 00:22:56 +00:00
|
|
|
|
elif re.match("^https?://", i.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.InputMediaDocumentExternal(
|
2019-07-19 11:40:12 +00:00
|
|
|
|
url=i.media
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
|
media = raw.types.InputMediaDocument(
|
|
|
|
|
id=raw.types.InputDocument(
|
2019-07-19 11:40:12 +00:00
|
|
|
|
id=media.document.id,
|
|
|
|
|
access_hash=media.document.access_hash,
|
|
|
|
|
file_reference=media.document.file_reference
|
2018-06-05 15:08:05 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
else:
|
2020-11-27 21:09:17 +00:00
|
|
|
|
media = utils.get_input_media_from_file_id(i.media, FileType.AUDIO)
|
2020-11-08 12:39:43 +00:00
|
|
|
|
elif isinstance(i, types.InputMediaDocument):
|
|
|
|
|
if os.path.isfile(i.media):
|
|
|
|
|
media = await self.send(
|
|
|
|
|
raw.functions.messages.UploadMedia(
|
|
|
|
|
peer=await self.resolve_peer(chat_id),
|
|
|
|
|
media=raw.types.InputMediaUploadedDocument(
|
|
|
|
|
mime_type=self.guess_mime_type(i.media) or "application/zip",
|
|
|
|
|
file=await self.save_file(i.media),
|
|
|
|
|
thumb=await self.save_file(i.thumb),
|
|
|
|
|
attributes=[
|
|
|
|
|
raw.types.DocumentAttributeFilename(file_name=os.path.basename(i.media))
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
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 re.match("^https?://", i.media):
|
|
|
|
|
media = await self.send(
|
|
|
|
|
raw.functions.messages.UploadMedia(
|
|
|
|
|
peer=await self.resolve_peer(chat_id),
|
|
|
|
|
media=raw.types.InputMediaDocumentExternal(
|
|
|
|
|
url=i.media
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
media = raw.types.InputMediaDocument(
|
|
|
|
|
id=raw.types.InputDocument(
|
|
|
|
|
id=media.document.id,
|
|
|
|
|
access_hash=media.document.access_hash,
|
|
|
|
|
file_reference=media.document.file_reference
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
else:
|
2020-11-27 21:09:17 +00:00
|
|
|
|
media = utils.get_input_media_from_file_id(i.media, FileType.DOCUMENT)
|
2018-06-05 15:08:05 +00:00
|
|
|
|
|
|
|
|
|
multi_media.append(
|
2020-08-22 06:05:05 +00:00
|
|
|
|
raw.types.InputSingleMedia(
|
2018-06-05 15:08:05 +00:00
|
|
|
|
media=media,
|
|
|
|
|
random_id=self.rnd_id(),
|
2020-08-21 05:28:27 +00:00
|
|
|
|
**await self.parser.parse(i.caption, i.parse_mode)
|
2018-06-05 15:08:05 +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.SendMultiMedia(
|
2020-08-21 05:28:27 +00:00
|
|
|
|
peer=await self.resolve_peer(chat_id),
|
2020-05-07 10:53:45 +00:00
|
|
|
|
multi_media=multi_media,
|
|
|
|
|
silent=disable_notification or None,
|
|
|
|
|
reply_to_msg_id=reply_to_message_id
|
2020-08-26 07:01:01 +00:00
|
|
|
|
),
|
|
|
|
|
sleep_threshold=60
|
2020-05-07 10:53:45 +00:00
|
|
|
|
)
|
2019-02-05 10:50:32 +00:00
|
|
|
|
|
2020-08-21 05:28:27 +00:00
|
|
|
|
return await utils.parse_messages(
|
2019-02-05 10:50:32 +00:00
|
|
|
|
self,
|
2020-08-22 06:05:05 +00:00
|
|
|
|
raw.types.messages.Messages(
|
2019-02-05 10:50:32 +00:00
|
|
|
|
messages=[m.message for m in filter(
|
2020-08-22 06:05:05 +00:00
|
|
|
|
lambda u: isinstance(u, (raw.types.UpdateNewMessage, raw.types.UpdateNewChannelMessage)),
|
2019-02-05 10:50:32 +00:00
|
|
|
|
r.updates
|
|
|
|
|
)],
|
|
|
|
|
users=r.users,
|
|
|
|
|
chats=r.chats
|
2018-06-05 15:08:05 +00:00
|
|
|
|
)
|
|
|
|
|
)
|