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 |
|
31 |
constructor() { |
32 |
super('appeal', 'moderation', []); |
33 |
} |
34 |
|
35 |
async modalSubmit(client: DiscordClient, interaction: ModalSubmitInteraction) { |
36 |
if (interaction.customId === 'appeal-modal') { |
37 |
const content = interaction.getTextInputValue('appeal-content'); |
38 |
|
39 |
await PunishmentAppeal.create({ |
40 |
user_id: interaction.member.id, |
41 |
guild_id: interaction.guild!.id, |
42 |
content, |
43 |
createdAt: new Date() |
44 |
}); |
45 |
|
46 |
await interaction.reply({ |
47 |
content: 'Your message was submitted successfully!', |
48 |
ephemeral: true |
49 |
}); |
50 |
} |
51 |
} |
52 |
|
53 |
async run(client: DiscordClient, interaction: CommandInteraction, options: InteractionOptions) { |
54 |
const existingData = await PunishmentAppeal.findOne({ |
55 |
user_id: interaction.member!.user.id, |
56 |
guild_id: interaction.guild!.id |
57 |
}); |
58 |
|
59 |
if (!existingData) { |
60 |
const modal = new Modal() |
61 |
.setCustomId('appeal-modal') |
62 |
.setTitle('Punishment Appeal Contact') |
63 |
.addComponents( |
64 |
new TextInputComponent() |
65 |
.setCustomId('appeal-content') |
66 |
.setLabel('Your message') |
67 |
.setStyle('LONG') |
68 |
.setMinLength(4) |
69 |
.setRequired(true), |
70 |
); |
71 |
|
72 |
await showModal(modal, { |
73 |
client, |
74 |
interaction, |
75 |
}); |
76 |
} |
77 |
else { |
78 |
await interaction.reply({ |
79 |
content: "You already submitted a punishment appeal.", |
80 |
ephemeral: true |
81 |
}); |
82 |
} |
83 |
} |
84 |
} |