JaBa/commands/Economy/setbio.js

65 lines
2.2 KiB
JavaScript
Raw Normal View History

2024-09-19 23:58:06 +05:00
const { SlashCommandBuilder, InteractionContextType, ApplicationIntegrationType, escapeEscape, escapeCodeBlock, escapeInlineCode } = require("discord.js");
2022-08-09 23:48:33 +05:00
const BaseCommand = require("../../base/BaseCommand");
class Setbio extends BaseCommand {
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../base/Client")} client
2022-08-09 23:48:33 +05:00
*/
constructor(client) {
super({
command: new SlashCommandBuilder()
.setName("setbio")
.setDescription(client.translate("economy/setbio:DESCRIPTION"))
.setDescriptionLocalizations({
2023-07-05 00:58:06 +05:00
uk: client.translate("economy/setbio:DESCRIPTION", null, "uk-UA"),
ru: client.translate("economy/setbio:DESCRIPTION", null, "ru-RU"),
})
2024-09-19 23:58:06 +05:00
.setIntegrationTypes([ApplicationIntegrationType.GuildInstall, ApplicationIntegrationType.UserInstall])
2024-09-14 19:52:56 +05:00
.setContexts([InteractionContextType.BotDM, InteractionContextType.Guild])
2023-07-05 00:58:06 +05:00
.addStringOption(option =>
option
.setName("text")
.setDescription(client.translate("economy/profile:BIO"))
.setDescriptionLocalizations({
uk: client.translate("economy/profile:BIO", null, "uk-UA"),
ru: client.translate("economy/profile:BIO", null, "ru-RU"),
})
.setRequired(true),
2024-09-19 23:58:06 +05:00
)
.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"),
}),
2023-07-05 00:58:06 +05:00
),
2022-08-09 23:48:33 +05:00
dirname: __dirname,
ownerOnly: false,
2022-08-09 23:48:33 +05:00
});
}
2022-08-09 23:48:33 +05:00
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../../base/Client")} client
2022-08-09 23:48:33 +05:00
* @param {import("discord.js").ChatInputCommandInteraction} interaction
*/
2024-02-09 23:26:57 +05:00
async execute(client, interaction) {
2024-09-19 23:58:06 +05:00
await interaction.deferReply({ ephemeral: interaction.options.getBoolean("ephemeral") || false });
2024-09-14 19:52:56 +05:00
2024-02-09 23:26:57 +05:00
const userData = interaction.data.user,
newBio = interaction.options.getString("text");
2024-09-19 23:58:06 +05:00
if (newBio.length > 150) return interaction.error("misc:MAX_150_CHARS", null, { edit: true });
2022-08-09 23:48:33 +05:00
2024-09-19 23:58:06 +05:00
userData.bio = escapeEscape(escapeCodeBlock(escapeInlineCode(newBio))).replace("@", "@\u200b");
2024-02-09 23:26:57 +05:00
await userData.save();
2023-07-03 19:30:47 +05:00
2024-09-14 19:52:56 +05:00
interaction.success("economy/setbio:SUCCESS", null, { edit: true });
2022-08-09 23:48:33 +05:00
}
}
2023-07-05 00:58:06 +05:00
module.exports = Setbio;