2021-12-10 21:39:54 +05:00
|
|
|
const Command = require("../../base/Command.js"),
|
|
|
|
Discord = require("discord.js");
|
|
|
|
|
|
|
|
class Np extends Command {
|
2021-12-26 19:29:37 +05:00
|
|
|
constructor(client) {
|
2021-12-10 21:39:54 +05:00
|
|
|
super(client, {
|
|
|
|
name: "np",
|
|
|
|
dirname: __dirname,
|
|
|
|
enabled: true,
|
|
|
|
guildOnly: true,
|
2022-01-01 00:50:09 +05:00
|
|
|
aliases: ["nowplaying"],
|
2021-12-10 21:39:54 +05:00
|
|
|
memberPermissions: [],
|
2021-12-26 19:29:37 +05:00
|
|
|
botPermissions: ["SEND_MESSAGES", "EMBED_LINKS"],
|
2021-12-10 21:39:54 +05:00
|
|
|
nsfw: false,
|
|
|
|
ownerOnly: false,
|
2021-12-22 17:32:50 +05:00
|
|
|
cooldown: 3000
|
2021-12-10 21:39:54 +05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-12-26 19:29:37 +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
|
|
|
|
2022-01-04 21:16:52 +05:00
|
|
|
const status = queue =>
|
|
|
|
`Фильтры: \`${queue.filters.join(", ")
|
|
|
|
|| "Выкл"}\` | Повтор: \`${
|
|
|
|
queue.repeatMode
|
|
|
|
? queue.repeatMode === 2
|
|
|
|
? "Очереди"
|
2022-01-04 21:22:41 +05:00
|
|
|
: "Трека"
|
2022-01-04 21:16:52 +05:00
|
|
|
: "Выкл"
|
|
|
|
}\` | Автовоспроизведение: \`${queue.autoplay ? "Вкл" : "Выкл"}\``;
|
|
|
|
|
2021-12-10 21:39:54 +05:00
|
|
|
// Generate discord embed to display song informations
|
|
|
|
const embed = new Discord.MessageEmbed()
|
2022-01-04 00:35:11 +05:00
|
|
|
.setAuthor({
|
|
|
|
name: message.translate("music/queue:TITLE")
|
|
|
|
})
|
2021-12-10 21:39:54 +05:00
|
|
|
.setThumbnail(track.thumbnail)
|
2022-01-01 03:16:11 +05:00
|
|
|
.addField(message.translate("music/np:T_TITLE"), `[${track.name}](${track.url})`)
|
2021-12-26 00:18:58 +05:00
|
|
|
.addField(message.translate("music/np:T_CHANNEL"), track.uploader.name ? track.uploader.name : "Отсутствует")
|
2021-12-26 14:46:18 +05:00
|
|
|
.addField(message.translate("music/np:T_DURATION"), `${queue.formattedCurrentTime} / ${track.formattedDuration}`)
|
2022-01-04 21:16:52 +05:00
|
|
|
.addField(message.translate("music/np:T_CONF"), status(queue))
|
2021-12-10 21:39:54 +05:00
|
|
|
.setColor(data.config.embed.color)
|
2022-01-04 00:35:11 +05:00
|
|
|
.setFooter({
|
|
|
|
text: data.config.embed.footer
|
|
|
|
})
|
2021-12-26 00:04:26 +05:00
|
|
|
.setTimestamp();
|
2021-12-11 01:11:50 +05:00
|
|
|
|
2021-12-10 21:39:54 +05:00
|
|
|
// Send the embed in the current channel
|
2022-01-04 00:35:11 +05:00
|
|
|
message.channel.send({
|
|
|
|
embeds: [embed]
|
|
|
|
});
|
2021-12-10 21:39:54 +05:00
|
|
|
}
|
2021-12-11 01:11:50 +05:00
|
|
|
};
|
2021-12-10 21:39:54 +05:00
|
|
|
|
|
|
|
module.exports = Np;
|