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 { PermissionsBitField, SlashCommandBuilder, User } from "discord.js"; |
21 |
import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
import { protectSystemAdminsFromCommands } from "../../utils/troll"; |
23 |
import { createModerationEmbed } from "../../utils/utils"; |
24 |
|
25 |
export default class BeanCommand extends Command { |
26 |
public readonly name = "bean"; |
27 |
public readonly validationRules: ValidationRule[] = [ |
28 |
{ |
29 |
types: [ArgumentType.User], |
30 |
entity: { |
31 |
notNull: true, |
32 |
}, |
33 |
errors: { |
34 |
required: "You must specify a user to bean!", |
35 |
"type:invalid": "You have specified an invalid user mention or ID.", |
36 |
"entity:null": "The given user does not exist!", |
37 |
}, |
38 |
name: "user" |
39 |
}, |
40 |
{ |
41 |
types: [ArgumentType.StringRest], |
42 |
optional: true, |
43 |
errors: { |
44 |
"type:invalid": "You have specified an invalid bean reason.", |
45 |
"string:length:max": "Max length was exceeded for the reason." |
46 |
}, |
47 |
string: { |
48 |
maxLength: 3999 |
49 |
}, |
50 |
name: "reason" |
51 |
} |
52 |
]; |
53 |
public readonly permissions = [PermissionsBitField.Flags.ManageMessages, PermissionsBitField.Flags.BanMembers]; |
54 |
public readonly permissionMode = "or"; |
55 |
|
56 |
public readonly description = "Beans a user."; |
57 |
public readonly detailedDescription = |
58 |
"This command doesn't do anything special except DMing the user and telling them that they've been beaned."; |
59 |
|
60 |
public readonly slashCommandBuilder = new SlashCommandBuilder() |
61 |
.addUserOption(option => option.setName("user").setDescription("The target user").setRequired(true)) |
62 |
.addStringOption(option => option.setName("reason").setDescription("Reason for beaning this user")); |
63 |
|
64 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
65 |
await this.deferIfInteraction(message); |
66 |
|
67 |
const user = context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user", true); |
68 |
const { |
69 |
commands: { moderation_command_behaviour } |
70 |
} = context.config; |
71 |
const deleteResponse = moderation_command_behaviour === "delete"; |
72 |
|
73 |
if (await protectSystemAdminsFromCommands(this.client, message, user.id, "bean_safe")) { |
74 |
return; |
75 |
} |
76 |
|
77 |
const reason = context.isLegacy ? context.parsedNamedArgs.reason : context.options.getString("reason"); |
78 |
|
79 |
const id = await this.client.infractionManager.createUserBean(user, { |
80 |
reason, |
81 |
guild: message.guild!, |
82 |
moderator: message.member!.user as User |
83 |
}); |
84 |
|
85 |
await this.deferredReply( |
86 |
message, |
87 |
{ |
88 |
embeds: [ |
89 |
await createModerationEmbed({ |
90 |
moderator: message.member!.user as User, |
91 |
user, |
92 |
actionDoneName: "beaned", |
93 |
id, |
94 |
color: 0x007bff, |
95 |
reason |
96 |
}) |
97 |
] |
98 |
}, |
99 |
deleteResponse ? "delete" : "default" |
100 |
); |
101 |
} |
102 |
} |