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 { CommandInteraction } from 'discord.js'; |
21 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
22 |
import DiscordClient from '../../client/Client'; |
23 |
import InteractionOptions from '../../types/InteractionOptions'; |
24 |
import { Modal, ModalSubmitInteraction, showModal, TextInputComponent } from 'discord-modals'; |
25 |
import PunishmentAppeal from '../../models/PunishmentAppeal'; |
26 |
|
27 |
export default class AppealCommand extends BaseCommand { |
28 |
supportsInteractions: boolean = true; |
29 |
supportsLegacy = false; |
30 |
ownerOnly: boolean = true; // since this is an incomplete command |
31 |
|
32 |
constructor() { |
33 |
super('appeal', 'moderation', []); |
34 |
} |
35 |
|
36 |
async modalSubmit(client: DiscordClient, interaction: ModalSubmitInteraction) { |
37 |
if (interaction.customId === 'appeal-modal') { |
38 |
const content = interaction.getTextInputValue('appeal-content'); |
39 |
|
40 |
await PunishmentAppeal.create({ |
41 |
user_id: interaction.member.id, |
42 |
guild_id: interaction.guild!.id, |
43 |
content, |
44 |
createdAt: new Date() |
45 |
}); |
46 |
|
47 |
await interaction.reply({ |
48 |
content: 'Your message was submitted successfully!', |
49 |
ephemeral: true |
50 |
}); |
51 |
} |
52 |
} |
53 |
|
54 |
async run(client: DiscordClient, interaction: CommandInteraction, options: InteractionOptions) { |
55 |
const existingData = await PunishmentAppeal.findOne({ |
56 |
user_id: interaction.member!.user.id, |
57 |
guild_id: interaction.guild!.id |
58 |
}); |
59 |
|
60 |
if (!existingData) { |
61 |
const modal = new Modal() |
62 |
.setCustomId('appeal-modal') |
63 |
.setTitle('Punishment Appeal Contact') |
64 |
.addComponents( |
65 |
new TextInputComponent() |
66 |
.setCustomId('appeal-content') |
67 |
.setLabel('Your message') |
68 |
.setStyle('LONG') |
69 |
.setMinLength(4) |
70 |
.setRequired(true), |
71 |
); |
72 |
|
73 |
await showModal(modal, { |
74 |
client, |
75 |
interaction, |
76 |
}); |
77 |
} |
78 |
else { |
79 |
await interaction.reply({ |
80 |
content: "You already submitted a punishment appeal.", |
81 |
ephemeral: true |
82 |
}); |
83 |
} |
84 |
} |
85 |
} |