1 |
rakinar2 |
577 |
/** |
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, ArgumentType.String], |
30 |
|
|
optional: true, |
31 |
|
|
name: "channel", |
32 |
|
|
errors: { |
33 |
|
|
"type:invalid": "Please provide a valid channel to lock!" |
34 |
|
|
} |
35 |
|
|
} |
36 |
|
|
]; |
37 |
|
|
public readonly permissions = [PermissionsBitField.Flags.ManageChannels]; |
38 |
|
|
|
39 |
|
|
public readonly description = "Locks a channel."; |
40 |
|
|
public readonly detailedDescription = |
41 |
|
|
"This command locks down a channel. If no channel is given, the current channel will be locked."; |
42 |
|
|
public readonly argumentSyntaxes = ["[ChannelID|ChannelMention]"]; |
43 |
|
|
|
44 |
|
|
public readonly botRequiredPermissions = [PermissionsBitField.Flags.ManageChannels]; |
45 |
|
|
|
46 |
|
|
public readonly slashCommandBuilder = new SlashCommandBuilder() |
47 |
|
|
.addSubcommand(subcommand => subcommand.setName("server").setDescription("Lock the entire server")) |
48 |
|
|
.addSubcommand(subcommand => |
49 |
|
|
subcommand |
50 |
|
|
.setName("channel") |
51 |
|
|
.setDescription("Lock one single channel") |
52 |
|
|
.addChannelOption(option => |
53 |
|
|
option.setName("channel").setDescription("The channel that will be locked. Default is the current channel") |
54 |
|
|
) |
55 |
|
|
); |
56 |
|
|
|
57 |
|
|
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
58 |
|
|
if ( |
59 |
|
|
(!context.isLegacy && context.options.getSubcommand(true) === "server") || |
60 |
|
|
(context.isLegacy && context.parsedNamedArgs.channel === "server") |
61 |
|
|
) { |
62 |
|
|
return await this.client.commands.get("lock__lockall")?.execute(message, context); |
63 |
|
|
} |
64 |
|
|
|
65 |
|
|
if (context.isLegacy && typeof context.parsedNamedArgs.channel === "string") { |
66 |
|
|
await this.error(message, "Please provide a text channel to lock, or specify `server` to lock the entire server!"); |
67 |
|
|
return; |
68 |
|
|
} |
69 |
|
|
|
70 |
|
|
const channel: TextChannel = |
71 |
|
|
(context.isLegacy ? context.parsedNamedArgs.channel : context.options.getChannel("channel")) ?? message.channel!; |
72 |
|
|
|
73 |
|
|
if (!isTextableChannel(channel)) { |
74 |
|
|
await this.error(message, "Please provide a valid text channel to lock!"); |
75 |
|
|
return; |
76 |
|
|
} |
77 |
|
|
|
78 |
|
|
const result = await this.client.channelLockManager.lock(channel, message.member!.user as User); |
79 |
|
|
|
80 |
|
|
if (!result) await this.error(message, "Failed to lock this channel."); |
81 |
|
|
else await this.deferredReply(message, `${this.emoji("check")} This channel has been locked.`).catch(logError); |
82 |
|
|
} |
83 |
|
|
} |