mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-31 07:50:07 +00:00
* fix: check new types idea * fix: type errors * fix: new style * fix: more cleanup * fix: more cleanup * fix: cleanup audit logs * fix: cleanup stickers * fix: cleanup integrations * fix: more cleanup * fix: organize into 1 place * fix: few errors * fix: some broken import fixes * fix: quite a lot of fixes across the board * fix: more fixes for broken imports * fix: more fixes for broken imports * fix: handler imports * fix: all remaining import errors * fix: more errors needing fixes * fix: clearing up transformers * fix: few moer types * fix: more cleanup of extra types * fix: fmt * fix: cleanup discordeno file * Nuke Base Types (#2102) * fix: cleanup snake stuff * convert camelCase to snake_case (#2103) * fix: add camelize * fix: finalize remaining errors * fix: imports in test Co-authored-by: LTS20050703 <87189679+lts20050703@users.noreply.github.com>
35 lines
1.5 KiB
TypeScript
35 lines
1.5 KiB
TypeScript
import { Bot } from "../bot.ts";
|
|
import { DiscordWebhook } from "../types/discord.ts";
|
|
|
|
export function transformWebhook(bot: Bot, payload: DiscordWebhook) {
|
|
return {
|
|
id: bot.transformers.snowflake(payload.id),
|
|
type: payload.type,
|
|
guildId: payload.guild_id ? bot.transformers.snowflake(payload.guild_id) : undefined,
|
|
channelId: payload.channel_id ? bot.transformers.snowflake(payload.channel_id) : undefined,
|
|
user: payload.user ? bot.transformers.user(bot, payload.user) : undefined,
|
|
name: payload.name || "",
|
|
avatar: payload.avatar ? bot.utils.iconHashToBigInt(payload.avatar) : undefined,
|
|
token: payload.token,
|
|
applicationId: payload.application_id ? bot.transformers.snowflake(payload.application_id) : undefined,
|
|
sourceGuild: payload.source_guild
|
|
? {
|
|
id: bot.transformers.snowflake(payload.source_guild.id!),
|
|
name: payload.source_guild.name!,
|
|
icon: payload.source_guild.icon ? bot.utils.iconHashToBigInt(payload.source_guild.icon) : undefined,
|
|
}
|
|
: undefined,
|
|
/** The channel that this webhook is following (returned for Channel Follower Webhooks) */
|
|
sourceChannel: payload.source_channel
|
|
? {
|
|
id: bot.transformers.snowflake(payload.source_channel.id!),
|
|
name: payload.source_channel.name || "",
|
|
}
|
|
: undefined,
|
|
/** The url used for executing the webhook (returned by the webhooks OAuth2 flow) */
|
|
url: payload.url,
|
|
};
|
|
}
|
|
|
|
export interface Webhook extends ReturnType<typeof transformWebhook> {}
|