1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2022 OSN Inc. |
5 |
* |
6 |
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
* under the terms of the GNU Affero General Public License as published by |
8 |
* the Free Software Foundation, either version 3 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* SudoBot is distributed in the hope that it will be useful, but |
12 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU Affero General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU Affero General Public License |
17 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
*/ |
19 |
|
20 |
import { Message, Interaction, CacheType, CommandInteraction, Permissions } from "discord.js"; |
21 |
import Client from "../../client/Client"; |
22 |
import InteractionRole from "../../models/InteractionRole"; |
23 |
import InteractionRoleMessage from "../../models/InteractionRoleMessage"; |
24 |
import CommandOptions from "../../types/CommandOptions"; |
25 |
import InteractionOptions from "../../types/InteractionOptions"; |
26 |
import BaseCommand from "../../utils/structures/BaseCommand"; |
27 |
|
28 |
export default class ButtonRoleDeleteCommand extends BaseCommand { |
29 |
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
30 |
name = "buttonrole__delete"; |
31 |
category = "automation"; |
32 |
|
33 |
async run(client: Client, message: CommandInteraction<CacheType> | Message<boolean>, options: CommandOptions | InteractionOptions): Promise<void> { |
34 |
if (!options.isInteraction && options.args[1] === undefined) { |
35 |
await message.reply(":x: Please specify the ID of the react role message."); |
36 |
return; |
37 |
} |
38 |
|
39 |
if (message instanceof CommandInteraction) |
40 |
await message.deferReply(); |
41 |
|
42 |
const interactionRoleMessage = await InteractionRoleMessage.findOne({ |
43 |
message_id: options.isInteraction ? options.options.getString('message_id', true) : options.args[1], |
44 |
guild_id: message.guildId! |
45 |
}); |
46 |
|
47 |
if (!interactionRoleMessage) { |
48 |
await this.deferReply(message, ":x: No such reaction role message created with that ID!"); |
49 |
return; |
50 |
} |
51 |
|
52 |
await InteractionRole.deleteMany({ _id: { $in: interactionRoleMessage.dbIDs } }); |
53 |
await interactionRoleMessage.delete(); |
54 |
|
55 |
await this.deferReply(message, "The reaction role message data was deleted, but the message itself was not deleted by the system so that you won't lose any important data on it, if you have."); |
56 |
} |
57 |
} |