Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyrogram/types/inline_mode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
from .inline_query_result_animation import InlineQueryResultAnimation
from .inline_query_result_article import InlineQueryResultArticle
from .inline_query_result_photo import InlineQueryResultPhoto
from .inline_query_result_audio import InlineQueryResultAudio

__all__ = [
"InlineQuery", "InlineQueryResult", "InlineQueryResultArticle", "InlineQueryResultPhoto",
"InlineQueryResultAnimation", "ChosenInlineResult"
"InlineQueryResultAudio", "InlineQueryResultAnimation", "ChosenInlineResult"
]
141 changes: 141 additions & 0 deletions pyrogram/types/inline_mode/inline_query_result_audio.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2021 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 typing import Optional, List

from pyrogram import raw
from pyrogram import types
from pyrogram.parser import Parser
import pyrogram
from pyrogram import raw, types, utils
from .inline_query_result import InlineQueryResult


class InlineQueryResultAudio(InlineQueryResult):
"""Link to an audio.
By default, this audio will be sent by the user with optional caption.
Alternatively, you can use *input_message_content* to send a message
with the specified content instead of the audio.
Parameters:
audio_url (``str``):
A valid URL for the embedded audio player or audio file.

thumb_url (``str``):
URL of the thumbnail (jpeg only) for the audio.

id (``str``, *optional*):
Unique identifier for this result, 1-64 bytes.
Defaults to a randomly generated UUID4.

title (``str``):
Title for the result.

mime_type (``str``):
Mime type of the content of audio url, “text/html” or “audio/mp3”.

description (``str``, *optional*):
Short description of the result.

caption (``str``, *optional*):
Caption of the audio to be sent, 0-1024 characters.

parse_mode (``str``, *optional*):
By default, texts are parsed using both Markdown and HTML styles.
You can combine both syntaxes together.
Pass "markdown" or "md" to enable Markdown-style parsing only.
Pass "html" to enable HTML-style parsing only.
Pass None to completely disable style parsing.

caption_entities (List of :obj:`~pyrogram.types.MessageEntity`):
List of special entities that appear in the caption, which can be specified instead of *parse_mode*.

reply_markup (:obj:`~pyrogram.types.InlineKeyboardMarkup`, *optional*):
An InlineKeyboardMarkup object.

input_message_content (:obj:`~pyrogram.types.InputMessageContent`):
Content of the message to be sent instead of the audio. This field is required if InlineQueryResultAudio is
used to send an HTML-page as a result.
"""

def __init__(
self,
audio_url: str,
thumb_url: str,
id: str = None,
title: str,
mime_type: str,
description: str = None,
caption: str = "",
parse_mode: Optional[str] = object,
caption_entities: List["types.MessageEntity"] = None,
reply_markup: "types.InlineKeyboardMarkup" = None,
input_message_content: "types.InputMessageContent" = None
):
super().__init__("audio", id, input_message_content, reply_markup)

self.audio_url = audio_url

self.thumb_url = thumb_url
self.title = title
self.mime_type = mime_type
self.description = description
self.caption = caption
self.caption_entities = caption_entities
self.parse_mode = parse_mode
self.reply_markup = reply_markup

if mime_type == "text/html" and input_message_content is None:
raise ValueError("input_message_content is required for audio with `text/html` mime type")

self.input_message_content = input_message_content

async def write(self, client: "pyrogram.Client"):
audio = raw.types.InputWebDocument(
url=self.audio_url,
size=0,
mime_type=self.mime_type,
attributes=[]
)

thumb = raw.types.InputWebDocument(
url=self.thumb_url,
size=0,
mime_type="image/jpeg",
attributes=[]
)

message, entities = (await utils.parse_text_entities(
client, self.caption, self.parse_mode, self.caption_entities
)).values()

return raw.types.InputBotInlineResult(
id=self.id,
type=self.type,
title=self.title,
description=self.description,
thumb=thumb,
content=audio,
send_message=(
await self.input_message_content.write(client, self.reply_markup)
if self.input_message_content
else raw.types.InputBotInlineMessageMediaAuto(
reply_markup=await self.reply_markup.write(client) if self.reply_markup else None,
message=message,
entities=entities)
)
)