blob: ef7246d264973b8dc808542d480fd8fcf0a87796 [file] [log] [blame]
pineafane625d782022-05-09 18:04:32 +01001import humanizeDuration from 'humanize-duration';
2export const event = 'threadCreate'
3
4export async function callback(client, thread) {
5 try {
6 const { getAuditLog, log, NucleusColors, entry, renderUser, renderDelta, renderChannel } = thread.client.logger
7 let auditLog = await getAuditLog(thread.guild, 'THREAD_CREATE');
pineafane23c4ec2022-07-27 21:56:27 +01008 let audit = auditLog.entries.filter(entry => entry.target.id === thread.id).first();
9 if (audit.executor.id === client.user.id) return;
pineafane625d782022-05-09 18:04:32 +010010 let data = {
11 meta: {
12 type: 'channelCreate',
13 displayName: 'Thread Created',
14 calculateType: 'channelUpdate',
15 color: NucleusColors.green,
16 emoji: "CHANNEL.TEXT.CREATE",
17 timestamp: thread.createdTimestamp
18 },
19 list: {
pineafanda6e5342022-07-03 10:03:16 +010020 threadId:entry(thread.id, `\`${thread.id}\``),
pineafane625d782022-05-09 18:04:32 +010021 name: entry(thread.name, renderChannel(thread)),
22 parentChannel: entry(thread.parentId, renderChannel(thread.parent)),
23 category: entry(thread.parent.parent ? thread.parent.parent.name : 'None', thread.parent.parent ? renderChannel(thread.parent.parent) : 'None'),
24 autoArchiveDuration: entry(thread.autoArchiveDuration, humanizeDuration(thread.autoArchiveDuration * 60 * 1000, { round: true })),
25 createdBy: entry(audit.executor.id, renderUser(audit.executor)),
26 created: entry(thread.createdTimestamp, renderDelta(thread.createdTimestamp))
27 },
28 hidden: {
29 guild: thread.guild.id
30 }
31 }
pineafan4edb7762022-06-26 19:21:04 +010032 log(data);
pineafane625d782022-05-09 18:04:32 +010033 } catch {}
34}