Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 8,108 Bytes
e67568c 60d2967 e67568c 60d2967 e67568c adfd0c7 e67568c 60d2967 1bc04be e67568c 6015e8f 60d2967 e67568c 60d2967 e67568c 264b095 6015e8f e67568c 96f3285 e67568c 1bc04be e67568c 6015e8f e67568c c0a28a9 e67568c c0a28a9 e67568c c0a28a9 e67568c c0a28a9 e67568c 60d2967 e67568c 60d2967 6015e8f 60d2967 6015e8f 036628e 77815e1 036628e 77815e1 036628e 60d2967 6015e8f e67568c 96f3285 e67568c 264b095 c0a28a9 264b095 c0a28a9 264b095 c0a28a9 264b095 c0a28a9 264b095 60d2967 e67568c 6015e8f c0a28a9 60d2967 e67568c 60d2967 6015e8f e67568c 6015e8f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
import asyncio
import logging
import os
import threading
from dataclasses import dataclass
from enum import Enum
from typing import Optional, Callable
import discord
from discord import app_commands
from discord.ext import commands
from dotenv import load_dotenv
import gradio as gr
from huggingface_hub import hf_hub_download
# Configure logging
logging.basicConfig(
level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s"
)
logger = logging.getLogger(__name__)
class LoopMode(str, Enum):
NONE = "none"
@dataclass
class BotConfig:
ASSETS_DIR: str = "assets"
SONG_FILE: str = "lofi.mp3"
HF_REPO: str = "not-lain/assets"
@property
def song_path(self) -> str:
return f"{self.ASSETS_DIR}/{self.SONG_FILE}"
@dataclass
class QueueItem:
url: str
title: Optional[str] = None
file_path: Optional[str] = None
class VoiceStateError(Exception):
"""Custom exception for voice state errors"""
pass
class MusicBot:
def __init__(self, config: BotConfig):
self.config = config
self.is_playing: bool = False
self.voice_client: Optional[discord.VoiceClient] = None
self.last_context: Optional[commands.Context] = None
self.loop_mode: LoopMode = LoopMode.NONE
self.current_song: Optional[QueueItem] = None
async def ensure_voice_state(self, ctx: commands.Context) -> None:
"""Validate voice state and raise appropriate errors"""
if not ctx.author.voice:
raise VoiceStateError("You need to be in a voice channel!")
if self.voice_client and ctx.author.voice.channel != self.voice_client.channel:
raise VoiceStateError("You must be in the same voice channel as the bot!")
async def play_next(self, ctx: commands.Context) -> None:
if self.is_playing:
return
try:
if not self.current_song:
self.current_song = QueueItem(
url=self.config.song_path,
title="Lofi Music",
file_path=self.config.song_path,
)
self.is_playing = True
audio_source = discord.FFmpegPCMAudio(self.current_song.file_path)
def after_playing(error):
if error:
logger.error(f"Error in playback: {error}")
self.is_playing = False
asyncio.run_coroutine_threadsafe(self.handle_song_end(ctx), bot.loop)
self.voice_client.play(audio_source, after=after_playing)
except Exception as e:
logger.error(f"Error playing file: {e}")
self.is_playing = False
raise
async def handle_song_end(self, ctx: commands.Context) -> None:
if self.loop_mode == LoopMode.NONE:
self.current_song = None
if not self.is_playing:
await self.play_next(ctx)
async def join_voice(self, ctx: commands.Context) -> None:
if not ctx.author.voice:
await ctx.send("You need to be in a voice channel!")
return
channel = ctx.author.voice.channel
if self.voice_client is None:
self.voice_client = await channel.connect()
self.last_context = ctx
else:
await self.voice_client.move_to(channel)
async def stop_playing(self, ctx: commands.Context) -> bool:
try:
if self.voice_client:
if self.voice_client.is_playing():
self.voice_client.stop()
if self.voice_client.is_connected():
await self.voice_client.disconnect(force=False)
self._reset_state()
return True
return False
except Exception as e:
logger.error(f"Error during cleanup: {e}")
self._reset_state()
return False
def _reset_state(self) -> None:
self.is_playing = False
self.voice_client = None
self.last_context = None
self.loop_mode = LoopMode.NONE
self.current_song = None
async def handle_voice_command(
interaction: discord.Interaction, action: Callable, defer: bool = True
) -> None:
"""Generic handler for voice-related commands"""
try:
if defer:
await interaction.response.defer()
ctx = await bot.get_context(interaction)
await music_bot.ensure_voice_state(ctx)
await action(ctx, interaction)
except VoiceStateError as e:
if not interaction.response.is_done():
await interaction.response.send_message(str(e))
else:
await interaction.followup.send(str(e))
except Exception as e:
logger.error(f"Command error: {e}")
if not interaction.response.is_done():
await interaction.response.send_message("An error occurred!")
else:
await interaction.followup.send("An error occurred!")
# Initialize bot and music bot instance
config = BotConfig()
intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix="!", intents=intents)
music_bot = MusicBot(config)
@bot.event
async def on_ready():
print(f"Bot is ready! Logged in as {bot.user}")
print("Syncing commands...")
try:
await bot.tree.sync(guild=None) # Set to None for global sync
print("Successfully synced commands globally!")
except discord.app_commands.errors.CommandSyncFailure as e:
print(f"Failed to sync commands: {e}")
except Exception as e:
print(f"An error occurred while syncing commands: {e}")
@bot.tree.command(name="lofi", description="Play lofi music")
async def lofi(interaction: discord.Interaction):
async def play_lofi(ctx, interaction: discord.Interaction):
await music_bot.join_voice(ctx)
if not music_bot.is_playing:
await music_bot.play_next(ctx)
await interaction.followup.send("Playing lofi music! 🎵")
else:
await interaction.followup.send("Already playing!")
await handle_voice_command(interaction, play_lofi)
@bot.tree.command(name="stop", description="Stop the lofi music")
async def stop(interaction: discord.Interaction):
if not interaction.user.voice:
await interaction.response.send_message(
"You must be in a voice channel to use this command!"
)
return
if not music_bot.voice_client:
await interaction.response.send_message("No music is currently playing!")
return
if interaction.user.voice.channel != music_bot.voice_client.channel:
await interaction.response.send_message(
"You must be in the same voice channel as the bot!"
)
return
await interaction.response.defer()
ctx = await bot.get_context(interaction)
try:
success = await music_bot.stop_playing(ctx)
if success:
await interaction.followup.send("Music stopped and bot disconnected! 👋")
else:
await interaction.followup.send(
"Failed to stop properly. Please try again."
)
except Exception as e:
print(f"Error during stop command: {e}")
await interaction.followup.send("An error occurred while trying to stop.")
def initialize_assets() -> None:
if not os.path.exists(config.ASSETS_DIR):
os.makedirs(config.ASSETS_DIR, exist_ok=True)
hf_hub_download(
config.HF_REPO,
config.SONG_FILE,
repo_type="dataset",
local_dir=config.ASSETS_DIR,
)
def run_discord_bot() -> None:
"""Run the Discord bot with the token from environment variables."""
load_dotenv()
bot.run(os.getenv("DISCORD_TOKEN"))
if __name__ == "__main__":
initialize_assets()
bot_thread = threading.Thread(target=run_discord_bot, daemon=True)
bot_thread.start()
with gr.Blocks() as iface:
gr.Markdown("# Discord Music Bot Control Panel")
gr.Markdown("Bot is running in background")
iface.launch(debug=True)
|