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, Permissions, 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 |
import { hasPermission, shouldNotModerate } from '../../utils/util'; |
30 |
|
31 |
export default class KickCommand extends BaseCommand { |
32 |
supportsInteractions: boolean = true; |
33 |
supportsContextMenu: boolean = true; |
34 |
|
35 |
permissions = [Permissions.FLAGS.KICK_MEMBERS]; |
36 |
|
37 |
constructor() { |
38 |
super('kick', 'moderation', ['Kick']); |
39 |
} |
40 |
|
41 |
async run(client: DiscordClient, msg: Message | CommandInteraction | ContextMenuInteraction, options: CommandOptions | InteractionOptions) { |
42 |
if (!options.isInteraction && typeof options.args[0] === 'undefined') { |
43 |
await msg.reply({ |
44 |
embeds: [ |
45 |
new MessageEmbed() |
46 |
.setColor('#f14a60') |
47 |
.setDescription(`This command requires at least one argument.`) |
48 |
] |
49 |
}); |
50 |
|
51 |
return; |
52 |
} |
53 |
|
54 |
let user: GuildMember; |
55 |
let reason: string | undefined; |
56 |
|
57 |
if (options.isInteraction) { |
58 |
user = await <GuildMember> (msg instanceof ContextMenuInteraction ? options.options.getMember('user') : options.options.getMember('member')); |
59 |
|
60 |
if (!user) { |
61 |
await msg.reply({ |
62 |
embeds: [ |
63 |
new MessageEmbed() |
64 |
.setColor('#f14a60') |
65 |
.setDescription("Invalid user given.") |
66 |
] |
67 |
}); |
68 |
|
69 |
return; |
70 |
} |
71 |
|
72 |
if (options.options.getString('reason')) { |
73 |
reason = await <string> options.options.getString('reason'); |
74 |
} |
75 |
} |
76 |
else { |
77 |
try { |
78 |
const user2 = await getMember((msg as Message), options); |
79 |
|
80 |
if (!user2) { |
81 |
throw new Error('Invalid user'); |
82 |
} |
83 |
|
84 |
user = user2; |
85 |
} |
86 |
catch (e) { |
87 |
await msg.reply({ |
88 |
embeds: [ |
89 |
new MessageEmbed() |
90 |
.setColor('#f14a60') |
91 |
.setDescription(`Invalid user given.`) |
92 |
] |
93 |
}); |
94 |
|
95 |
return; |
96 |
} |
97 |
|
98 |
console.log(user); |
99 |
|
100 |
if (options.args[1]) { |
101 |
const args = [...options.args]; |
102 |
args.shift(); |
103 |
reason = await args.join(' '); |
104 |
} |
105 |
} |
106 |
|
107 |
try { |
108 |
if (!(await hasPermission(client, user, msg, null, "You don't have permission to kick this user."))) { |
109 |
return; |
110 |
} |
111 |
|
112 |
if (!user.kickable || shouldNotModerate(client, user)) |
113 |
throw new Error('User not kickable'); |
114 |
|
115 |
await user.kick(reason); |
116 |
|
117 |
await Punishment.create({ |
118 |
type: PunishmentType.KICK, |
119 |
user_id: user.id, |
120 |
guild_id: msg.guild!.id, |
121 |
mod_id: msg.member!.user.id, |
122 |
mod_tag: (msg.member!.user as User).tag, |
123 |
reason, |
124 |
createdAt: new Date() |
125 |
}); |
126 |
|
127 |
// await History.create(user.id, msg.guild!, 'kick', msg.member!.user.id, typeof reason === 'undefined' ? null : reason); |
128 |
} |
129 |
catch (e) { |
130 |
await msg.reply({ |
131 |
embeds: [ |
132 |
new MessageEmbed() |
133 |
.setColor('#f14a60') |
134 |
.setDescription("Failed to kick this user. Maybe missing permisions or I'm not allowed to kick this user?") |
135 |
] |
136 |
}); |
137 |
|
138 |
return; |
139 |
} |
140 |
|
141 |
await msg.reply({ |
142 |
embeds: [ |
143 |
new MessageEmbed() |
144 |
.setAuthor({ |
145 |
name: user.user.tag, |
146 |
iconURL: user.user.displayAvatarURL(), |
147 |
}) |
148 |
.setDescription(user.user.tag + " has been kicked from this server.") |
149 |
.addFields([ |
150 |
{ |
151 |
name: "Kicked by", |
152 |
value: (msg.member!.user as User).tag |
153 |
}, |
154 |
{ |
155 |
name: "Reason", |
156 |
value: reason === undefined ? "*No reason provided*" : reason |
157 |
} |
158 |
]) |
159 |
] |
160 |
}); |
161 |
} |
162 |
} |