blob: 1957e807816846bb201705ee8dffda1491bf407b [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) {
pineafan0f5cc782022-08-12 21:55:42 +01008 const { getAuditLog, log, NucleusColors, entry, renderUser, renderDelta, renderChannel } = client.logger;
TheCodedProfa16d1672023-01-18 18:58:34 -05009 const auditLog = (await getAuditLog(thread.guild, AuditLogEvent.ThreadDelete))
10 .filter((entry: GuildAuditLogsEntry) => (entry.target as ThreadChannel)!.id === thread.id)[0] as GuildAuditLogsEntry;
11 if (auditLog.executor!.id === client.user!.id) return;
Skyler Greyf21323a2022-08-13 23:58:22 +010012 const category = thread.parent
13 ? entry(
14 thread.parent.parent ? thread.parent.parent.name : "None",
15 thread.parent.parent ? renderChannel(thread.parent.parent) : "None"
16 )
17 : entry(null, "Uncategorised");
pineafan63fc5e22022-08-04 22:04:10 +010018 const data = {
pineafane625d782022-05-09 18:04:32 +010019 meta: {
pineafan63fc5e22022-08-04 22:04:10 +010020 type: "channelDelete",
21 displayName: "Thread Deleted",
22 calculateType: "channelUpdate",
pineafane625d782022-05-09 18:04:32 +010023 color: NucleusColors.red,
24 emoji: "CHANNEL.TEXT.DELETE",
25 timestamp: new Date().getTime()
26 },
27 list: {
Skyler Grey75ea9172022-08-06 10:22:23 +010028 threadId: entry(thread.id, `\`${thread.id}\``),
pineafane625d782022-05-09 18:04:32 +010029 name: entry(thread.name, thread.name),
pineafan0f5cc782022-08-12 21:55:42 +010030 parentChannel: entry(thread.parentId, thread.parent ? renderChannel(thread.parent) : "*None*"),
31 category: category,
Skyler Grey75ea9172022-08-06 10:22:23 +010032 autoArchiveDuration: entry(
33 thread.autoArchiveDuration,
pineafan0f5cc782022-08-12 21:55:42 +010034 humanizeDuration((thread.autoArchiveDuration ?? 0) * 60 * 1000, {
Skyler Grey75ea9172022-08-06 10:22:23 +010035 round: true
36 })
37 ),
TheCodedProfa16d1672023-01-18 18:58:34 -050038 membersInThread: entry(thread.memberCount, thread.memberCount!.toString()),
39 deletedBy: entry(auditLog.executor!.id, renderUser(auditLog.executor!)),
40 created: entry(thread.createdTimestamp, renderDelta(thread.createdTimestamp!)),
Skyler Grey11236ba2022-08-08 21:13:33 +010041 deleted: entry(new Date().getTime(), renderDelta(new Date().getTime()))
pineafane625d782022-05-09 18:04:32 +010042 },
43 hidden: {
44 guild: thread.guild.id
45 }
pineafan63fc5e22022-08-04 22:04:10 +010046 };
pineafan4edb7762022-06-26 19:21:04 +010047 log(data);
pineafane625d782022-05-09 18:04:32 +010048}