Haha-Yes/commands/admin/autoresponse.js

62 lines
2.4 KiB
JavaScript
Raw Normal View History

2022-08-29 21:06:18 +02:00
import { SlashCommandBuilder, ButtonBuilder, ButtonStyle, ActionRowBuilder, PermissionFlagsBits } from 'discord.js';
2022-08-29 20:37:59 +02:00
import db from '../../models/index.js';
export default {
data: new SlashCommandBuilder()
.setName('autoresponse')
.setDescription('Enable or disable autoresponse')
.setDefaultMemberPermissions(PermissionFlagsBits.ManageMessages),
category: 'admin',
2022-08-29 20:37:59 +02:00
async execute(interaction, args, client) {
const autoresponseStat = await db.autoresponseStat.findOne({ where: { serverID: interaction.guild.id } });
2022-10-10 18:56:58 +02:00
if (!autoresponseStat) {
2022-08-29 20:37:59 +02:00
const body = { serverID: interaction.guild.id, stat: 'enable' };
await db.autoresponseStat.create(body);
return await interaction.reply({ content: 'Autoresponse has been enabled.', ephemeral: true });
2022-08-29 20:37:59 +02:00
}
2022-10-10 18:56:58 +02:00
2022-08-29 20:37:59 +02:00
const row = new ActionRowBuilder()
.addComponents(
new ButtonBuilder()
2023-04-05 18:12:56 +02:00
.setCustomId(`yes${interaction.user.id}${interaction.id}`)
2022-08-29 20:37:59 +02:00
.setLabel('Yes')
.setStyle(ButtonStyle.Primary),
)
.addComponents(
new ButtonBuilder()
2023-04-05 18:12:56 +02:00
.setCustomId(`no${interaction.user.id}${interaction.id}`)
2022-08-29 20:37:59 +02:00
.setLabel('No')
.setStyle(ButtonStyle.Danger),
);
2022-10-10 18:56:58 +02:00
if (autoresponseStat.stat === 'enable') {
await interaction.reply({ content: 'Autoresponse is already enabled, do you wish to disable it?', components: [row], ephemeral: true });
}
else {
const body = { serverID: interaction.guild.id, stat: 'enable' };
await db.autoresponseStat.update(body, { where: { serverID: interaction.guild.id } });
return interaction.editReply({ content: 'Auto response has been enabled.', ephemeral: true });
}
2022-08-29 20:37:59 +02:00
2023-04-05 18:12:56 +02:00
return listenButton(client, interaction, interaction.user);
2022-08-29 20:37:59 +02:00
},
2023-04-05 18:12:56 +02:00
};
async function listenButton(client, interaction, user = interaction.user, originalId = interaction.id) {
client.once('interactionCreate', async (interactionMenu) => {
if (user !== interactionMenu.user) return listenButton(client, interaction, user, originalId);
if (!interactionMenu.isButton()) return;
await interactionMenu.update({ components: [] });
if (interactionMenu.customId === `yes${interaction.user.id}${originalId}`) {
const body = { serverID: interaction.guild.id, stat: 'disable' };
await db.autoresponseStat.update(body, { where: { serverID: interaction.guild.id } });
return interaction.editReply({ content: 'Auto response has been disabled.', ephemeral: true });
}
else {
return interaction.editReply({ content: 'Nothing has been changed.', ephemeral: true });
}
});
}