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 { Collection, CommandInteraction, Message, Role, TextChannel, User } from 'discord.js'; |
21 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
22 |
import CommandOptions from '../../types/CommandOptions'; |
23 |
import InteractionOptions from '../../types/InteractionOptions'; |
24 |
import DiscordClient from '../../client/Client'; |
25 |
import MessageEmbed from '../../client/MessageEmbed'; |
26 |
|
27 |
export async function lockAll(client: DiscordClient, role: Role, channels: Collection <string, TextChannel> | TextChannel[], user: User, send: boolean = true, reason?: string) { |
28 |
if (role) { |
29 |
// const gen = await channels.first()!.guild.roles.fetch(client.config.props[channels.first()!.guild.id].gen_role); |
30 |
|
31 |
try { |
32 |
return await client.channelLock.lockAll(channels instanceof Collection ? [...channels.values()] : channels, user, { |
33 |
role, |
34 |
sendConfirmation: send, |
35 |
reason |
36 |
}); |
37 |
} |
38 |
catch (e) { |
39 |
console.log(e); |
40 |
} |
41 |
} |
42 |
} |
43 |
|
44 |
export default class LockallCommand extends BaseCommand { |
45 |
supportsInteractions: boolean = true; |
46 |
|
47 |
constructor() { |
48 |
super('lockall', 'moderation', []); |
49 |
} |
50 |
|
51 |
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
52 |
if (!options.isInteraction && typeof options.args[0] === 'undefined') { |
53 |
await msg.reply({ |
54 |
embeds: [ |
55 |
new MessageEmbed() |
56 |
.setColor('#f14a60') |
57 |
.setDescription(`This command requires at least one argument.`) |
58 |
] |
59 |
}); |
60 |
|
61 |
return; |
62 |
} |
63 |
|
64 |
if (msg instanceof CommandInteraction) { |
65 |
await msg.deferReply({ ephemeral: true }); |
66 |
} |
67 |
|
68 |
const raid = options.isInteraction ? options.options.getBoolean('raid') === true : (options.options.indexOf('--raid') !== -1); |
69 |
|
70 |
let role: Role = <Role> msg.guild!.roles.everyone; |
71 |
let lockall: string[] = [], lockallChannels: TextChannel[] = []; |
72 |
let reason: string | undefined; |
73 |
// const force = options.isInteraction ? options.options.getBoolean('force') === true : (options.options.indexOf('--force') !== -1); |
74 |
|
75 |
if (options.isInteraction) { |
76 |
if (options.options.getString('channels')) |
77 |
lockall = options.options.getString('channels')!.split(' ').filter(a => /^\d+$/gi.test(a) || a.startsWith('<#')); |
78 |
|
79 |
if (options.options.getRole('role')) { |
80 |
role = await <Role> options.options.getRole('role'); |
81 |
} |
82 |
|
83 |
if (options.options.getString('reason')) { |
84 |
reason = await <string> options.options.getString('reason'); |
85 |
} |
86 |
} |
87 |
else { |
88 |
if ((msg as Message).mentions.roles.first()) { |
89 |
role = await <Role> (msg as Message).mentions.roles.first(); |
90 |
} |
91 |
|
92 |
if (!role) { |
93 |
await msg.reply({ |
94 |
embeds: [ |
95 |
new MessageEmbed() |
96 |
.setColor('#f14a60') |
97 |
.setDescription(`Invalid role given.`) |
98 |
], |
99 |
ephemeral: true |
100 |
}); |
101 |
|
102 |
return; |
103 |
} |
104 |
|
105 |
if (!raid) { |
106 |
lockall = options.normalArgs.filter(a => /^\d+$/gi.test(a) || a.startsWith('<#')); |
107 |
} |
108 |
else { |
109 |
if (msg.guild!.channels.cache.size < 2) { |
110 |
await msg.guild?.channels.fetch(); |
111 |
} |
112 |
|
113 |
const raidChannels = client.config.get('raid').channels; |
114 |
|
115 |
if (client.config.get('raid').exclude) { |
116 |
lockall = []; |
117 |
|
118 |
for await (const [id, { parent, type }] of msg.guild!.channels.cache) { |
119 |
if (type === 'GUILD_CATEGORY') |
120 |
continue; |
121 |
|
122 |
if ((raidChannels.includes(id) || raidChannels.includes(parent?.id))) { |
123 |
continue; |
124 |
} |
125 |
|
126 |
lockall.push(id); |
127 |
} |
128 |
} |
129 |
else { |
130 |
// for await (const [id, { parent, type }] of msg.guild!.channels.cache) { |
131 |
// if (type === 'GUILD_CATEGORY') |
132 |
// continue; |
133 |
|
134 |
// if ((!raidChannels.includes(id) && !raidChannels.includes(parent?.id))) { |
135 |
// continue; |
136 |
// } |
137 |
|
138 |
// lockall.push(id); |
139 |
// } |
140 |
|
141 |
lockall = raidChannels; |
142 |
} |
143 |
|
144 |
console.log("Raid", lockall); |
145 |
console.log("Raid 1", client.config.get('raid').channels); |
146 |
} |
147 |
} |
148 |
|
149 |
if (lockall.length === 0 && !raid) { |
150 |
await this.deferReply(msg, { |
151 |
content: "No channel specified!" |
152 |
}); |
153 |
|
154 |
return; |
155 |
} |
156 |
|
157 |
if (msg.guild!.channels.cache.size < 2) { |
158 |
await msg.guild?.channels.fetch(); |
159 |
} |
160 |
|
161 |
for await (const c of lockall) { |
162 |
console.log(c); |
163 |
const id = c.startsWith('<#') ? c.substring(2, c.length - 1) : c; |
164 |
|
165 |
if (lockallChannels.find(c => c.id === id)) |
166 |
continue; |
167 |
|
168 |
const channel = msg.guild?.channels.cache.get(id); |
169 |
|
170 |
if (!channel) { |
171 |
continue; |
172 |
} |
173 |
|
174 |
if (!channel.isText()) { |
175 |
lockallChannels = [...lockallChannels, ...(msg.guild?.channels.cache.filter(c => c.parent?.id === id) as Collection<string, TextChannel>).values()!]; |
176 |
continue; |
177 |
} |
178 |
|
179 |
lockallChannels.push(channel as TextChannel); |
180 |
} |
181 |
|
182 |
console.log("Array: ", lockallChannels, lockall); |
183 |
|
184 |
const [success, failure] = (await lockAll(client, role, lockallChannels, msg.member!.user as User, true, reason))!; |
185 |
|
186 |
if (options.isInteraction) { |
187 |
await this.deferReply(msg, { |
188 |
content: "Locked " + lockallChannels.length + " channel(s)." + (failure > 0 ? ` ${success} successful locks and ${failure} failed locks.` : '') |
189 |
}); |
190 |
} |
191 |
else { |
192 |
await (msg as Message).react('🔒'); |
193 |
} |
194 |
} |
195 |
} |