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