mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 03:18:17 +00:00
22 lines
779 B
TypeScript
22 lines
779 B
TypeScript
import { eventHandlers } from "../../bot.ts";
|
|
import { cacheHandlers } from "../../cache.ts";
|
|
import type { DiscordGatewayPayload } from "../../types/gateway/gateway_payload.ts";
|
|
import type { MessageDelete } from "../../types/messages/message_delete.ts";
|
|
import { snowflakeToBigint } from "../../util/bigint.ts";
|
|
|
|
export async function handleMessageDelete(data: DiscordGatewayPayload) {
|
|
const payload = data.d as MessageDelete;
|
|
const channel = await cacheHandlers.get(
|
|
"channels",
|
|
snowflakeToBigint(payload.channelId)
|
|
);
|
|
if (!channel) return;
|
|
|
|
eventHandlers.messageDelete?.(
|
|
{ id: payload.id, channel },
|
|
await cacheHandlers.get("messages", snowflakeToBigint(payload.id))
|
|
);
|
|
|
|
await cacheHandlers.delete("messages", snowflakeToBigint(payload.id));
|
|
}
|