mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 08:50:07 +00:00
* Simplify SfetchMembers (#2339) Co-authored-by: meister03 * Create leaveVoiceChannel.ts (#2342) * Update editFollowupMessage.ts (#2344) * Update editInteractionResponse.ts (#2343) * Update editMessage.ts (#2341) * Update calculateShardId.ts Fix wrong shardId calculations * Add Role Icon to Edit (#2346) Co-authored-by: meister03 * Add mix max length (#2347) Co-authored-by: meister03 * style: deno fmt * Fix Disabled Options (#2368) Co-authored-by: meister03 <meisterpi@gmail.com> * Add app_permissions (#2369) Co-authored-by: meister03 <meisterpi@gmail.com> * thread_id instead of threadId (#2378) Co-authored-by: Veeti K <veeti@veetik.com> * feat: Create `ApplicationCommandFlags` enumerator. (#2384) Co-authored-by: vxern <vxern@wordcollector.co.uk> * Small Changes in a bulk pr to close the issues (#2370) * Initial Commit * Close #2364 * Add preset whitelist to automod #2356 -> Resolve Issue * Close [api-docs] AutoMod message intent updates (#5083) #2330 * Breaking Channge | [api-docs] Update message type names (#5093) * message.interaction.name changed attitude | [api-docs] Update Change_Log.md #2333 * #2333 also closes #2316 * Clarify 45 chars length | Add those on permission plugins | [api-docs] text input label has max 45 characters (#4689) #2137 * Clarify webhook naming restrictions (#4625) #2094 * 8th August Webhook new View Channel perm | Closes #2363 * 8th August Webhook new View Channel perm | Closes #2363 * Document thread_name for execute webhook (#5007) #2263 * Close Update create and modify channel documentation (#4867) #2237 * unnecesary nullable tag in Modify Guild Member params (#5164) #2355 * deno fmt * deno fmt * Use .includefor disallowed webhook names" * Add Missing Enums & #2367, #2362, #2361, #2371, #2372. #2349, #2358, #2325 back * deno fmt :( Co-authored-by: meister03 <meisterpi@gmail.com> Co-authored-by: LTS20050703 <87189679+lts20050703@users.noreply.github.com> Co-authored-by: Tomato6966 <chris.pre03@gmail.com> Co-authored-by: ITOH <to@itoh.at> Co-authored-by: meister03 <meisterpi@gmail.com> Co-authored-by: Veeti K <veeti@veetik.com> Co-authored-by: vxern <vxern@wordcollector.co.uk> Co-authored-by: LTS20050703 <87189679+lts20050703@users.noreply.github.com>
117 lines
4.3 KiB
TypeScript
117 lines
4.3 KiB
TypeScript
import type { Bot } from "../../bot.ts";
|
|
import { Embed } from "../../mod.ts";
|
|
import { DiscordMessage } from "../../types/discord.ts";
|
|
import { AllowedMentions, FileContent, MessageComponents } from "../../types/discordeno.ts";
|
|
import { InteractionResponseTypes } from "../../types/shared.ts";
|
|
|
|
/**
|
|
* Send a response to a users application command. The command data will have the id and token necessary to respond.
|
|
* Interaction `tokens` are valid for **15 minutes** and can be used to send followup messages.
|
|
*
|
|
* NOTE: By default we will suppress mentions. To enable mentions, just pass any mentions object.
|
|
*/
|
|
export async function sendInteractionResponse(
|
|
bot: Bot,
|
|
id: bigint,
|
|
token: string,
|
|
options: InteractionResponse,
|
|
) {
|
|
// If no mentions are provided, force disable mentions
|
|
if (!options.data?.allowedMentions) {
|
|
options.data = { ...options.data, allowedMentions: { parse: [] } };
|
|
}
|
|
|
|
// DRY code a little bit
|
|
const data = {
|
|
tts: options.data.tts,
|
|
title: options.data.title,
|
|
flags: options.data.flags,
|
|
content: options.data.content,
|
|
choices: options.data.choices,
|
|
custom_id: options.data.customId,
|
|
embeds: options.data.embeds?.map((embed) => bot.transformers.reverse.embed(bot, embed)),
|
|
allowed_mentions: bot.transformers.reverse.allowedMentions(bot, options.data.allowedMentions!),
|
|
components: options.data.components?.map((component) => bot.transformers.reverse.component(bot, component)),
|
|
};
|
|
|
|
// A reply has never been send
|
|
if (bot.cache.unrepliedInteractions.delete(id)) {
|
|
return await bot.rest.sendRequest<undefined>(bot.rest, {
|
|
url: bot.constants.routes.INTERACTION_ID_TOKEN(id, token),
|
|
method: "POST",
|
|
payload: bot.rest.createRequestBody(bot.rest, {
|
|
method: "POST",
|
|
body: { type: options.type, data, file: options.data.file },
|
|
headers: {
|
|
// remove authorization header
|
|
Authorization: "",
|
|
},
|
|
}),
|
|
});
|
|
}
|
|
|
|
// If its already been executed, we need to send a followup response
|
|
const result = await bot.rest.sendRequest<DiscordMessage>(bot.rest, {
|
|
url: bot.constants.routes.WEBHOOK(bot.applicationId, token),
|
|
method: "POST",
|
|
payload: bot.rest.createRequestBody(bot.rest, {
|
|
method: "POST",
|
|
body: { ...data, file: options.data.file },
|
|
headers: {
|
|
// remove authorization header
|
|
Authorization: "",
|
|
},
|
|
}),
|
|
});
|
|
|
|
return bot.transformers.message(bot, result);
|
|
}
|
|
|
|
/** https://discord.com/developers/docs/interactions/slash-commands#interaction-response */
|
|
export interface InteractionResponse {
|
|
/** The type of response */
|
|
type: InteractionResponseTypes;
|
|
/** An optional response message */
|
|
data?: InteractionApplicationCommandCallbackData;
|
|
}
|
|
|
|
/** https://discord.com/developers/docs/interactions/slash-commands#interaction-response-interactionapplicationcommandcallbackdata */
|
|
export interface InteractionApplicationCommandCallbackData {
|
|
/** The message contents (up to 2000 characters) */
|
|
content?: string;
|
|
/** True if this is a TTS message */
|
|
tts?: boolean;
|
|
/** Embedded `rich` content (up to 6000 characters) */
|
|
embeds?: Embed[];
|
|
/** Allowed mentions for the message */
|
|
allowedMentions?: AllowedMentions;
|
|
/** The contents of the file being sent */
|
|
file?: FileContent | FileContent[];
|
|
/** The customId you want to use for this modal response. */
|
|
customId?: string;
|
|
/** The title you want to use for this modal response. */
|
|
title?: string;
|
|
/** The components you would like to have sent in this message */
|
|
components?: MessageComponents;
|
|
/** Message flags combined as a bit field (only SUPPRESS_EMBEDS and EPHEMERAL can be set) */
|
|
flags?: number;
|
|
/** Autocomplete choices (max of 25 choices) */
|
|
choices?: ApplicationCommandOptionChoice[];
|
|
}
|
|
|
|
/* https://discord.com/developers/docs/resources/channel#message-object-message-flags */
|
|
export enum ApplicationCommandFlags {
|
|
/* Do not include any embeds when serialising this message */
|
|
SuppressEmbeds = 1 << 2,
|
|
/** Only visible to the user who invoked the interaction */
|
|
Ephemeral = 1 << 6,
|
|
}
|
|
|
|
/** https://discord.com/developers/docs/interactions/slash-commands#applicationcommandoptionchoice */
|
|
export interface ApplicationCommandOptionChoice {
|
|
/** 1-100 character choice name */
|
|
name: string;
|
|
/** Value of the choice, up to 100 characters if string */
|
|
value: string | number;
|
|
}
|