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, { 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 ShotCommand extends Command { |
26 |
public readonly name = "shot"; |
27 |
public readonly validationRules: ValidationRule[] = [ |
28 |
{ |
29 |
types: [ArgumentType.User], |
30 |
entityNotNull: true, |
31 |
requiredErrorMessage: "You must specify a user to give shot!", |
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 shot reason.", |
40 |
lengthMax: 3999, |
41 |
name: "reason" |
42 |
} |
43 |
]; |
44 |
public readonly permissions = [PermissionsBitField.Flags.ManageMessages]; |
45 |
public readonly permissionMode = "or"; |
46 |
|
47 |
public readonly description = "Gives shot to a user."; |
48 |
public readonly detailedDescription = |
49 |
"This command doesn't do anything special except DMing the user and telling them that they've been given a shot."; |
50 |
|
51 |
public readonly slashCommandBuilder = new SlashCommandBuilder() |
52 |
.addUserOption(option => option.setName("user").setDescription("The target user").setRequired(true)) |
53 |
.addStringOption(option => option.setName("reason").setDescription("Reason for giving shot to this user")); |
54 |
|
55 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
56 |
await this.deferIfInteraction(message); |
57 |
|
58 |
const user = context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user", true); |
59 |
|
60 |
if (await protectSystemAdminsFromCommands(this.client, message, user.id)) { |
61 |
return; |
62 |
} |
63 |
|
64 |
const reason = context.isLegacy ? context.parsedNamedArgs.reason : context.options.getString("reason"); |
65 |
|
66 |
const id = await this.client.infractionManager.createUserShot(user, { |
67 |
reason, |
68 |
guild: message.guild!, |
69 |
moderator: message.member!.user as User |
70 |
}); |
71 |
|
72 |
await this.deferredReply(message, { |
73 |
embeds: [ |
74 |
await createModerationEmbed({ |
75 |
user, |
76 |
id, |
77 |
color: 0x007bff, |
78 |
reason, |
79 |
description: `**${escapeMarkdown(user.username)}** has been given a shot.`, |
80 |
fields: [ |
81 |
{ |
82 |
name: "💉 Doctor", |
83 |
value: `${message.member!.user.username}` |
84 |
} |
85 |
] |
86 |
}) |
87 |
] |
88 |
}); |
89 |
} |
90 |
} |