From 7126d3486609d7497f3be5500c46ba2dc651d874 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Mon, 29 Jan 2024 02:35:29 +0100 Subject: [PATCH] prepare role-emoji-pair adding --- commands/admin/self_roles.js | 65 ++++++++++++++++++++++++++++++------ 1 file changed, 54 insertions(+), 11 deletions(-) diff --git a/commands/admin/self_roles.js b/commands/admin/self_roles.js index 4932bd7..49fa8a0 100644 --- a/commands/admin/self_roles.js +++ b/commands/admin/self_roles.js @@ -14,37 +14,80 @@ export const data = new SlashCommandBuilder() .setDescription('The text to be displayed in the message.'))) .addSubcommand(subcommand => subcommand - .setName('add') - .setDescription('Adds functionality to an existing message.') + .setName('register') + .setDescription('Registers an existing message.') .addStringOption(option => option .setName('id') .setRequired(true) - .setDescription('The ID to reference the message to be used.'))); + .setDescription('The ID to reference the message to be used.'))) + .addSubcommand(subcommand => + subcommand + .setName('add') + .setDescription('Add a role-emoji-pair to a message.') + .addStringOption(option => + option + .setName('id') + .setRequired(true) + .setDescription('The ID to reference the message to be used.')) + .addRoleOption(option => + option + .setName('role') + .setRequired(true) + .setDescription('The role be assigned to.')) + .addStringOption(option => + option + .setName('emoji') + .setRequired(true) + .setDescription('The emoji to be reacted with.'))); export async function execute(interaction) { const channel = interaction.channel; - let message = null; + let createNew = false; + let id = interaction.options.getString('id'); switch (interaction.options.getSubcommand()) { case 'create': // Create message with text input const text = interaction.options.getString('text'); - message = await channel.send(text); + id = (await channel.send(text)).id; // Reply and delete to acknowledge command interaction.deferReply(); interaction.deleteReply(); + // Flag to create new database entry + createNew = true; + break; + case 'register': + try { + // Get message by id + await channel.messages.fetch(id); + // Reply successfully to acknowledge command + await interaction.reply({ + content: 'Successfully fetched message!', + ephemeral: true, + }); + // Flag to create new database entry + createNew = true; + } catch (_) { + // Reply failed to acknowledge command + await interaction.reply({ + content: 'Failed to fetch message!', + ephemeral: true, + }); + } break; case 'add': - // Get message by id - const id = interaction.options.getString('id'); - message = await channel.messages.fetch(id); - // Reply to acknowledge command + const role = interaction.options.getRole('role'); + const emoji = interaction.options.getString('emoji'); + + // Reply successfully to acknowledge command await interaction.reply({ - content: 'Successfully fetched message!', + content: 'Added new entry for self roles!', ephemeral: true, }); + console.debug(`[DEBUG] Added new entry to get role with ID '${role.id}' using '${emoji}'.`); break; } - console.debug(`[DEBUG] Message ID: '${message.id}'.`); + if (createNew) + console.debug(`[DEBUG] New self roles on message with ID: '${id}'.`); }