36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
from aiogram import Router, Bot, F
|
|
from aiogram.types import (
|
|
FSInputFile, URLInputFile, InputMediaAudio,
|
|
ChosenInlineResult,
|
|
)
|
|
|
|
from bot.modules.spotify import spotify
|
|
from rich import print
|
|
from bot.utils.config import config
|
|
from bot.modules.database import db
|
|
|
|
router = Router()
|
|
|
|
|
|
@router.chosen_inline_result(F.result_id.startswith('spot::'))
|
|
async def on_new_chosen(chosen_result: ChosenInlineResult, bot: Bot):
|
|
print('TEST: DOWNLOADING NEW')
|
|
song = spotify.songs.from_id(chosen_result.result_id.removeprefix('spot::'))
|
|
|
|
audio = await bot.send_audio(
|
|
chat_id=config.telegram.files_chat,
|
|
audio=FSInputFile('tests/test.mp3'),
|
|
thumbnail=URLInputFile(song.thumbnail),
|
|
performer=song.all_artists,
|
|
title=song.name,
|
|
)
|
|
|
|
db.spotify[song.id] = audio.audio.file_id
|
|
await db.occasionally_write()
|
|
|
|
await bot.edit_message_media(
|
|
inline_message_id=chosen_result.inline_message_id,
|
|
media=InputMediaAudio(media=audio.audio.file_id),
|
|
reply_markup=None
|
|
)
|