mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 16:30:08 +00:00
37 lines
1.6 KiB
TypeScript
37 lines
1.6 KiB
TypeScript
import type { Bot } from "../../bot.ts";
|
|
import { DiscordInviteMetadata } from "../../types/discord.ts";
|
|
|
|
/** Returns an invite for the given code or throws an error if the invite doesn't exists. */
|
|
export async function getInvite(bot: Bot, inviteCode: string, options?: GetInvite) {
|
|
const result = await bot.rest.runMethod<DiscordInviteMetadata>(
|
|
bot.rest,
|
|
"GET",
|
|
bot.constants.routes.INVITE(inviteCode, options),
|
|
);
|
|
|
|
return {
|
|
code: result.code,
|
|
guildId: result.guild?.id ? bot.transformers.snowflake(result.guild.id) : undefined,
|
|
channelId: result.channel?.id ? bot.transformers.snowflake(result.channel.id) : undefined,
|
|
inviter: result.inviter ? bot.transformers.user(bot, result.inviter) : undefined,
|
|
targetType: result.target_type,
|
|
targetUser: result.target_user ? bot.transformers.user(bot, result.target_user) : undefined,
|
|
targetApplicationId: result.target_application?.id
|
|
? bot.transformers.snowflake(result.target_application.id)
|
|
: undefined,
|
|
approximatePresenceCount: result.approximate_presence_count,
|
|
approximateMemberCount: result.approximate_member_count,
|
|
expiresAt: result.expires_at ? Date.parse(result.expires_at) : undefined,
|
|
};
|
|
}
|
|
|
|
/** https://discord.com/developers/docs/resources/invite#get-invite */
|
|
export interface GetInvite {
|
|
/** Whether the invite should contain approximate member counts */
|
|
withCounts?: boolean;
|
|
/** Whether the invite should contain the expiration date */
|
|
withExpiration?: boolean;
|
|
/** the guild scheduled event to include with the invite */
|
|
scheduledEventId?: bigint;
|
|
}
|