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 } from "discord.js"; |
21 |
import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
|
23 |
export default class BlockedFileCommand extends Command { |
24 |
public readonly name = "blockedfile"; |
25 |
public readonly aliases = ["blockedfiles"]; |
26 |
public readonly permissions = [PermissionsBitField.Flags.ManageGuild]; |
27 |
public readonly subcommands = ["add", "remove", "view"]; |
28 |
public readonly description = "Manage blocked files"; |
29 |
public readonly validationRules: ValidationRule[] = [ |
30 |
{ |
31 |
types: [ArgumentType.String], |
32 |
requiredErrorMessage: `Please provide a subcommand! The valid commands are: \`${this.subcommands.join("`, `")}\``, |
33 |
typeErrorMessage: "Please provide a valid subcommand!", |
34 |
name: "subcommand" |
35 |
} |
36 |
]; |
37 |
|
38 |
public readonly slashCommandBuilder = new SlashCommandBuilder().addSubcommand(subcommand => |
39 |
subcommand |
40 |
.setName("add") |
41 |
.setDescription("Adds a file hash to the blocklist") |
42 |
.addAttachmentOption(option => option.setName("file").setDescription("The target file to block").setRequired(true)) |
43 |
); |
44 |
// .addSubcommand(subcommand => |
45 |
// subcommand |
46 |
// .setName("view") |
47 |
// .setDescription("Shows a poll/ballot") |
48 |
// .addIntegerOption(option => option.setName("id").setDescription("The ballot ID").setRequired(true)) |
49 |
// ) |
50 |
// .addSubcommand(subcommand => |
51 |
// subcommand |
52 |
// .setName("delete") |
53 |
// .setDescription("Deletes a poll/ballot") |
54 |
// .addIntegerOption(option => option.setName("id").setDescription("The ballot ID").setRequired(true)) |
55 |
// ); |
56 |
|
57 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
58 |
const subcommand = context.isLegacy ? context.parsedNamedArgs.subcommand : context.options.getSubcommand(true); |
59 |
const command = this.client.commands.get(`blockedfile__${subcommand}`); |
60 |
|
61 |
if (!command) { |
62 |
return; |
63 |
} |
64 |
|
65 |
if (context.isLegacy) context.args.shift(); |
66 |
|
67 |
return await command.execute(message, context); |
68 |
} |
69 |
} |