1 |
rakinar2 |
577 |
/** |
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 { BanOptions, ChatInputApplicationCommandData, CommandInteraction, 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 getUser from '../../utils/getUser'; |
27 |
|
|
import { shouldNotModerate, hasPermission, generateInfractionDescription } from '../../utils/util'; |
28 |
|
|
|
29 |
|
|
export default class FakeBanCommand extends BaseCommand { |
30 |
|
|
supportsInteractions: boolean = true; |
31 |
|
|
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
32 |
|
|
|
33 |
|
|
constructor() { |
34 |
|
|
super('fakeban', 'moderation', ['fban']); |
35 |
|
|
} |
36 |
|
|
|
37 |
|
|
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
38 |
|
|
if (!options.isInteraction && typeof options.args[0] === 'undefined') { |
39 |
|
|
await msg.reply({ |
40 |
|
|
embeds: [ |
41 |
|
|
new MessageEmbed() |
42 |
|
|
.setColor('#f14a60') |
43 |
|
|
.setDescription(`This command requires at least one argument.`) |
44 |
|
|
] |
45 |
|
|
}); |
46 |
|
|
|
47 |
|
|
return; |
48 |
|
|
} |
49 |
|
|
|
50 |
|
|
let user: User; |
51 |
|
|
let banOptions: BanOptions = {}; |
52 |
|
|
|
53 |
|
|
if (options.isInteraction) { |
54 |
|
|
user = await <User> options.options.getUser('user'); |
55 |
|
|
|
56 |
|
|
if (options.options.getString('reason')) { |
57 |
|
|
banOptions.reason = await <string> options.options.getString('reason'); |
58 |
|
|
} |
59 |
|
|
|
60 |
|
|
if (options.options.getInteger('days')) { |
61 |
|
|
banOptions.days = await <number> options.options.getInteger('days'); |
62 |
|
|
} |
63 |
|
|
} |
64 |
|
|
else { |
65 |
|
|
const user2 = await getUser(client, (msg as Message), options); |
66 |
|
|
|
67 |
|
|
if (!user2) { |
68 |
|
|
await msg.reply({ |
69 |
|
|
embeds: [ |
70 |
|
|
new MessageEmbed() |
71 |
|
|
.setColor('#f14a60') |
72 |
|
|
.setDescription(`Invalid user given.`) |
73 |
|
|
] |
74 |
|
|
}); |
75 |
|
|
|
76 |
|
|
return; |
77 |
|
|
} |
78 |
|
|
|
79 |
|
|
user = user2; |
80 |
|
|
|
81 |
|
|
const index = await options.args.indexOf('-d'); |
82 |
|
|
|
83 |
|
|
if (options.args[1]) { |
84 |
|
|
const args = [...options.args]; |
85 |
|
|
args.shift(); |
86 |
|
|
|
87 |
|
|
if (index !== -1) { |
88 |
|
|
args.splice(index - 1, 2) |
89 |
|
|
} |
90 |
|
|
|
91 |
|
|
banOptions.reason = await args.join(' '); |
92 |
|
|
} |
93 |
|
|
|
94 |
|
|
if (index !== -1) { |
95 |
|
|
const days = await options.args[index + 1]; |
96 |
|
|
|
97 |
|
|
if (days === undefined) { |
98 |
|
|
await msg.reply({ |
99 |
|
|
embeds: [ |
100 |
|
|
new MessageEmbed() |
101 |
|
|
.setColor('#f14a60') |
102 |
|
|
.setDescription(`Option \`-d\` (days) requires an argument.`) |
103 |
|
|
] |
104 |
|
|
}); |
105 |
|
|
|
106 |
|
|
return; |
107 |
|
|
} |
108 |
|
|
|
109 |
|
|
if (!parseInt(days) || parseInt(days) < 0 || parseInt(days) > 7) { |
110 |
|
|
await msg.reply({ |
111 |
|
|
embeds: [ |
112 |
|
|
new MessageEmbed() |
113 |
|
|
.setColor('#f14a60') |
114 |
|
|
.setDescription(`Option \`-d\` (days) requires an argument which must be a valid number and in range of 0-7.`) |
115 |
|
|
] |
116 |
|
|
}); |
117 |
|
|
|
118 |
|
|
return; |
119 |
|
|
} |
120 |
|
|
|
121 |
|
|
banOptions.days = await parseInt(days); |
122 |
|
|
} |
123 |
|
|
} |
124 |
|
|
|
125 |
|
|
try { |
126 |
|
|
const member = await msg.guild?.members.fetch(user.id); |
127 |
|
|
|
128 |
|
|
if (member && !(await hasPermission(client, member, msg, null, "You don't have permission to ban this user."))) { |
129 |
|
|
return; |
130 |
|
|
} |
131 |
|
|
|
132 |
|
|
if (member && shouldNotModerate(client, member)) { |
133 |
|
|
await msg.reply({ |
134 |
|
|
embeds: [ |
135 |
|
|
new MessageEmbed() |
136 |
|
|
.setColor('#f14a60') |
137 |
|
|
.setDescription('Cannot ban this user: Operation not permitted') |
138 |
|
|
] |
139 |
|
|
}); |
140 |
|
|
|
141 |
|
|
return; |
142 |
|
|
} |
143 |
|
|
} |
144 |
|
|
catch (e) { |
145 |
|
|
console.log(e); |
146 |
|
|
} |
147 |
|
|
|
148 |
|
|
try { |
149 |
|
|
const id = Math.round(Math.random() * 10000); |
150 |
|
|
|
151 |
|
|
user.send({ |
152 |
|
|
embeds: [ |
153 |
|
|
new MessageEmbed({ |
154 |
|
|
author: { |
155 |
|
|
name: `You have been banned in ${msg.guild!.name}`, |
156 |
|
|
iconURL: msg.guild!.iconURL() ?? undefined |
157 |
|
|
}, |
158 |
|
|
color: 0xf14a60, |
159 |
|
|
description: generateInfractionDescription(client, msg.guildId!, 'ban_message') + "\n||This was just a joke. You were not banned.||", |
160 |
|
|
fields: [ |
161 |
|
|
{ |
162 |
|
|
name: 'Reason', |
163 |
|
|
value: banOptions.reason === undefined ? "*No reason provided*" : banOptions.reason |
164 |
|
|
}, |
165 |
|
|
{ |
166 |
|
|
name: 'Infraction ID', |
167 |
|
|
value: id + '' |
168 |
|
|
} |
169 |
|
|
] |
170 |
|
|
}) |
171 |
|
|
] |
172 |
|
|
}).catch(console.error); |
173 |
|
|
|
174 |
|
|
await msg.reply({ |
175 |
|
|
embeds: [ |
176 |
|
|
new MessageEmbed() |
177 |
|
|
.setAuthor({ |
178 |
|
|
name: user.tag, |
179 |
|
|
iconURL: user.displayAvatarURL(), |
180 |
|
|
}) |
181 |
|
|
.setDescription(user.tag + " has been banned from this server. || This is fake :joy: ||") |
182 |
|
|
.addFields([ |
183 |
|
|
{ |
184 |
|
|
name: "Banned by", |
185 |
|
|
value: (msg.member!.user as User).tag |
186 |
|
|
}, |
187 |
|
|
{ |
188 |
|
|
name: "Reason", |
189 |
|
|
value: banOptions.reason === undefined ? "*No reason provided*" : banOptions.reason |
190 |
|
|
}, |
191 |
|
|
{ |
192 |
|
|
name: "Days of message deletion", |
193 |
|
|
value: banOptions.days === undefined ? "*No message will be deleted*" : (banOptions.days + '') |
194 |
|
|
}, |
195 |
|
|
{ |
196 |
|
|
name: 'Infraction ID', |
197 |
|
|
value: id + '' |
198 |
|
|
} |
199 |
|
|
]) |
200 |
|
|
] |
201 |
|
|
}); |
202 |
|
|
} |
203 |
|
|
catch (e) { |
204 |
|
|
await msg.reply({ |
205 |
|
|
embeds: [ |
206 |
|
|
new MessageEmbed() |
207 |
|
|
.setColor('#f14a60') |
208 |
|
|
.setDescription("Failed to ban this user. Maybe missing permisions or I'm not allowed to ban this user?") |
209 |
|
|
] |
210 |
|
|
}); |
211 |
|
|
|
212 |
|
|
return; |
213 |
|
|
} |
214 |
|
|
} |
215 |
|
|
} |