1 |
import { BanOptions, CommandInteraction, ContextMenuInteraction, GuildMember, Interaction, Message, User } from 'discord.js'; |
/** |
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'; |
import BaseCommand from '../../utils/structures/BaseCommand'; |
22 |
import DiscordClient from '../../client/Client'; |
import DiscordClient from '../../client/Client'; |
23 |
import CommandOptions from '../../types/CommandOptions'; |
import CommandOptions from '../../types/CommandOptions'; |
24 |
import InteractionOptions from '../../types/InteractionOptions'; |
import InteractionOptions from '../../types/InteractionOptions'; |
25 |
import MessageEmbed from '../../client/MessageEmbed'; |
import MessageEmbed from '../../client/MessageEmbed'; |
|
import getUser from '../../utils/getUser'; |
|
26 |
import getMember from '../../utils/getMember'; |
import getMember from '../../utils/getMember'; |
|
import History from '../../automod/History'; |
|
27 |
import Punishment from '../../models/Punishment'; |
import Punishment from '../../models/Punishment'; |
28 |
import PunishmentType from '../../types/PunishmentType'; |
import PunishmentType from '../../types/PunishmentType'; |
|
import ModerationEmbed from '../../utils/ModerationEmbed'; |
|
29 |
|
|
30 |
export default class BeanCommand extends BaseCommand { |
export default class ShotCommand extends BaseCommand { |
31 |
supportsInteractions: boolean = true; |
supportsInteractions: boolean = true; |
32 |
supportsContextMenu: boolean = true; |
supportsContextMenu: boolean = true; |
33 |
|
|
34 |
constructor() { |
constructor() { |
35 |
super('bean', 'moderation', ['Bean']); |
super('shot', 'moderation', ['Shot']); |
36 |
} |
} |
37 |
|
|
38 |
async run(client: DiscordClient, msg: Message | CommandInteraction | ContextMenuInteraction, options: CommandOptions | InteractionOptions) { |
async run(client: DiscordClient, msg: Message | CommandInteraction | ContextMenuInteraction, options: CommandOptions | InteractionOptions) { |
51 |
let user: GuildMember; |
let user: GuildMember; |
52 |
let dm = true; |
let dm = true; |
53 |
let reason: string | undefined; |
let reason: string | undefined; |
54 |
|
|
55 |
|
if (msg instanceof CommandInteraction || msg instanceof ContextMenuInteraction) { |
56 |
|
await msg.deferReply(); |
57 |
|
} |
58 |
|
|
59 |
if (options.isInteraction) { |
if (options.isInteraction) { |
60 |
user = await <GuildMember> (msg instanceof ContextMenuInteraction ? options.options.getMember('user') : options.options.getMember('member')); |
user = await <GuildMember> (msg instanceof ContextMenuInteraction ? options.options.getMember('user') : options.options.getMember('member')); |
61 |
|
|
62 |
if (!user) { |
if (!user) { |
63 |
await msg.reply({ |
await this.deferReply(msg, { |
64 |
embeds: [ |
embeds: [ |
65 |
new MessageEmbed() |
new MessageEmbed() |
66 |
.setColor('#f14a60') |
.setColor('#f14a60') |
86 |
user = user2; |
user = user2; |
87 |
} |
} |
88 |
catch (e) { |
catch (e) { |
89 |
await msg.reply({ |
await this.deferReply(msg, { |
90 |
embeds: [ |
embeds: [ |
91 |
new MessageEmbed() |
new MessageEmbed() |
92 |
.setColor('#f14a60') |
.setColor('#f14a60') |
106 |
} |
} |
107 |
} |
} |
108 |
|
|
109 |
|
if (user.id === client.user?.id) { |
110 |
|
const random = Math.random() >= 0.5; |
111 |
|
|
112 |
|
await this.deferReply(msg, { |
113 |
|
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?"}`, |
114 |
|
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'] |
115 |
|
}); |
116 |
|
|
117 |
|
return; |
118 |
|
} |
119 |
|
|
120 |
|
const anonymous = options.isInteraction ? options.options.getBoolean('anonymous') ?? false : false; |
121 |
|
|
122 |
try { |
try { |
123 |
await Punishment.create({ |
await Punishment.create({ |
124 |
type: PunishmentType.BEAN, |
type: PunishmentType.SHOT, |
125 |
user_id: user.id, |
user_id: user.id, |
126 |
guild_id: msg.guild!.id, |
guild_id: msg.guild!.id, |
127 |
mod_id: msg.member!.user.id, |
mod_id: msg.member!.user.id, |
128 |
mod_tag: (msg.member!.user as User).tag, |
mod_tag: (msg.member!.user as User).tag, |
129 |
reason |
reason, |
130 |
|
createdAt: new Date() |
131 |
}); |
}); |
132 |
|
|
133 |
await History.create(user.id, msg.guild!, 'bean', msg.member!.user.id, typeof reason === 'undefined' ? null : reason); |
// await History.create(user.id, msg.guild!, 'bean', msg.member!.user.id, typeof reason === 'undefined' ? null : reason); |
134 |
|
|
135 |
try { |
try { |
136 |
await user.send({ |
await user.send({ |
138 |
new MessageEmbed() |
new MessageEmbed() |
139 |
.setAuthor({ |
.setAuthor({ |
140 |
iconURL: <string> msg.guild!.iconURL(), |
iconURL: <string> msg.guild!.iconURL(), |
141 |
name: `\tYou have been beaned in ${msg.guild!.name}` |
name: `\tYou got a shot in ${msg.guild!.name}` |
142 |
}) |
}) |
143 |
.addFields([ |
.addFields([ |
144 |
{ |
{ |
145 |
name: "Reason", |
name: "Reason", |
146 |
value: typeof reason === 'undefined' ? '*No reason provided*' : reason |
value: typeof reason === 'undefined' ? '*No reason provided*' : reason |
147 |
} |
}, |
148 |
|
...(!anonymous ? [{ |
149 |
|
name: "💉 Doctor", |
150 |
|
value: `${(msg.member?.user as User).tag}` |
151 |
|
}] : []) |
152 |
]) |
]) |
153 |
] |
] |
154 |
}); |
}); |
158 |
dm = false; |
dm = false; |
159 |
} |
} |
160 |
|
|
161 |
await client.logger.logBeaned(user, typeof reason === 'undefined' ? '*No reason provided*' : reason, msg.member!.user as User); |
// await client.logger.logBeaned(user, typeof reason === 'undefined' ? '*No reason provided*' : reason, msg.member!.user as User); |
162 |
} |
} |
163 |
catch (e) { |
catch (e) { |
164 |
console.log(e); |
console.log(e); |
165 |
} |
} |
166 |
|
|
167 |
/*await msg.reply({ |
await this.deferReply(msg, { |
168 |
embeds: [ |
embeds: [ |
169 |
new MessageEmbed() |
new MessageEmbed() |
170 |
.setAuthor({ |
.setAuthor({ |
171 |
name: user.user.tag, |
name: user.user.tag, |
172 |
iconURL: user.user.displayAvatarURL(), |
iconURL: user.user.displayAvatarURL(), |
173 |
}) |
}) |
174 |
.setDescription(user.user.tag + " has been beaned." + (!dm ? "\nThey have DMs disabled. They will not know that they have been beaned." : '')) |
.setDescription(user.user.tag + " got a shot." + (!dm ? "\nThey have DMs disabled. They will not know that they got a shot." : '')) |
175 |
.addFields([ |
.addFields([ |
176 |
{ |
{ |
177 |
name: "Beaned by", |
name: "💉 Doctor", |
178 |
value: (msg.member!.user as User).tag |
value: (msg.member!.user as User).tag |
179 |
}, |
}, |
180 |
{ |
{ |
183 |
} |
} |
184 |
]) |
]) |
185 |
] |
] |
|
});*/ |
|
|
|
|
|
await msg.reply({ |
|
|
embeds: [ |
|
|
new ModerationEmbed(user.user, msg.member!.user as User, { |
|
|
description: `${user.user.tag} has been beaned.` |
|
|
}) |
|
|
.setReason(reason) |
|
|
] |
|
186 |
}); |
}); |
187 |
} |
} |
188 |
} |
} |