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 |
entityNotNull: true, |
31 |
requiredErrorMessage: "You must specify a user to bean!", |
32 |
typeErrorMessage: "You have specified an invalid user mention or ID.", |
33 |
entityNotNullErrorMessage: "The given user does not exist!", |
34 |
name: "user" |
35 |
}, |
36 |
{ |
37 |
types: [ArgumentType.StringRest], |
38 |
optional: true, |
39 |
typeErrorMessage: "You have specified an invalid bean reason.", |
40 |
lengthMax: 3999, |
41 |
name: "reason" |
42 |
} |
43 |
]; |
44 |
public readonly permissions = [PermissionsBitField.Flags.ManageMessages, PermissionsBitField.Flags.BanMembers]; |
45 |
public readonly permissionMode = "or"; |
46 |
|
47 |
public readonly description = "Beans a user."; |
48 |
public readonly detailedDescription = "This command doesn't do anything special except DMing the user and telling them that they've been beaned."; |
49 |
|
50 |
public readonly slashCommandBuilder = new SlashCommandBuilder() |
51 |
.addUserOption(option => option.setName("user").setDescription("The target user").setRequired(true)) |
52 |
.addStringOption(option => option.setName("reason").setDescription("Reason for beaning this user")); |
53 |
|
54 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
55 |
await this.deferIfInteraction(message); |
56 |
|
57 |
const user = context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user", true); |
58 |
|
59 |
if (await protectSystemAdminsFromCommands(this.client, message, user.id)) { |
60 |
return; |
61 |
} |
62 |
|
63 |
const reason = context.isLegacy ? context.parsedNamedArgs.reason : context.options.getString("reason"); |
64 |
|
65 |
const id = await this.client.infractionManager.createUserBean(user, { |
66 |
reason, |
67 |
guild: message.guild!, |
68 |
moderator: message.member!.user as User |
69 |
}); |
70 |
|
71 |
await this.deferredReply(message, { |
72 |
embeds: [ |
73 |
await createModerationEmbed({ |
74 |
user, |
75 |
actionDoneName: "beaned", |
76 |
id, |
77 |
color: 0x007bff, |
78 |
reason |
79 |
}) |
80 |
] |
81 |
}); |
82 |
} |
83 |
} |