68 lines
2.1 KiB
Python
68 lines
2.1 KiB
Python
import discord
|
|
import datetime
|
|
from discord import app_commands
|
|
from discord.ext import commands
|
|
from cogs.music import Music
|
|
import math
|
|
import lavalink
|
|
|
|
from utils.config import create_embed
|
|
|
|
|
|
class Queue(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@app_commands.command()
|
|
@app_commands.check(Music.create_player)
|
|
@app_commands.describe(
|
|
page="Queue page number - leave blank if you are unsure"
|
|
)
|
|
async def queue(self, interaction: discord.Interaction, page: int = 1):
|
|
"See the current queue of songs"
|
|
player = self.bot.lavalink.player_manager.get(interaction.guild.id)
|
|
|
|
if not player.queue:
|
|
embed = create_embed(
|
|
title="Nothing Queued",
|
|
description=(
|
|
"Nothing is currently in the queue, add a song with the"
|
|
" </play:1224840890368000172> command."
|
|
),
|
|
)
|
|
return await interaction.response.send_message(
|
|
embed=embed, ephemeral=True
|
|
)
|
|
|
|
items_per_page = 10
|
|
pages = math.ceil(len(player.queue) / items_per_page)
|
|
|
|
start = (page - 1) * items_per_page
|
|
end = start + items_per_page
|
|
|
|
queue_list = ""
|
|
for index, track in enumerate(player.queue[start:end], start=start):
|
|
# Change ms duration to hour, min, sec in the format of 00:00:00
|
|
track_duration = lavalink.utils.format_time(track.duration)
|
|
# If the track is less than an hour, remove the hour from the duration
|
|
if track_duration.split(":")[0] == "00":
|
|
track_duration = track_duration[3:]
|
|
|
|
queue_list += (
|
|
f"`{index+1}. ` [{track.title}]({track.uri}) -"
|
|
f" {track.author} `({track_duration})`\n"
|
|
)
|
|
|
|
embed = create_embed(
|
|
title=f"Current Song Queue",
|
|
description=(
|
|
f"**{len(player.queue)} total tracks**\n\n{queue_list}"
|
|
),
|
|
footer=f"Page {page}/{pages}",
|
|
)
|
|
await interaction.response.send_message(embed=embed)
|
|
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(Queue(bot))
|