mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 00:40:07 +00:00
112 lines
4.4 KiB
TypeScript
112 lines
4.4 KiB
TypeScript
import type { Bot } from "../../bot.ts";
|
|
import { Attachment } from "../../transformers/attachment.ts";
|
|
import { Embed } from "../../transformers/embed.ts";
|
|
import { DiscordMessage } from "../../types/discord.ts";
|
|
import { AllowedMentions, FileContent, MessageComponents } from "../../types/discordeno.ts";
|
|
import { MessageComponentTypes } from "../../types/shared.ts";
|
|
|
|
/** Edit the message. */
|
|
export async function editMessage(bot: Bot, channelId: bigint, messageId: bigint, content: EditMessage) {
|
|
const result = await bot.rest.runMethod<DiscordMessage>(
|
|
bot.rest,
|
|
"patch",
|
|
bot.constants.endpoints.CHANNEL_MESSAGE(channelId, messageId),
|
|
{
|
|
content: content.content,
|
|
embeds: content.embeds?.map((embed) => bot.transformers.reverse.embed(bot, embed)),
|
|
allowed_mentions: {
|
|
parse: content.allowedMentions?.parse,
|
|
roles: content.allowedMentions?.roles?.map((id) => id.toString()),
|
|
users: content.allowedMentions?.users?.map((id) => id.toString()),
|
|
replied_user: content.allowedMentions?.repliedUser,
|
|
},
|
|
attachments: content.attachments?.map((attachment) => ({
|
|
id: attachment.id.toString(),
|
|
filename: attachment.filename,
|
|
content_type: attachment.contentType,
|
|
size: attachment.size,
|
|
url: attachment.url,
|
|
proxy_url: attachment.proxyUrl,
|
|
height: attachment.height,
|
|
width: attachment.width,
|
|
})),
|
|
file: content.file,
|
|
components: content.components?.map((component) => ({
|
|
type: component.type,
|
|
components: component.components.map((subcomponent) => {
|
|
if (subcomponent.type === MessageComponentTypes.InputText) {
|
|
return {
|
|
type: subcomponent.type,
|
|
style: subcomponent.style,
|
|
custom_id: subcomponent.customId,
|
|
label: subcomponent.label,
|
|
placeholder: subcomponent.placeholder,
|
|
min_length: subcomponent.minLength ?? subcomponent.required === false ? 0 : subcomponent.minLength,
|
|
max_length: subcomponent.maxLength,
|
|
};
|
|
}
|
|
|
|
if (subcomponent.type === MessageComponentTypes.SelectMenu) {
|
|
return {
|
|
type: subcomponent.type,
|
|
custom_id: subcomponent.customId,
|
|
placeholder: subcomponent.placeholder,
|
|
min_values: subcomponent.minValues,
|
|
max_values: subcomponent.maxValues,
|
|
options: subcomponent.options.map((option) => ({
|
|
label: option.label,
|
|
value: option.value,
|
|
description: option.description,
|
|
emoji: option.emoji
|
|
? {
|
|
id: option.emoji.id?.toString(),
|
|
name: option.emoji.name,
|
|
animated: option.emoji.animated,
|
|
}
|
|
: undefined,
|
|
default: option.default,
|
|
})),
|
|
};
|
|
}
|
|
|
|
return {
|
|
type: subcomponent.type,
|
|
custom_id: subcomponent.customId,
|
|
label: subcomponent.label,
|
|
style: subcomponent.style,
|
|
emoji: "emoji" in subcomponent && subcomponent.emoji
|
|
? {
|
|
id: subcomponent.emoji.id?.toString(),
|
|
name: subcomponent.emoji.name,
|
|
animated: subcomponent.emoji.animated,
|
|
}
|
|
: undefined,
|
|
url: "url" in subcomponent ? subcomponent.url : undefined,
|
|
disabled: "disabled" in subcomponent ? subcomponent.disabled : undefined,
|
|
};
|
|
}),
|
|
})),
|
|
},
|
|
);
|
|
|
|
return bot.transformers.message(bot, result);
|
|
}
|
|
|
|
/** https://discord.com/developers/docs/resources/channel#edit-message-json-params */
|
|
export interface EditMessage {
|
|
/** The new message contents (up to 2000 characters) */
|
|
content?: string | null;
|
|
/** Embedded `rich` content (up to 6000 characters) */
|
|
embeds?: Embed[] | null;
|
|
/** Edit the flags of the message (only `SUPRESS_EMBEDS` can currently be set/unset) */
|
|
flags?: 4 | null;
|
|
/** The contents of the file being sent/edited */
|
|
file?: FileContent | FileContent[] | null;
|
|
/** Allowed mentions for the message */
|
|
allowedMentions?: AllowedMentions;
|
|
/** When specified (adding new attachments), attachments which are not provided in this list will be removed. */
|
|
attachments?: Attachment[];
|
|
/** The components you would like to have sent in this message */
|
|
components?: MessageComponents;
|
|
}
|