blob: fba6592c25273f3a426e71d2f8aafb57bc4696d1 [file] [log] [blame]
TheCodedProfa16d1672023-01-18 18:58:34 -05001import { AuditLogEvent, GuildAuditLogsEntry, ThreadChannel } from "discord.js";
pineafan0f5cc782022-08-12 21:55:42 +01002// @ts-expect-error
pineafan63fc5e22022-08-04 22:04:10 +01003import humanizeDuration from "humanize-duration";
PineaFan752af462022-12-31 21:59:38 +00004import type { NucleusClient } from "../utils/client.js";
pineafan63fc5e22022-08-04 22:04:10 +01005export const event = "threadDelete";
pineafane625d782022-05-09 18:04:32 +01006
PineaFan752af462022-12-31 21:59:38 +00007export async function callback(client: NucleusClient, thread: ThreadChannel) {
TheCodedProf6ec331b2023-02-20 12:13:06 -05008 const { getAuditLog, isLogging, log, NucleusColors, entry, renderUser, renderDelta, renderChannel } = client.logger;
Skyler Greyda16adf2023-03-05 10:22:12 +00009 if (!(await isLogging(thread.guild.id, "channelUpdate"))) return;
10 const auditLog = (await getAuditLog(thread.guild, AuditLogEvent.ThreadDelete)).filter(
11 (entry: GuildAuditLogsEntry) => (entry.target as ThreadChannel)!.id === thread.id
12 )[0]!;
TheCodedProfa16d1672023-01-18 18:58:34 -050013 if (auditLog.executor!.id === client.user!.id) return;
Skyler Greyf21323a2022-08-13 23:58:22 +010014 const category = thread.parent
15 ? entry(
16 thread.parent.parent ? thread.parent.parent.name : "None",
17 thread.parent.parent ? renderChannel(thread.parent.parent) : "None"
18 )
19 : entry(null, "Uncategorised");
pineafan63fc5e22022-08-04 22:04:10 +010020 const data = {
pineafane625d782022-05-09 18:04:32 +010021 meta: {
pineafan63fc5e22022-08-04 22:04:10 +010022 type: "channelDelete",
23 displayName: "Thread Deleted",
24 calculateType: "channelUpdate",
pineafane625d782022-05-09 18:04:32 +010025 color: NucleusColors.red,
26 emoji: "CHANNEL.TEXT.DELETE",
TheCodedProf6ec331b2023-02-20 12:13:06 -050027 timestamp: Date.now()
pineafane625d782022-05-09 18:04:32 +010028 },
29 list: {
Skyler Grey75ea9172022-08-06 10:22:23 +010030 threadId: entry(thread.id, `\`${thread.id}\``),
pineafane625d782022-05-09 18:04:32 +010031 name: entry(thread.name, thread.name),
pineafan0f5cc782022-08-12 21:55:42 +010032 parentChannel: entry(thread.parentId, thread.parent ? renderChannel(thread.parent) : "*None*"),
33 category: category,
Skyler Grey75ea9172022-08-06 10:22:23 +010034 autoArchiveDuration: entry(
35 thread.autoArchiveDuration,
pineafan0f5cc782022-08-12 21:55:42 +010036 humanizeDuration((thread.autoArchiveDuration ?? 0) * 60 * 1000, {
Skyler Grey75ea9172022-08-06 10:22:23 +010037 round: true
38 })
39 ),
TheCodedProfa16d1672023-01-18 18:58:34 -050040 membersInThread: entry(thread.memberCount, thread.memberCount!.toString()),
41 deletedBy: entry(auditLog.executor!.id, renderUser(auditLog.executor!)),
42 created: entry(thread.createdTimestamp, renderDelta(thread.createdTimestamp!)),
TheCodedProf6ec331b2023-02-20 12:13:06 -050043 deleted: entry(Date.now(), renderDelta(Date.now()))
pineafane625d782022-05-09 18:04:32 +010044 },
45 hidden: {
46 guild: thread.guild.id
47 }
pineafan63fc5e22022-08-04 22:04:10 +010048 };
Skyler Greyf4f21c42023-03-08 14:36:29 +000049 await log(data);
pineafane625d782022-05-09 18:04:32 +010050}