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

Contents of /branches/3.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: 6743 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-2022 OSN Inc.
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 { CommandInteraction, ContextMenuInteraction, GuildMember, Message, User } from 'discord.js';
21 import BaseCommand from '../../utils/structures/BaseCommand';
22 import DiscordClient from '../../client/Client';
23 import CommandOptions from '../../types/CommandOptions';
24 import InteractionOptions from '../../types/InteractionOptions';
25 import MessageEmbed from '../../client/MessageEmbed';
26 import getMember from '../../utils/getMember';
27 import Punishment from '../../models/Punishment';
28 import PunishmentType from '../../types/PunishmentType';
29
30 export default class ShotCommand extends BaseCommand {
31 supportsInteractions: boolean = true;
32 supportsContextMenu: boolean = true;
33
34 constructor() {
35 super('shot', 'moderation', ['Shot']);
36 }
37
38 async run(client: DiscordClient, msg: Message | CommandInteraction | ContextMenuInteraction, options: CommandOptions | InteractionOptions) {
39 if (!options.isInteraction && typeof options.args[0] === 'undefined') {
40 await msg.reply({
41 embeds: [
42 new MessageEmbed()
43 .setColor('#f14a60')
44 .setDescription(`This command requires at least one argument.`)
45 ]
46 });
47
48 return;
49 }
50
51 let user: GuildMember;
52 let dm = true;
53 let reason: string | undefined;
54
55 if (options.isInteraction) {
56 user = await <GuildMember> (msg instanceof ContextMenuInteraction ? options.options.getMember('user') : options.options.getMember('member'));
57
58 if (!user) {
59 await msg.reply({
60 embeds: [
61 new MessageEmbed()
62 .setColor('#f14a60')
63 .setDescription("Invalid member given.")
64 ]
65 });
66
67 return;
68 }
69
70 if (options.options.getString('reason')) {
71 reason = await <string> options.options.getString('reason');
72 }
73 }
74 else {
75 try {
76 const user2 = await getMember((msg as Message), options);
77
78 if (!user2) {
79 throw new Error('Invalid user');
80 }
81
82 user = user2;
83 }
84 catch (e) {
85 await msg.reply({
86 embeds: [
87 new MessageEmbed()
88 .setColor('#f14a60')
89 .setDescription(`Invalid user given.`)
90 ]
91 });
92
93 return;
94 }
95
96 console.log(user);
97
98 if (options.args[1]) {
99 const args = [...options.args];
100 args.shift();
101 reason = await args.join(' ');
102 }
103 }
104
105 if (user.id === client.user?.id) {
106 const random = Math.random() >= 0.5;
107
108 await msg.reply({
109 content: `Oh no no no... wait wait, you can't just do that with me${random ? "... I'm such an innocent bot :innocent:, PWEASE don't do that :pleading_face:" : "!?!? Can you?"}`,
110 files: [random ? "https://tenor.com/view/folded-hands-emoji-funny-animals-gray-cat-cute-pwease-gif-14039745.gif" : 'https://tenor.com/view/are-you-even-capable-vera-bennett-wentworth-can-you-handle-this-are-you-qualified-gif-22892513.gif']
111 });
112
113 return;
114 }
115
116 const anonymous = options.isInteraction ? options.options.getBoolean('anonymous') ?? false : false;
117
118 try {
119 await Punishment.create({
120 type: PunishmentType.SHOT,
121 user_id: user.id,
122 guild_id: msg.guild!.id,
123 mod_id: msg.member!.user.id,
124 mod_tag: (msg.member!.user as User).tag,
125 reason,
126 createdAt: new Date()
127 });
128
129 // await History.create(user.id, msg.guild!, 'bean', msg.member!.user.id, typeof reason === 'undefined' ? null : reason);
130
131 try {
132 await user.send({
133 embeds: [
134 new MessageEmbed()
135 .setAuthor({
136 iconURL: <string> msg.guild!.iconURL(),
137 name: `\tYou got a shot in ${msg.guild!.name}`
138 })
139 .addFields([
140 {
141 name: "Reason",
142 value: typeof reason === 'undefined' ? '*No reason provided*' : reason
143 },
144 ...(!anonymous ? [{
145 name: "💉 Doctor",
146 value: `${(msg.member?.user as User).tag}`
147 }] : [])
148 ])
149 ]
150 });
151 }
152 catch (e) {
153 console.log(e);
154 dm = false;
155 }
156
157 // await client.logger.logBeaned(user, typeof reason === 'undefined' ? '*No reason provided*' : reason, msg.member!.user as User);
158 }
159 catch (e) {
160 console.log(e);
161 }
162
163 await msg.reply({
164 embeds: [
165 new MessageEmbed()
166 .setAuthor({
167 name: user.user.tag,
168 iconURL: user.user.displayAvatarURL(),
169 })
170 .setDescription(user.user.tag + " got a shot." + (!dm ? "\nThey have DMs disabled. They will not know that they got a shot." : ''))
171 .addFields([
172 {
173 name: "💉 Doctor",
174 value: (msg.member!.user as User).tag
175 },
176 {
177 name: "Reason",
178 value: reason === undefined ? "*No reason provided*" : reason
179 }
180 ])
181 ]
182 });
183 }
184 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26