mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
46 lines
No EOL
1.4 KiB
JavaScript
46 lines
No EOL
1.4 KiB
JavaScript
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,
|
|
cooldown: 3000
|
|
});
|
|
}
|
|
|
|
async run(message, args, data) {
|
|
const voice = message.member.voice.channel;
|
|
const queue = this.client.player.getQueue(message);
|
|
|
|
if (!voice) return message.error("music/play:NO_VOICE_CHANNEL");
|
|
if (!queue) return message.error("music/play:NOT_PLAYING");
|
|
|
|
// Gets the current song
|
|
const track = queue.songs[0];
|
|
|
|
// Generate discord embed to display song informations
|
|
const embed = new Discord.MessageEmbed()
|
|
.setAuthor(message.translate("music/queue:TITLE"))
|
|
.setThumbnail(track.thumbnail)
|
|
.addField(message.translate("music/np:T_TITLE"), track.name + `\n${track.url}`)
|
|
.addField(message.translate("music/np:T_CHANNEL"), track.uploader.name ? track.uploader.name : "Отсутствует")
|
|
.addField(message.translate("music/np:T_DURATION"), `${queue.formattedCurrentTime} / ${track.formattedDuration}`)
|
|
.setColor(data.config.embed.color)
|
|
.setFooter(data.config.embed.footer)
|
|
.setTimestamp();
|
|
|
|
// Send the embed in the current channel
|
|
message.channel.send(embed);
|
|
}
|
|
};
|
|
|
|
module.exports = Np; |