Files
discordeno/transformers/webhook.ts
LTS20050703 8d4c0069b0 (transformers) return as Optionalize<typeof> (#2117)
* (transformers) return as Optionalize<typeof>

* fix check error

Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
2022-03-20 10:35:48 -04:00

38 lines
1.6 KiB
TypeScript

import { Bot } from "../bot.ts";
import { DiscordWebhook } from "../types/discord.ts";
import { Optionalize } from "../types/shared.ts";
export function transformWebhook(bot: Bot, payload: DiscordWebhook) {
const webhook = {
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,
};
return webhook as Optionalize<typeof webhook>;
}
export interface Webhook extends ReturnType<typeof transformWebhook> {}