/[sudobot]/branches/6.x/src/commands/settings/BlockedFileCommand.ts
ViewVC logotype

Contents of /branches/6.x/src/commands/settings/BlockedFileCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 3037 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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 errors: {
33 required: `Please provide a subcommand! The valid commands are: \`${this.subcommands.join("`, `")}\``,
34 "type:invalid": "Please provide a valid subcommand!"
35 },
36 name: "subcommand"
37 }
38 ];
39
40 public readonly slashCommandBuilder = new SlashCommandBuilder().addSubcommand(subcommand =>
41 subcommand
42 .setName("add")
43 .setDescription("Adds a file hash to the blocklist")
44 .addAttachmentOption(option => option.setName("file").setDescription("The target file to block").setRequired(true))
45 );
46 // TODO
47 // .addSubcommand(subcommand =>
48 // subcommand
49 // .setName("view")
50 // .setDescription("Shows a poll/ballot")
51 // .addIntegerOption(option => option.setName("id").setDescription("The ballot ID").setRequired(true))
52 // )
53 // .addSubcommand(subcommand =>
54 // subcommand
55 // .setName("delete")
56 // .setDescription("Deletes a poll/ballot")
57 // .addIntegerOption(option => option.setName("id").setDescription("The ballot ID").setRequired(true))
58 // );
59
60 async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> {
61 const subcommand = context.isLegacy ? context.parsedNamedArgs.subcommand : context.options.getSubcommand(true);
62 const command = this.client.commands.get(`blockedfile__${subcommand}`);
63
64 if (!command) {
65 return;
66 }
67
68 if (context.isLegacy) context.args.shift();
69
70 return await command.execute(message, context);
71 }
72 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26