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, Message, User, Permissions } 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 Punishment from '../../models/Punishment'; |
28 |
import PunishmentType from '../../types/PunishmentType'; |
29 |
|
30 |
export default class UnbanCommand extends BaseCommand { |
31 |
supportsInteractions: boolean = true; |
32 |
permissions = [Permissions.FLAGS.BAN_MEMBERS]; |
33 |
|
34 |
constructor() { |
35 |
super('unban', 'moderation', []); |
36 |
} |
37 |
|
38 |
async run(client: DiscordClient, msg: Message | CommandInteraction, 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: User; |
52 |
|
53 |
if (options.isInteraction) { |
54 |
user = await <User> options.options.getUser('user'); |
55 |
|
56 |
if (!user) { |
57 |
await msg.reply({ |
58 |
embeds: [ |
59 |
new MessageEmbed() |
60 |
.setColor('#f14a60') |
61 |
.setDescription("Invalid user given.") |
62 |
] |
63 |
}); |
64 |
|
65 |
return; |
66 |
} |
67 |
} |
68 |
else { |
69 |
try { |
70 |
const user2 = await getUser(client, (msg as Message), options); |
71 |
|
72 |
if (!user2) { |
73 |
throw new Error('Invalid user'); |
74 |
} |
75 |
|
76 |
user = user2; |
77 |
} |
78 |
catch (e) { |
79 |
await msg.reply({ |
80 |
embeds: [ |
81 |
new MessageEmbed() |
82 |
.setColor('#f14a60') |
83 |
.setDescription(`Invalid user given.`) |
84 |
] |
85 |
}); |
86 |
|
87 |
return; |
88 |
} |
89 |
|
90 |
console.log(user); |
91 |
} |
92 |
|
93 |
try { |
94 |
await msg.guild?.bans.remove(user); |
95 |
|
96 |
await Punishment.create({ |
97 |
type: PunishmentType.UNBAN, |
98 |
user_id: user.id, |
99 |
guild_id: msg.guild!.id, |
100 |
mod_id: msg.member!.user.id, |
101 |
mod_tag: (msg.member!.user as User).tag, |
102 |
createdAt: new Date() |
103 |
}); |
104 |
} |
105 |
catch (e) { |
106 |
console.log(e); |
107 |
} |
108 |
|
109 |
await msg.reply({ |
110 |
embeds: [ |
111 |
new MessageEmbed() |
112 |
.setAuthor({ |
113 |
name: user.tag, |
114 |
iconURL: user.displayAvatarURL(), |
115 |
}) |
116 |
.setDescription(user.tag + " has been unbanned.") |
117 |
.addFields([ |
118 |
{ |
119 |
name: "Unbanned by", |
120 |
value: (msg.member!.user as User).tag |
121 |
}, |
122 |
]) |
123 |
] |
124 |
}); |
125 |
} |
126 |
} |