1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2023 OSN Developers. |
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 { PermissionsBitField, SlashCommandBuilder, TextChannel, User } from "discord.js"; |
21 |
import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
import { logError } from "../../utils/logger"; |
23 |
import { isTextableChannel } from "../../utils/utils"; |
24 |
|
25 |
export default class LockCommand extends Command { |
26 |
public readonly name = "lock"; |
27 |
public readonly validationRules: ValidationRule[] = [ |
28 |
{ |
29 |
types: [ArgumentType.Channel], |
30 |
optional: true, |
31 |
name: "channel", |
32 |
typeErrorMessage: "Please provide a valid channel to lock!" |
33 |
} |
34 |
]; |
35 |
public readonly permissions = [PermissionsBitField.Flags.ManageChannels]; |
36 |
|
37 |
public readonly description = "Locks a channel."; |
38 |
public readonly detailedDescription = "This command locks down a channel. If no channel is given, the current channel will be locked."; |
39 |
public readonly argumentSyntaxes = ["[ChannelID|ChannelMention]"]; |
40 |
|
41 |
public readonly botRequiredPermissions = [PermissionsBitField.Flags.ManageChannels]; |
42 |
|
43 |
public readonly slashCommandBuilder = new SlashCommandBuilder() |
44 |
.addSubcommand(subcommand => subcommand.setName("server").setDescription("Lock the entire server")) |
45 |
.addSubcommand(subcommand => |
46 |
subcommand |
47 |
.setName("channel") |
48 |
.setDescription("Lock one single channel") |
49 |
.addChannelOption(option => |
50 |
option.setName("channel").setDescription("The channel that will be locked. Default is the current channel") |
51 |
) |
52 |
); |
53 |
|
54 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
55 |
if (!context.isLegacy && context.options.getSubcommand(true) === "server") { |
56 |
return await this.client.commands.get("lock__lockall")?.execute(message, context); |
57 |
} |
58 |
|
59 |
const channel: TextChannel = (context.isLegacy ? context.parsedNamedArgs.channel : context.options.getChannel("channel")) ?? message.channel!; |
60 |
|
61 |
if (!isTextableChannel(channel)) { |
62 |
await this.error(message, "Please provide a valid text channel to lock!"); |
63 |
return; |
64 |
} |
65 |
|
66 |
const result = await this.client.channelLockManager.lock(channel, message.member!.user as User); |
67 |
|
68 |
if (!result) await this.error(message, `Failed to lock this channel.`); |
69 |
else await this.deferredReply(message, `${this.emoji("check")} This channel has been locked.`).catch(logError); |
70 |
} |
71 |
} |