1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2023 OSN Developers. |
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 { ApplicationCommandType, GuildMember, MessageContextMenuCommandInteraction, PermissionsString } from "discord.js"; |
21 |
import Command, { CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
|
23 |
export default class ReportMessageCommand extends Command { |
24 |
public readonly name = "Report Message"; |
25 |
public readonly validationRules: ValidationRule[] = []; |
26 |
public readonly permissions = []; |
27 |
public readonly applicationCommandType = ApplicationCommandType.Message; |
28 |
|
29 |
public readonly supportsLegacy = false; |
30 |
public readonly description = "Reports the target message to the message log channel and deletes it."; |
31 |
|
32 |
async permissionCheck(interaction: MessageContextMenuCommandInteraction) { |
33 |
const config = this.client.configManager.config[interaction.guildId!]?.message_reporting; |
34 |
|
35 |
if (config?.users?.includes(interaction.user.id)) { |
36 |
return true; |
37 |
} |
38 |
|
39 |
const member = interaction.member as GuildMember; |
40 |
|
41 |
if (member?.roles.cache.hasAll(...(config?.roles ?? []))) { |
42 |
return true; |
43 |
} |
44 |
|
45 |
if ( |
46 |
config?.permission_level !== undefined && |
47 |
config?.permission_level >= 0 && |
48 |
this.client.permissionManager.usesLevelBasedMode(member.guild.id) && |
49 |
(await this.client.permissionManager.getManager(member.guild.id)).getPermissionLevel(member) >= |
50 |
config?.permission_level |
51 |
) { |
52 |
return true; |
53 |
} |
54 |
|
55 |
if (member?.permissions.has((config?.permissions ?? []) as PermissionsString[], true)) { |
56 |
return true; |
57 |
} |
58 |
|
59 |
return false; |
60 |
} |
61 |
|
62 |
async execute(interaction: MessageContextMenuCommandInteraction): Promise<CommandReturn> { |
63 |
const { targetMessage } = interaction; |
64 |
|
65 |
await interaction.deferReply({ ephemeral: true }); |
66 |
|
67 |
if (!(await this.client.permissionManager.shouldModerate(targetMessage.member!, interaction.member as GuildMember))) { |
68 |
await this.error(interaction, "You don't have permission to report messages from this user!"); |
69 |
return; |
70 |
} |
71 |
|
72 |
if (!this.client.configManager.config[interaction.guildId!]?.message_reporting?.enabled) { |
73 |
await interaction.editReply({ |
74 |
content: "This server has message reporting turned off. Please turn it on to use this command." |
75 |
}); |
76 |
|
77 |
return; |
78 |
} |
79 |
|
80 |
const { error } = await this.client.reportService.report({ |
81 |
guildId: interaction.guildId!, |
82 |
moderator: interaction.member as GuildMember, |
83 |
message: interaction.targetMessage |
84 |
}); |
85 |
|
86 |
if (error) { |
87 |
await interaction.editReply({ |
88 |
content: error |
89 |
}); |
90 |
|
91 |
return; |
92 |
} |
93 |
|
94 |
await interaction.editReply({ |
95 |
content: "Successfully reported the message." |
96 |
}); |
97 |
} |
98 |
} |