TravBot-v3/src/commands/system/help.ts

78 lines
3.3 KiB
TypeScript
Raw Normal View History

import {Command, NamedCommand, CHANNEL_TYPE, getPermissionName, getCommandList, getCommandInfo} from "../../core";
import {requireAllCasesHandledFor} from "../../lib";
export default new NamedCommand({
2020-12-15 07:56:09 +00:00
description: "Lists all commands. If a command is specified, their arguments are listed as well.",
2020-12-15 01:44:28 +00:00
usage: "([command, [subcommand/type], ...])",
aliases: ["h"],
async run({message, channel, guild, author, member, client, args}) {
const commands = await getCommandList();
2020-12-15 01:44:28 +00:00
let output = `Legend: \`<type>\`, \`[list/of/stuff]\`, \`(optional)\`, \`(<optional type>)\`, \`([optional/list/...])\``;
2020-10-15 09:23:24 +00:00
for (const [category, commandList] of commands) {
output += `\n\n===[ ${category} ]===`;
for (const command of commandList) output += `\n- \`${command.name}\`: ${command.description}`;
2020-10-15 09:23:24 +00:00
}
channel.send(output, {split: true});
2020-12-15 01:44:28 +00:00
},
any: new Command({
async run({message, channel, guild, author, member, client, args}) {
const [result, category] = await getCommandInfo(args);
if (typeof result === "string") return channel.send(result);
2020-12-15 01:44:28 +00:00
let append = "";
const command = result.command;
const header = result.args.length > 0 ? `${result.header} ${result.args.join(" ")}` : result.header;
if (command.usage === "") {
2020-12-15 01:44:28 +00:00
const list: string[] = [];
for (const [tag, subcommand] of result.keyedSubcommandInfo) {
const customUsage = subcommand.usage ? ` ${subcommand.usage}` : "";
list.push(`- \`${header} ${tag}${customUsage}\` - ${subcommand.description}`);
}
2020-12-15 01:44:28 +00:00
for (const [type, subcommand] of result.subcommandInfo) {
const customUsage = subcommand.usage ? ` ${subcommand.usage}` : "";
list.push(`- \`${header} ${type}${customUsage}\` - ${subcommand.description}`);
}
2020-12-15 01:44:28 +00:00
2020-12-15 07:56:09 +00:00
append = "Usages:" + (list.length > 0 ? `\n${list.join("\n")}` : " None.");
} else {
append = `Usage: \`${header} ${command.usage}\``;
}
let aliases = "N/A";
2020-12-15 01:44:28 +00:00
if (command instanceof NamedCommand) {
const formattedAliases: string[] = [];
for (const alias of command.aliases) formattedAliases.push(`\`${alias}\``);
// Short circuit an empty string, in this case, if there are no aliases.
aliases = formattedAliases.join(", ") || "None";
}
2020-12-15 01:44:28 +00:00
return channel.send(
`Command: \`${header}\`\nAliases: ${aliases}\nCategory: \`${category}\`\nPermission Required: \`${getPermissionName(
result.permission
)}\` (${result.permission})\nChannel Type: ${getChannelTypeName(result.channelType)}\nNSFW Only: ${
result.nsfw ? "Yes" : "No"
}\nDescription: ${command.description}\n${append}`,
2020-12-15 01:44:28 +00:00
{split: true}
2020-10-15 09:23:24 +00:00
);
}
2020-12-15 01:44:28 +00:00
})
2020-10-15 09:23:24 +00:00
});
function getChannelTypeName(type: CHANNEL_TYPE): string {
switch (type) {
case CHANNEL_TYPE.ANY:
return "Any";
case CHANNEL_TYPE.GUILD:
return "Guild Only";
case CHANNEL_TYPE.DM:
return "DM Only";
default:
requireAllCasesHandledFor(type);
}
}