Skip to content

Commit

Permalink
Create PlayNext Command
Browse files Browse the repository at this point in the history
Add's command that add's a song/playlist next in queue.

Signed-off-by: zebz213 <[email protected]>
  • Loading branch information
zebz213 authored Mar 15, 2024
1 parent dc28ac2 commit da8fc8a
Showing 1 changed file with 168 additions and 0 deletions.
168 changes: 168 additions & 0 deletions src/commands/music/PlayNext.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
import { LoadType } from 'shoukaku';

import { Command, Context, Lavamusic } from '../../structures/index.js';

export default class PlayNext extends Command {
constructor(client: Lavamusic) {
super(client, {
name: 'playnext',
description: {
content: 'Add the song to play next in queue',
examples: [
'playnext https://www.youtube.com/watch?v=QH2-TGUlwu4',
'playnext https://open.spotify.com/track/6WrI0LAC5M1Rw2MnX2ZvEg',
],
usage: 'playnext <song>',
},
category: 'music',
aliases: ['pn'],
cooldown: 3,
args: true,
player: {
voice: true,
dj: false,
active: false,
djPerm: null,
},
permissions: {
dev: false,
client: ['SendMessages', 'ViewChannel', 'EmbedLinks', 'Connect', 'Speak'],
user: [],
},
slashCommand: true,
options: [
{
name: 'song',
description: 'The song you want to play',
type: 3,
required: true,
autocomplete: true,
},
],
});
}
public async run(client: Lavamusic, ctx: Context, args: string[]): Promise<any> {
const query = args.join(' ');
let player = client.queue.get(ctx.guild.id);
const vc = ctx.member as any;
if (!player) player = await client.queue.create(ctx.guild, vc.voice.channel, ctx.channel);

const res = await this.client.queue.search(query);
const embed = this.client.embed();
switch (res.loadType) {
case LoadType.ERROR:
ctx.sendMessage({
embeds: [
embed
.setColor(this.client.color.red)
.setDescription('There was an error while searching.'),
],
});
break;
case LoadType.EMPTY:
ctx.sendMessage({
embeds: [
embed
.setColor(this.client.color.red)
.setDescription('There were no results found.'),
],
});
break;
case LoadType.TRACK: {
const track = player.buildTrack(res.data, ctx.author);
if (player.queue.length > client.config.maxQueueSize)
return await ctx.sendMessage({
embeds: [
embed
.setColor(this.client.color.red)
.setDescription(
`The queue is too long. The maximum length is ${client.config.maxQueueSize} songs.`
),
],
});
player.queue.splice(0, 0, track);
await player.isPlaying();
ctx.sendMessage({
embeds: [
embed
.setColor(this.client.color.main)
.setDescription(
`Added [${res.data.info.title}](${res.data.info.uri}) to play next in the queue.`
),
],
});
break;
}
case LoadType.PLAYLIST: {
if (res.data.tracks.length > client.config.maxPlaylistSize)
return await ctx.sendMessage({
embeds: [
embed
.setColor(this.client.color.red)
.setDescription(
`The playlist is too long. The maximum length is ${client.config.maxPlaylistSize} songs.`
),
],
});
for (const track of res.data.tracks) {
const pl = player.buildTrack(track, ctx.author);
if (player.queue.length > client.config.maxQueueSize)
return await ctx.sendMessage({
embeds: [
embed
.setColor(this.client.color.red)
.setDescription(
`The queue is too long. The maximum length is ${client.config.maxQueueSize} songs.`
),
],
});
player.queue.splice(0, 0, pl);
}
await player.isPlaying();
ctx.sendMessage({
embeds: [
embed
.setColor(this.client.color.main)
.setDescription(`Added ${res.data.tracks.length} songs to play next in the queue.`),
],
});
break;
}
case LoadType.SEARCH: {
const track1 = player.buildTrack(res.data[0], ctx.author);
if (player.queue.length > client.config.maxQueueSize)
return await ctx.sendMessage({
embeds: [
embed
.setColor(this.client.color.red)
.setDescription(
`The queue is too long. The maximum length is ${client.config.maxQueueSize} songs.`
),
],
});
player.queue.splice(0, 0, track1);
await player.isPlaying();
ctx.sendMessage({
embeds: [
embed
.setColor(this.client.color.main)
.setDescription(
`Added [${res.data[0].info.title}](${res.data[0].info.uri}) to play next in the queue.`
),
],
});
break;
}
}
}
}

/**
* Project: lavamusic
* Author: Blacky
* Company: Coders
* Copyright (c) 2023. All rights reserved.
* This code is the property of Coder and may not be reproduced or
* modified without permission. For more information, contact us at
* https://discord.gg/ns8CTk9J3e
*/

0 comments on commit da8fc8a

Please sign in to comment.