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 { SlashCommandBuilder } from "discord.js"; |
21 |
|
|
import Command, { |
22 |
|
|
ArgumentType, |
23 |
|
|
BasicCommandContext, |
24 |
|
|
CommandMessage, |
25 |
|
|
CommandReturn, |
26 |
|
|
RunCommandOptions, |
27 |
|
|
ValidationRule |
28 |
|
|
} from "../../core/Command"; |
29 |
|
|
|
30 |
|
|
export type AFKsCommandScope = "guild" | "everywhere" | "global"; |
31 |
|
|
|
32 |
|
|
export default class AFKsCommand extends Command { |
33 |
|
|
public readonly name = "afks"; |
34 |
|
|
public readonly subcommands = ["remove", "delete", "clear"]; |
35 |
|
|
public readonly subCommandCheck = true; |
36 |
|
|
public readonly validationRules: ValidationRule[] = [ |
37 |
|
|
{ |
38 |
|
|
types: [ArgumentType.String], |
39 |
|
|
errors: { |
40 |
|
|
required: `Please provide a valid subcommand! The valid commands are: \`${this.subcommands.join( |
41 |
|
|
"`, `" |
42 |
|
|
)}\``, |
43 |
|
|
"type:invalid": "Please provide a valid subcommand!" |
44 |
|
|
}, |
45 |
|
|
name: "subcommand" |
46 |
|
|
} |
47 |
|
|
]; |
48 |
|
|
public readonly permissions = []; |
49 |
|
|
public readonly description = "Manage AFK statuses of other members."; |
50 |
|
|
public readonly slashCommandBuilder = new SlashCommandBuilder() |
51 |
|
|
.addSubcommand(subcommand => |
52 |
|
|
subcommand |
53 |
|
|
.setName("remove") |
54 |
|
|
.setDescription("Removes AFK status for a user") |
55 |
|
|
.addUserOption(option => option.setName("user").setDescription("The user").setRequired(true)) |
56 |
|
|
.addStringOption(option => |
57 |
|
|
option.setName("scope").setDescription("Scope for this removal; defaults to Guild Scope").setChoices( |
58 |
|
|
{ |
59 |
|
|
name: "Guild-Scoped", |
60 |
|
|
value: "guild" |
61 |
|
|
}, |
62 |
|
|
{ |
63 |
|
|
name: "Global", |
64 |
|
|
value: "global" |
65 |
|
|
}, |
66 |
|
|
{ |
67 |
|
|
name: "Everywhere", |
68 |
|
|
value: "everywhere" |
69 |
|
|
} |
70 |
|
|
) |
71 |
|
|
) |
72 |
|
|
) |
73 |
|
|
.addSubcommand(subcommand => subcommand.setName("clear").setDescription("Removes AFK statuses for all users in a guild")); |
74 |
|
|
|
75 |
|
|
async execute(message: CommandMessage, context: BasicCommandContext, options: RunCommandOptions): Promise<CommandReturn> { |
76 |
|
|
const subcommand = context.isLegacy ? context.parsedNamedArgs.subcommand : context.options.getSubcommand(true); |
77 |
|
|
const command = this.client.commands.get(`afks__${subcommand}`); |
78 |
|
|
|
79 |
|
|
if (!command) { |
80 |
|
|
await this.error(message, this.validationRules[0].errors!.required!); |
81 |
|
|
return; |
82 |
|
|
} |
83 |
|
|
|
84 |
|
|
if (context.isLegacy) context.args.shift(); |
85 |
|
|
|
86 |
|
|
return await command.run({ |
87 |
|
|
...options, |
88 |
|
|
context |
89 |
|
|
}); |
90 |
|
|
} |
91 |
|
|
} |