mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-19 08:34:15 +02:00
89 lines
2.9 KiB
TypeScript
89 lines
2.9 KiB
TypeScript
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
/*
|
|
Animal Rights Advocates Discord Bot
|
|
Copyright (C) 2023 Anthony Berg
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { InteractionHandler, InteractionHandlerTypes } from '@sapphire/framework';
|
|
import type { PieceContext } from '@sapphire/framework';
|
|
import type { ButtonInteraction, GuildMember } from 'discord.js';
|
|
import IDs from '#utils/ids';
|
|
|
|
export class NonVeganAccessButtonHandler extends InteractionHandler {
|
|
public constructor(ctx: PieceContext, options: InteractionHandler.Options) {
|
|
super(ctx, {
|
|
...options,
|
|
interactionHandlerType: InteractionHandlerTypes.Button,
|
|
});
|
|
}
|
|
|
|
public override parse(interaction: ButtonInteraction) {
|
|
if (interaction.customId !== 'nvAccess') return this.none();
|
|
|
|
return this.some();
|
|
}
|
|
|
|
public async run(interaction: ButtonInteraction) {
|
|
let { member } = interaction;
|
|
|
|
const errorMessage = 'There was an error giving you the role, please try again later or contact ModMail/the developer '
|
|
+ 'to sort out this problem.';
|
|
|
|
if (member === null) {
|
|
await interaction.reply({
|
|
content: errorMessage,
|
|
ephemeral: true,
|
|
});
|
|
return;
|
|
}
|
|
|
|
try {
|
|
member = member as GuildMember;
|
|
|
|
if (!member.roles.cache.has(IDs.roles.vegan.vegan)) {
|
|
await interaction.reply({
|
|
content: 'You need to be vegan to use this button!',
|
|
ephemeral: true,
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (member.roles.cache.has(IDs.roles.vegan.nvAccess)) {
|
|
await member.roles.remove(IDs.roles.vegan.nvAccess);
|
|
await interaction.reply({
|
|
content: 'Your access from the non vegan section has been removed. '
|
|
+ 'If you want to gain access again, click this button again.',
|
|
ephemeral: true,
|
|
});
|
|
return;
|
|
}
|
|
|
|
await member.roles.add(IDs.roles.vegan.nvAccess);
|
|
await interaction.reply({
|
|
content: 'Your access to the non vegan section has been given back. '
|
|
+ 'If you want to remove access again, click this button again.',
|
|
ephemeral: true,
|
|
});
|
|
} catch (error) {
|
|
this.container.logger.error(`Non Vegan Access Interaction: ${error}`);
|
|
await interaction.reply({
|
|
content: errorMessage,
|
|
ephemeral: true,
|
|
});
|
|
}
|
|
}
|
|
}
|