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 QueueCommand extends Command { |
24 |
public readonly subcommands = ["add", "cancel", "list", "show"]; |
25 |
public readonly name = "queue"; |
26 |
public readonly validationRules: ValidationRule[] = [ |
27 |
{ |
28 |
types: [ArgumentType.String], |
29 |
requiredErrorMessage: `Please provide a subcommand! The valid commands are: \`${this.subcommands.join( |
30 |
"`, `" |
31 |
)}\`, \`remove\`, \`view\``, |
32 |
typeErrorMessage: "Please provide a valid subcommand!", |
33 |
name: "subcommand" |
34 |
} |
35 |
]; |
36 |
public readonly permissions = [PermissionsBitField.Flags.ManageMessages]; |
37 |
public readonly description = "Manage the queued jobs"; |
38 |
public readonly since = "5.57.0"; |
39 |
public readonly slashCommandBuilder = new SlashCommandBuilder() |
40 |
.addSubcommand(subcommand => |
41 |
subcommand |
42 |
.setName("add") |
43 |
.setDescription("Creates a new command queue") |
44 |
.addStringOption(option => |
45 |
option |
46 |
.setName("run_after") |
47 |
.setDescription("Specify after how much time the queued job will run") |
48 |
.setRequired(true) |
49 |
) |
50 |
.addStringOption(option => |
51 |
option |
52 |
.setName("command") |
53 |
.setDescription("Specify what command to run (include everything just without the prefix)") |
54 |
.setRequired(true) |
55 |
) |
56 |
) |
57 |
.addSubcommand(subcommand => |
58 |
subcommand |
59 |
.setName("cancel") |
60 |
.setDescription("Cancels a previously added queue") |
61 |
.addIntegerOption(option => option.setName("id").setDescription("The queue ID").setRequired(true)) |
62 |
) |
63 |
.addSubcommand(subcommand => |
64 |
subcommand |
65 |
.setName("show") |
66 |
.setDescription("Shows information about a previously added queue") |
67 |
.addIntegerOption(option => option.setName("id").setDescription("The queue ID").setRequired(true)) |
68 |
) |
69 |
.addSubcommand(subcommand => subcommand.setName("list").setDescription("List all queued jobs")); |
70 |
|
71 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
72 |
const subcommand = context.isLegacy ? context.parsedNamedArgs.subcommand : context.options.getSubcommand(true); |
73 |
const command = this.client.commands.get(`queue__${subcommand}`); |
74 |
|
75 |
if (!command) { |
76 |
return; |
77 |
} |
78 |
|
79 |
if (context.isLegacy) context.args.shift(); |
80 |
|
81 |
return await command.execute(message, context); |
82 |
} |
83 |
} |