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 { AttachmentPayload, Channel, GuildChannel, Message, PermissionsBitField, SlashCommandBuilder } from "discord.js"; |
21 |
import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
import { isTextableChannel } from "../../utils/utils"; |
23 |
|
24 |
export default class EchoCommand extends Command { |
25 |
public readonly name = "echo"; |
26 |
public readonly validationRules: ValidationRule[] = [ |
27 |
{ |
28 |
types: [ArgumentType.Channel, ArgumentType.StringRest], |
29 |
name: "channelOrContent", |
30 |
entityNotNull: true, |
31 |
entityNotNullErrorMessage: "This channel does not exist!", |
32 |
requiredErrorMessage: "Please provide the message content!" |
33 |
}, |
34 |
{ |
35 |
types: [ArgumentType.StringRest], |
36 |
name: "content", |
37 |
requiredErrorMessage: "Please provide the message content!", |
38 |
optional: true |
39 |
} |
40 |
]; |
41 |
public readonly permissions = [PermissionsBitField.Flags.ManageMessages]; |
42 |
public readonly aliases = ["e", "say"]; |
43 |
|
44 |
public readonly description = "Make the bot say something."; |
45 |
public readonly slashCommandBuilder = new SlashCommandBuilder() |
46 |
.addStringOption(option => option.setName("content").setDescription("Message content").setRequired(true)) |
47 |
.addChannelOption(option => option.setName("channel").setDescription("The channel where the message will be sent")); |
48 |
|
49 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
50 |
await this.deferIfInteraction(message, { |
51 |
ephemeral: true |
52 |
}); |
53 |
|
54 |
const channel = |
55 |
(!context.isLegacy |
56 |
? context.options.getChannel("channel") |
57 |
: context.parsedNamedArgs.channelOrContent && typeof context.parsedNamedArgs.channelOrContent === "object" |
58 |
? context.parsedNamedArgs.channelOrContent |
59 |
: undefined) ?? message.channel; |
60 |
|
61 |
if (channel instanceof GuildChannel && !isTextableChannel(channel as Channel)) { |
62 |
await this.error(message, "Please provide a text channel!"); |
63 |
return; |
64 |
} |
65 |
|
66 |
const content: string | undefined = |
67 |
(!context.isLegacy |
68 |
? context.options.getString("content", true) |
69 |
: typeof context.parsedNamedArgs.channelOrContent === "string" |
70 |
? context.parsedNamedArgs.channelOrContent |
71 |
: context.parsedNamedArgs.content) ?? undefined; |
72 |
|
73 |
if (!content && message instanceof Message && message.attachments.size === 0) { |
74 |
await this.error(message, "Please provide the message content or attachments!"); |
75 |
return; |
76 |
} |
77 |
|
78 |
await channel?.send({ |
79 |
content, |
80 |
files: |
81 |
message instanceof Message |
82 |
? message.attachments.map( |
83 |
a => |
84 |
({ |
85 |
attachment: a.proxyURL, |
86 |
name: a.name, |
87 |
description: a.description |
88 |
} as AttachmentPayload) |
89 |
) |
90 |
: undefined |
91 |
}); |
92 |
|
93 |
if (message instanceof Message) { |
94 |
await message.react(this.emoji("check")); |
95 |
} else { |
96 |
await this.deferredReply(message, `Message sent.`); |
97 |
} |
98 |
} |
99 |
} |