2021-12-10 21:39:54 +05:00
|
|
|
const Command = require("../../base/Command.js"),
|
|
|
|
Discord = require("discord.js");
|
|
|
|
|
|
|
|
class Np extends Command {
|
|
|
|
constructor (client) {
|
|
|
|
super(client, {
|
|
|
|
name: "np",
|
|
|
|
dirname: __dirname,
|
|
|
|
enabled: true,
|
|
|
|
guildOnly: true,
|
|
|
|
aliases: [ "nowplaying", "now-playing" ],
|
|
|
|
memberPermissions: [],
|
|
|
|
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS" ],
|
|
|
|
nsfw: false,
|
|
|
|
ownerOnly: false,
|
2021-12-22 17:32:50 +05:00
|
|
|
cooldown: 3000
|
2021-12-10 21:39:54 +05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async run (message, args, data) {
|
2021-12-26 00:04:26 +05:00
|
|
|
const voice = message.member.voice.channel;
|
2021-12-10 21:39:54 +05:00
|
|
|
const queue = this.client.player.getQueue(message);
|
|
|
|
|
2021-12-11 01:11:50 +05:00
|
|
|
if (!voice) return message.error("music/play:NO_VOICE_CHANNEL");
|
|
|
|
if (!queue) return message.error("music/play:NOT_PLAYING");
|
2021-12-10 21:39:54 +05:00
|
|
|
|
|
|
|
// Gets the current song
|
2021-12-26 00:04:26 +05:00
|
|
|
const track = queue.songs[0];
|
2021-12-10 21:39:54 +05:00
|
|
|
|
|
|
|
// Generate discord embed to display song informations
|
|
|
|
const embed = new Discord.MessageEmbed()
|
2021-12-26 00:04:26 +05:00
|
|
|
.setAuthor(message.translate("music/queue:TITLE"))
|
2021-12-10 21:39:54 +05:00
|
|
|
.setThumbnail(track.thumbnail)
|
2021-12-26 00:04:26 +05:00
|
|
|
.addField(message.translate("music/np:T_TITLE"), track.name + `\n${track.url}`)
|
2021-12-26 00:18:58 +05:00
|
|
|
.addField(message.translate("music/np:T_CHANNEL"), track.uploader.name ? track.uploader.name : "Отсутствует")
|
|
|
|
.addField(message.translate("music/np:T_DURATION"), track.isLive ? message.translate("music/play:LIVE") : message.convertTime(Date.now() + track.duration * 1000, "to", true))
|
2021-12-10 21:39:54 +05:00
|
|
|
.setColor(data.config.embed.color)
|
2021-12-26 00:04:26 +05:00
|
|
|
.setFooter(data.config.embed.footer)
|
|
|
|
.setTimestamp();
|
2021-12-11 01:11:50 +05:00
|
|
|
|
2021-12-10 21:39:54 +05:00
|
|
|
// Send the embed in the current channel
|
|
|
|
message.channel.send(embed);
|
|
|
|
}
|
2021-12-11 01:11:50 +05:00
|
|
|
};
|
2021-12-10 21:39:54 +05:00
|
|
|
|
|
|
|
module.exports = Np;
|