import asyncio import traceback from typing import List, Union from Config.Exceptions import DownloadingError, InvalidInput, VulkanError from discord.ext.commands import Context from Handlers.AbstractHandler import AbstractHandler from Config.Exceptions import ImpossibleMove, UnknownError from Handlers.HandlerResponse import HandlerResponse from Music.Downloader import Downloader from Music.Searcher import Searcher from Music.Song import Song from Parallelism.AbstractProcessManager import AbstractPlayersManager from Parallelism.Commands import VCommands, VCommandsType from Music.VulkanBot import VulkanBot from discord import Interaction class PlayHandler(AbstractHandler): def __init__(self, ctx: Union[Context, Interaction], bot: VulkanBot) -> None: super().__init__(ctx, bot) self.__searcher = Searcher() self.__down = Downloader() async def run(self, track: str) -> HandlerResponse: requester = self.ctx.author.name if not self.__isUserConnected(): error = ImpossibleMove() embed = self.embeds.NO_CHANNEL() return HandlerResponse(self.ctx, embed, error) try: # Search for musics and get the name of each song musicsInfo = await self.__searcher.search(track) if musicsInfo is None or len(musicsInfo) == 0: raise InvalidInput(self.messages.INVALID_INPUT, self.messages.ERROR_TITLE) # If there is no executing player for the guild then we create the player playersManager: AbstractPlayersManager = self.config.getPlayersManager() if not playersManager.verifyIfPlayerExists(self.guild): playersManager.createPlayerForGuild(self.guild, self.ctx) playlist = playersManager.getPlayerPlaylist(self.guild) # Create the Songs objects songs: List[Song] = [] for musicInfo in musicsInfo: songs.append(Song(musicInfo, playlist, requester)) if len(songs) == 1: # If only one music, download it directly song = self.__down.finish_one_song(songs[0]) if song.problematic: # If error in download song return embed = self.embeds.SONG_PROBLEMATIC() error = DownloadingError() return HandlerResponse(self.ctx, embed, error) # If not playing if not playlist.getCurrentSong(): embed = self.embeds.SONG_ADDED(song.title) response = HandlerResponse(self.ctx, embed) else: # If already playing pos = len(playlist.getSongs()) embed = self.embeds.SONG_ADDED_TWO(song.info, pos) response = HandlerResponse(self.ctx, embed) # Add the unique song to the playlist and send a command to player playerLock = playersManager.getPlayerLock(self.guild) acquired = playerLock.acquire(timeout=self.config.ACQUIRE_LOCK_TIMEOUT) if acquired: playlist.add_song(song) # Release the acquired Lock playerLock.release() playCommand = VCommands(VCommandsType.PLAY, None) await playersManager.sendCommandToPlayer(playCommand, self.guild) else: playersManager.resetPlayer(self.guild, self.ctx) embed = self.embeds.PLAYER_RESTARTED() return HandlerResponse(self.ctx, embed) return response else: # If multiple songs added # If more than 10 songs, download and load the first 5 to start the play right away if len(songs) > 10: fiveFirstSongs = songs[0:5] songs = songs[5:] await self.__downloadSongsAndStore(fiveFirstSongs, playersManager) # Trigger a task to download all songs and then store them in the playlist asyncio.create_task(self.__downloadSongsAndStore(songs, playersManager)) embed = self.embeds.SONGS_ADDED(len(songs)) return HandlerResponse(self.ctx, embed) except DownloadingError as error: embed = self.embeds.DOWNLOADING_ERROR() return HandlerResponse(self.ctx, embed, error) except Exception as error: print(f'ERROR IN PLAYHANDLER -> {traceback.format_exc()}', {type(error)}) if isinstance(error, VulkanError): embed = self.embeds.CUSTOM_ERROR(error) else: error = UnknownError() embed = self.embeds.UNKNOWN_ERROR() return HandlerResponse(self.ctx, embed, error) async def __downloadSongsAndStore(self, songs: List[Song], playersManager: AbstractPlayersManager) -> None: playlist = playersManager.getPlayerPlaylist(self.guild) playCommand = VCommands(VCommandsType.PLAY, None) tooManySongs = len(songs) > 100 # Trigger a task for each song to be downloaded tasks: List[asyncio.Task] = [] for index, song in enumerate(songs): # If there is a lot of songs being downloaded, force a sleep to try resolve the Http Error 429 "To Many Requests" # Trying to fix the issue https://github.com/RafaelSolVargas/Vulkan/issues/32 if tooManySongs and index % 3 == 0: await asyncio.sleep(0.5) task = asyncio.create_task(self.__down.download_song(song)) tasks.append(task) for index, task in enumerate(tasks): await task song = songs[index] if not song.problematic: # If downloaded add to the playlist and send play command playerLock = playersManager.getPlayerLock(self.guild) acquired = playerLock.acquire(timeout=self.config.ACQUIRE_LOCK_TIMEOUT) if acquired: playlist.add_song(song) await playersManager.sendCommandToPlayer(playCommand, self.guild) playerLock.release() else: playersManager.resetPlayer(self.guild, self.ctx) def __isUserConnected(self) -> bool: if self.ctx.author.voice: return True else: return False