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, SlashCommandSubcommandBuilder, escapeCodeBlock, escapeInlineCode } from "discord.js"; |
21 |
import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
|
23 |
const addOptions = (builder: SlashCommandSubcommandBuilder) => { |
24 |
return builder |
25 |
.addStringOption(option => option.setName("author_name").setDescription("The embed author name")) |
26 |
.addStringOption(option => option.setName("author_iconurl").setDescription("The embed author icon URL")) |
27 |
.addStringOption(option => option.setName("title").setDescription("The embed title")) |
28 |
.addStringOption(option => option.setName("description").setDescription("The embed description")) |
29 |
.addStringOption(option => option.setName("thumbnail").setDescription("The embed thumbnail URL")) |
30 |
.addStringOption(option => option.setName("image").setDescription("The embed image attachment URL")) |
31 |
.addStringOption(option => option.setName("video").setDescription("The embed video attachment URL")) |
32 |
.addStringOption(option => option.setName("footer_text").setDescription("The embed footer text")) |
33 |
.addStringOption(option => option.setName("footer_iconurl").setDescription("The embed footer icon URL")) |
34 |
.addStringOption(option => option.setName("timestamp").setDescription("The embed timestamp, use 'current' to set current date")) |
35 |
.addStringOption(option => option.setName("color").setDescription("The embed color (default is #007bff)")) |
36 |
.addStringOption(option => option.setName("url").setDescription("The embed URL")) |
37 |
.addStringOption(option => |
38 |
option.setName("fields").setDescription("The embed fields, should be in `Field 1: Value 1, Field 2: Value 2` format") |
39 |
); |
40 |
}; |
41 |
|
42 |
export default class EmbedCommand extends Command { |
43 |
public readonly subcommands = ["build", "schema", "send"]; |
44 |
public readonly name = "embed"; |
45 |
|
46 |
public readonly validationRules: ValidationRule[] = [ |
47 |
{ |
48 |
types: [ArgumentType.String], |
49 |
name: "subcommand", |
50 |
requiredErrorMessage: `Please provide a subcommand! The available subcommands are: \`${this.subcommands.join("`, `")}\`` |
51 |
}, |
52 |
{ |
53 |
types: [ArgumentType.StringRest], |
54 |
optional: true, |
55 |
name: "schema" |
56 |
} |
57 |
]; |
58 |
|
59 |
public readonly permissions = [PermissionsBitField.Flags.EmbedLinks, PermissionsBitField.Flags.ManageMessages]; |
60 |
|
61 |
public readonly description = "Create and build custom embeds/schemas."; |
62 |
|
63 |
public readonly slashCommandBuilder = new SlashCommandBuilder() |
64 |
.setName("embed") |
65 |
.setDescription("Make an embed") |
66 |
.addSubcommand(subcmd => addOptions(subcmd.setName("send").setDescription("Make and send an embed"))) |
67 |
.addSubcommand(subcmd => addOptions(subcmd.setName("schema").setDescription("Make and send an embed schema representation"))) |
68 |
.addSubcommand(subcmd => |
69 |
subcmd |
70 |
.setName("build") |
71 |
.setDescription("Build an embed from schema") |
72 |
.addStringOption(option => option.setName("json_schema").setDescription("The embed JSON schema")) |
73 |
); |
74 |
|
75 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
76 |
const subcommand: string = context.isLegacy ? context.parsedNamedArgs.subcommand : context.options.getSubcommand(true); |
77 |
|
78 |
if (!this.subcommands.includes(subcommand.toLowerCase())) { |
79 |
return { |
80 |
__reply: true, |
81 |
content: `\`${escapeInlineCode( |
82 |
escapeCodeBlock(subcommand) |
83 |
)}\` is not a valid subcommand! The available subcommands are: \`${this.subcommands.join("`, `")}\`` |
84 |
}; |
85 |
} |
86 |
|
87 |
await this.deferIfInteraction(message); |
88 |
|
89 |
const command = this.client.commands.get(`embed__${subcommand}`); |
90 |
|
91 |
if (command) { |
92 |
if (!command.supportsLegacy && context.isLegacy) { |
93 |
await this.error(message, `This command doesn't support legacy commands, please try the slash command.`); |
94 |
return; |
95 |
} |
96 |
|
97 |
await command.execute(message, context); |
98 |
} |
99 |
} |
100 |
} |