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