mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
111 lines
3.7 KiB
JavaScript
111 lines
3.7 KiB
JavaScript
const { SlashCommandBuilder, EmbedBuilder, PermissionsBitField, version } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class Stats extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/JaBa")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("stats")
|
|
.setDescription(client.translate("general/stats:DESCRIPTION"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("general/stats:DESCRIPTION", null, "uk-UA"),
|
|
ru: client.translate("general/stats:DESCRIPTION", null, "ru-RU"),
|
|
})
|
|
.setDMPermission(true),
|
|
aliases: [],
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
*/
|
|
async onLoad() {
|
|
//...
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
* @param {Object} data
|
|
*/
|
|
async execute(client, interaction, data) {
|
|
const hiddenGuildMembersCount = client.guilds.cache.get("568120814776614924").memberCount;
|
|
const servers = client.guilds.cache.size - 1;
|
|
let users = 0;
|
|
client.guilds.cache.forEach(g => {
|
|
users += g.memberCount;
|
|
});
|
|
users = users - hiddenGuildMembersCount;
|
|
|
|
const statsEmbed = new EmbedBuilder()
|
|
.setColor(client.config.embed.color)
|
|
.setFooter(client.config.embed.footer)
|
|
.setAuthor({
|
|
name: interaction.translate("common:STATS"),
|
|
})
|
|
.setDescription(interaction.translate("general/stats:MADE"))
|
|
.addFields([
|
|
{
|
|
name: client.customEmojis.stats + " " + interaction.translate("general/stats:COUNTS_TITLE"),
|
|
value: interaction.translate("general/stats:COUNTS_CONTENT", {
|
|
servers: servers,
|
|
users: users,
|
|
}),
|
|
inline: true,
|
|
},
|
|
{
|
|
name: client.customEmojis.version + " " + interaction.translate("general/stats:VERSIONS_TITLE"),
|
|
value: `\`Discord.js: v${version}\`\n\`Nodejs: v${process.versions.node}\``,
|
|
inline: true,
|
|
},
|
|
{
|
|
name: client.customEmojis.ram + " " + interaction.translate("general/stats:RAM_TITLE"),
|
|
value: `\`${(process.memoryUsage().heapUsed / 1024 / 1024).toFixed(2)}MB\``,
|
|
inline: true,
|
|
},
|
|
{
|
|
name: client.customEmojis.status.online + " " + interaction.translate("general/stats:ONLINE_TITLE"),
|
|
value: interaction.translate("general/stats:ONLINE_CONTENT", {
|
|
time: client.functions.convertTime(client, Date.now() + client.uptime, true, true, data?.guildData?.language),
|
|
}),
|
|
},
|
|
{
|
|
name: client.customEmojis.voice + " " + interaction.translate("general/stats:MUSIC_TITLE"),
|
|
value: interaction.translate("general/stats:MUSIC_CONTENT", {
|
|
count: `${client.player.nodes.cache.size} ${client.functions.getNoun(
|
|
client.player.nodes.cache.size,
|
|
interaction.translate("misc:NOUNS:SERVERS:1"),
|
|
interaction.translate("misc:NOUNS:SERVERS:2"),
|
|
interaction.translate("misc:NOUNS:SERVERS:5"),
|
|
)}`,
|
|
}),
|
|
},
|
|
{
|
|
name: interaction.translate("general/stats:CREDITS_TITLE"),
|
|
value: interaction.translate("general/stats:CREDITS_CONTENT"),
|
|
},
|
|
{
|
|
name: client.customEmojis.link + " " + interaction.translate("general/stats:LINKS_TITLE"),
|
|
value: interaction.translate("misc:STATS_FOOTER", {
|
|
dashboardLink: client.config.dashboard.domain,
|
|
supportLink: "https://discord.gg/Ptkj2n9nzZ",
|
|
inviteLink: client.generateInvite({ scopes: ["bot", "applications.commands"], permissions: [PermissionsBitField.Flags.Administrator] }),
|
|
donateLink: "https://www.donationalerts.com/r/jonny_bro",
|
|
owner: client.config.owner.id,
|
|
}),
|
|
},
|
|
]);
|
|
|
|
interaction.reply({
|
|
embeds: [statsEmbed],
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = Stats;
|