2024-09-19 23:58:06 +05:00
|
|
|
const { SlashCommandBuilder, InteractionContextType, ApplicationIntegrationType } = require("discord.js");
|
2022-07-26 17:20:10 +05:00
|
|
|
const BaseCommand = require("../../base/BaseCommand");
|
2022-07-23 17:14:42 +05:00
|
|
|
|
|
|
|
class Ping extends BaseCommand {
|
|
|
|
/**
|
|
|
|
*
|
2023-11-05 16:03:23 +05:00
|
|
|
* @param {import("../base/Client")} client
|
2022-07-23 17:14:42 +05:00
|
|
|
*/
|
2022-07-29 23:31:08 +05:00
|
|
|
constructor(client) {
|
2022-07-23 17:14:42 +05:00
|
|
|
super({
|
|
|
|
command: new SlashCommandBuilder()
|
|
|
|
.setName("ping")
|
2022-10-13 00:05:36 +05:00
|
|
|
.setDescription(client.translate("general/ping:DESCRIPTION"))
|
2023-06-15 19:46:27 +05:00
|
|
|
.setDescriptionLocalizations({
|
2023-07-05 00:58:06 +05:00
|
|
|
uk: client.translate("general/ping:DESCRIPTION", null, "uk-UA"),
|
|
|
|
ru: client.translate("general/ping:DESCRIPTION", null, "ru-RU"),
|
2023-06-15 19:46:27 +05:00
|
|
|
})
|
2024-09-19 23:58:06 +05:00
|
|
|
.setIntegrationTypes([ApplicationIntegrationType.GuildInstall, ApplicationIntegrationType.UserInstall])
|
|
|
|
.setContexts([InteractionContextType.BotDM, InteractionContextType.PrivateChannel, InteractionContextType.Guild])
|
|
|
|
.addBooleanOption(option =>
|
|
|
|
option
|
|
|
|
.setName("ephemeral")
|
|
|
|
.setDescription(client.translate("misc:EPHEMERAL_RESPONSE"))
|
|
|
|
.setDescriptionLocalizations({
|
|
|
|
uk: client.translate("misc:EPHEMERAL_RESPONSE", null, "uk-UA"),
|
|
|
|
ru: client.translate("misc:EPHEMERAL_RESPONSE", null, "ru-RU"),
|
|
|
|
}),
|
|
|
|
),
|
2022-07-26 17:20:10 +05:00
|
|
|
dirname: __dirname,
|
2022-12-15 21:02:38 +05:00
|
|
|
ownerOnly: false,
|
2022-07-23 17:14:42 +05:00
|
|
|
});
|
|
|
|
}
|
2024-02-06 21:45:53 +05:00
|
|
|
|
2022-07-23 17:14:42 +05:00
|
|
|
/**
|
|
|
|
*
|
2023-11-05 16:03:23 +05:00
|
|
|
* @param {import("../../base/Client")} client
|
2022-08-01 20:06:09 +05:00
|
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
2022-07-23 17:14:42 +05:00
|
|
|
*/
|
|
|
|
async execute(client, interaction) {
|
2024-09-19 23:58:06 +05:00
|
|
|
await interaction.deferReply({ ephemeral: interaction.options.getBoolean("ephemeral") || false });
|
|
|
|
|
2024-02-06 21:45:53 +05:00
|
|
|
const embed = client.embed({
|
|
|
|
author: {
|
2023-01-05 15:19:20 +05:00
|
|
|
name: interaction.translate("general/ping:PONG"),
|
2024-02-06 21:45:53 +05:00
|
|
|
},
|
|
|
|
description: interaction.translate("general/ping:PING", {
|
|
|
|
ping: Math.round(client.ws.ping),
|
|
|
|
}),
|
|
|
|
});
|
2023-01-05 15:19:20 +05:00
|
|
|
|
2024-09-19 23:58:06 +05:00
|
|
|
interaction.editReply({
|
2023-01-05 15:19:20 +05:00
|
|
|
embeds: [embed],
|
2022-07-29 23:31:08 +05:00
|
|
|
});
|
2022-07-23 17:14:42 +05:00
|
|
|
}
|
|
|
|
}
|
2022-07-29 23:31:08 +05:00
|
|
|
|
2023-07-05 00:58:06 +05:00
|
|
|
module.exports = Ping;
|