/[sudobot]/branches/8.x/src/commands/moderation/ShotCommand.ts
ViewVC logotype

Contents of /branches/8.x/src/commands/moderation/ShotCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 4583 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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, escapeMarkdown } from "discord.js";
21 import Command, {
22 ArgumentType,
23 BasicCommandContext,
24 CommandMessage,
25 CommandReturn,
26 ValidationRule
27 } from "../../core/Command";
28 import { protectSystemAdminsFromCommands } from "../../utils/troll";
29 import { createModerationEmbed } from "../../utils/utils";
30
31 export default class ShotCommand extends Command {
32 public readonly name = "shot";
33 public readonly validationRules: ValidationRule[] = [
34 {
35 types: [ArgumentType.User],
36 entity: true,
37 errors: {
38 required: "You must specify a user to give shot!",
39 "type:invalid": "You have specified an invalid user mention or ID.",
40 "entity:null": "The given user does not exist!"
41 },
42 name: "user"
43 },
44 {
45 types: [ArgumentType.StringRest],
46 optional: true,
47 errors: {
48 "type:invalid": "You have specified an invalid shot reason.",
49 "string:rest:length:max": "The shot reason must be less than 4000 characters long."
50 },
51 string: {
52 maxLength: 3999
53 },
54 name: "reason"
55 }
56 ];
57 public readonly permissions = [PermissionsBitField.Flags.ManageMessages];
58 public readonly permissionMode = "or";
59
60 public readonly description = "Gives shot to a user.";
61 public readonly detailedDescription =
62 "This command doesn't do anything special except DMing the user and telling them that they've been given a shot.";
63
64 public readonly slashCommandBuilder = new SlashCommandBuilder()
65 .addUserOption(option =>
66 option.setName("user").setDescription("The target user").setRequired(true)
67 )
68 .addStringOption(option =>
69 option.setName("reason").setDescription("Reason for giving shot to this user")
70 );
71
72 async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> {
73 await this.deferIfInteraction(message);
74
75 const user = context.isLegacy
76 ? context.parsedNamedArgs.user
77 : context.options.getUser("user", true);
78
79 if (await protectSystemAdminsFromCommands(this.client, message, user.id, "shot_safe")) {
80 return;
81 }
82
83 const {
84 commands: { moderation_command_behaviour }
85 } = context.config;
86 const deleteResponse = moderation_command_behaviour === "delete";
87 const reason = context.isLegacy
88 ? context.parsedNamedArgs.reason
89 : context.options.getString("reason");
90
91 const { id, reason: finalReason } = await this.client.infractionManager.createUserShot(
92 user,
93 {
94 reason,
95 guild: message.guild!,
96 moderator: message.member!.user as User,
97 abortOnTemplateNotFound: true
98 }
99 );
100
101 await this.deferredReply(
102 message,
103 {
104 embeds: [
105 await createModerationEmbed({
106 moderator: message.member!.user as User,
107 user,
108 id,
109 color: 0x007bff,
110 reason: finalReason,
111 description: `**${escapeMarkdown(user.username)}** has been given a shot.`,
112 fields: [
113 {
114 name: "💉 Doctor",
115 value: `${message.member!.user.username}`
116 }
117 ]
118 })
119 ]
120 },
121 deleteResponse ? "delete" : "default"
122 );
123 }
124 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26