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, Permissions, Role, TextChannel } 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 |
|
27 |
export default class UnlockCommand extends BaseCommand { |
28 |
supportsInteractions: boolean = true; |
29 |
permissions = [Permissions.FLAGS.MANAGE_CHANNELS]; |
30 |
|
31 |
constructor() { |
32 |
super('unlock', 'moderation', []); |
33 |
} |
34 |
|
35 |
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
36 |
let channel: TextChannel = <TextChannel> msg.channel; |
37 |
let role: Role = <Role> msg.guild!.roles.everyone; |
38 |
|
39 |
if (msg instanceof CommandInteraction) |
40 |
await msg.deferReply({ ephemeral: true }); |
41 |
|
42 |
const force = options.isInteraction ? options.options.getBoolean('force') === true : (options.options.indexOf('--force') !== -1); |
43 |
|
44 |
if (options.isInteraction) { |
45 |
if (options.options.getChannel('channel')) { |
46 |
channel = await <TextChannel> options.options.getChannel('channel'); |
47 |
} |
48 |
|
49 |
if (options.options.getRole('role')) { |
50 |
role = await <Role> options.options.getRole('role'); |
51 |
} |
52 |
} |
53 |
else { |
54 |
if ((msg as Message).mentions.roles.first()) { |
55 |
role = await <Role> (msg as Message).mentions.roles.first(); |
56 |
} |
57 |
else if (options.normalArgs[0] && options.normalArgs[0] !== 'everyone') { |
58 |
role = <Role> await (msg as Message).guild?.roles.fetch(options.normalArgs[0]); |
59 |
} |
60 |
|
61 |
if ((msg as Message).mentions.channels.first()) { |
62 |
channel = await <TextChannel> (msg as Message).mentions.channels.first(); |
63 |
} |
64 |
else if (options.normalArgs[1]) { |
65 |
channel = <TextChannel> await (msg as Message).guild?.channels.fetch(options.normalArgs[1]); |
66 |
} |
67 |
|
68 |
if (!role) { |
69 |
await msg.reply({ |
70 |
embeds: [ |
71 |
new MessageEmbed() |
72 |
.setColor('#f14a60') |
73 |
.setDescription(`Invalid role given.`) |
74 |
], |
75 |
ephemeral: true |
76 |
}); |
77 |
|
78 |
return; |
79 |
} |
80 |
|
81 |
if (!channel || channel.type !== 'GUILD_TEXT') { |
82 |
await msg.reply({ |
83 |
embeds: [ |
84 |
new MessageEmbed() |
85 |
.setColor('#f14a60') |
86 |
.setDescription(`Invalid text channel given.`) |
87 |
], |
88 |
ephemeral: true |
89 |
}); |
90 |
|
91 |
return; |
92 |
} |
93 |
} |
94 |
|
95 |
try { |
96 |
const result = await client.channelLock.unlock(channel, { sendConfirmation: true, force }); |
97 |
let error = null; |
98 |
|
99 |
if (!result) { |
100 |
error = 'This channel wasn\'t locked' + (role.id === msg.guild!.id ? '' : ' for the given role') + '. If you want to force unlock, run this command with `--force` option or select `True` if using slash commands.'; |
101 |
} |
102 |
|
103 |
if (error) { |
104 |
await this.deferReply(msg, { |
105 |
content: error, |
106 |
}); |
107 |
|
108 |
return; |
109 |
} |
110 |
|
111 |
if (options.isInteraction) { |
112 |
await this.deferReply(msg, { |
113 |
content: "Channel unlocked.", |
114 |
}); |
115 |
} |
116 |
else { |
117 |
await (msg as Message).react('🔓'); |
118 |
} |
119 |
} |
120 |
catch (e) { |
121 |
console.log(e); |
122 |
|
123 |
await msg.reply({ |
124 |
embeds: [ |
125 |
new MessageEmbed() |
126 |
.setColor('#f14a60') |
127 |
.setDescription(`Failed to unlock channel. Maybe missing permissions?`) |
128 |
], |
129 |
ephemeral: true |
130 |
}); |
131 |
|
132 |
return; |
133 |
} |
134 |
} |
135 |
} |