blob: 568af0b33a6d3eefae92763bdd392c64c559162d [file] [log] [blame]
pineafan32767212022-03-14 21:27:39 +00001import humanizeDuration from 'humanize-duration';
pineafan32767212022-03-14 21:27:39 +00002import getEmojiByName from '../utils/getEmojiByName.js';
3
4export const event = 'channelUpdate';
5
6export async function callback(client, oc, nc) {
pineafane625d782022-05-09 18:04:32 +01007 try {
8 let config = await client.memory.readGuildInfo(nc.guild.id);
9 const { getAuditLog, log, NucleusColors, entry, renderDelta, renderUser, renderChannel } = client.logger
pineafan32767212022-03-14 21:27:39 +000010
pineafane23c4ec2022-07-27 21:56:27 +010011 if (nc.parent && (nc.parent.id === config.tickets.category)) return
pineafan32767212022-03-14 21:27:39 +000012
pineafane625d782022-05-09 18:04:32 +010013 let auditLog = await getAuditLog(nc.guild, 'CHANNEL_UPDATE');
pineafane23c4ec2022-07-27 21:56:27 +010014 let audit = auditLog.entries.filter(entry => entry.target.id === nc.id).first();
15 if (audit.executor.id === client.user.id) return;
pineafan32767212022-03-14 21:27:39 +000016
pineafane625d782022-05-09 18:04:32 +010017 let emoji:string;
18 let readableType:string;
19 let displayName:string ;
20 let changes = {
pineafanda6e5342022-07-03 10:03:16 +010021 channelId: entry(nc.id, `\`${nc.id}\``),
pineafane625d782022-05-09 18:04:32 +010022 channel: entry(nc.id, renderChannel(nc)),
23 edited: entry(new Date().getTime(), renderDelta(new Date().getTime())),
24 editedBy: entry(audit.executor.id, renderUser((await nc.guild.members.fetch(audit.executor.id)).user)),
25 }
pineafane23c4ec2022-07-27 21:56:27 +010026 if (oc.name !== nc.name) changes["name"] = entry([oc.name, nc.name], `${oc.name} -> ${nc.name}`);
27 if (oc.position !== nc.position) changes["position"] = entry([oc.position, nc.position], `${oc.position} -> ${nc.position}`);
pineafan32767212022-03-14 21:27:39 +000028
pineafane625d782022-05-09 18:04:32 +010029 switch (nc.type) {
30 case 'GUILD_TEXT': {
31 emoji = "CHANNEL.TEXT.EDIT";
32 readableType = "Text";
33 displayName = "Text Channel"
34 let oldTopic = oc.topic, newTopic = nc.topic;
35 if (oldTopic) {
36 if (oldTopic.length > 256) oldTopic = `\`\`\`\n${oldTopic.replace('`', "'").substring(0, 253) + '...'}\n\`\`\``
37 else oldTopic = `\`\`\`\n${oldTopic.replace('`', "'")}\n\`\`\``
38 } else { oldTopic = "None"; }
39 if (newTopic) {
40 if (newTopic.length > 256) newTopic = `\`\`\`\n${newTopic.replace('`', "'").substring(0, 253) + '...'}\n\`\`\``
41 else newTopic = `\`\`\`\n${newTopic.replace('`', "'")}\n\`\`\``
42 } else { newTopic = "None"; }
43 let nsfw = ["", ""]
44 nsfw[0] = oc.nsfw ? `${getEmojiByName("CONTROL.TICK")} Yes` : `${getEmojiByName("CONTROL.CROSS")} No`;
45 nsfw[1] = nc.nsfw ? `${getEmojiByName("CONTROL.TICK")} Yes` : `${getEmojiByName("CONTROL.CROSS")} No`;
pineafane23c4ec2022-07-27 21:56:27 +010046 if (oc.topic !== nc.topic) changes["description"] = entry([oc.topic, nc.topic], `\nBefore: ${oldTopic}\nAfter: ${newTopic}`);
47 if (oc.nsfw !== nc.nsfw) changes["nsfw"] = entry([oc.nsfw, nc.nsfw], `${nsfw[0]} -> ${nsfw[1]}`);
48 if (oc.rateLimitPerUser !== nc.rateLimitPerUser) changes["rateLimitPerUser"] = entry(
pineafane625d782022-05-09 18:04:32 +010049 [oc.rateLimitPerUser, nc.rateLimitPerUser],
50 `${humanizeDuration(oc.rateLimitPerUser * 1000)} -> ${humanizeDuration(nc.rateLimitPerUser * 1000)}`
51 );
52
53 break;
54 }
55 case 'GUILD_NEWS': {
56 emoji = "CHANNEL.TEXT.EDIT";
57 readableType = "News";
58 displayName = "News Channel"
59 let oldTopic = oc.topic, newTopic = nc.topic;
60 if (oldTopic) {
61 if (oldTopic.length > 256) oldTopic = `\`\`\`\n${oldTopic.replace('`', "'").substring(0, 253) + '...'}\n\`\`\``
62 else oldTopic = `\`\`\`\n${oldTopic.replace('`', "'")}\n\`\`\``
63 } else { oldTopic = "None"; }
64 if (newTopic) {
65 if (newTopic.length > 256) newTopic = `\`\`\`\n${newTopic.replace('`', "'").substring(0, 253) + '...'}\n\`\`\``
66 else newTopic = `\`\`\`\n${newTopic.replace('`', "'")}\n\`\`\``
67 } else { newTopic = "None"; }
pineafane23c4ec2022-07-27 21:56:27 +010068 if (oc.nsfw !== nc.nsfw) changes["nsfw"] = entry([oc.nsfw, nc.nsfw], `${oc.nsfw ? "On" : "Off"} -> ${nc.nsfw ? "On" : "Off"}`);
pineafane625d782022-05-09 18:04:32 +010069 break;
70 }
71 case 'GUILD_VOICE': {
72 emoji = "CHANNEL.VOICE.EDIT";
73 readableType = "Voice";
74 displayName = "Voice Channel"
pineafane23c4ec2022-07-27 21:56:27 +010075 if (oc.bitrate !== nc.bitrate) changes["bitrate"] = entry([oc.bitrate, nc.bitrate], `${oc.bitrate} -> ${nc.bitrate}`);
76 if (oc.userLimit !== nc.userLimit) changes["maxUsers"] = entry([oc.userLimit, nc.userLimit], `${oc.userLimit ? oc.userLimit : "Unlimited"} -> ${nc.userLimit}`);
77 if (oc.rtcRegion !== nc.rtcRegion) changes["region"] = entry(
pineafane625d782022-05-09 18:04:32 +010078 [oc.rtcRegion, nc.rtcRegion],
79 `${oc.rtcRegion || "Automatic"} -> ${nc.rtcRegion || "Automatic"}`
80 );
81 break;
82 }
83 case 'GUILD_STAGE': {
84 emoji = "CHANNEL.VOICE.EDIT";
85 readableType = "Stage";
86 displayName = "Stage Channel"
87 let oldTopic = oc.topic, newTopic = nc.topic;
88 if (oldTopic) {
89 if (oldTopic.length > 256) oldTopic = `\`\`\`\n${oldTopic.replace('`', "'").substring(0, 253) + '...'}\n\`\`\``
90 else oldTopic = `\`\`\`\n${oldTopic.replace('`', "'")}\n\`\`\``
91 } else { oldTopic = "None"; }
92 if (newTopic) {
93 if (newTopic.length > 256) newTopic = `\`\`\`\n${newTopic.replace('`', "'").substring(0, 253) + '...'}\n\`\`\``
94 else newTopic = `\`\`\`\n${newTopic.replace('`', "'")}\n\`\`\``
95 } else { newTopic = "None"; }
pineafane23c4ec2022-07-27 21:56:27 +010096 if (oc.bitrate !== nc.bitrate) changes["bitrate"] = entry([oc.bitrate, nc.bitrate], `${oc.bitrate} -> ${nc.bitrate}`);
97 if (oc.userLimit !== nc.userLimit) changes["maxUsers"] = entry([oc.userLimit, nc.userLimit], `${oc.userLimit ? oc.userLimit : "Unlimited"} -> ${nc.userLimit}`);
98 if (oc.rtcRegion !== nc.rtcRegion) changes["region"] = entry(
pineafane625d782022-05-09 18:04:32 +010099 [oc.rtcRegion, nc.rtcRegion],
100 `${oc.rtcRegion || "Automatic"} -> ${nc.rtcRegion || "Automatic"}`
101 );
102 break;
103 }
104 case 'GUILD_CATEGORY': {
105 emoji = "CHANNEL.CATEGORY.EDIT";
106 readableType = "Category";
107 displayName = "Category"
108 break;
109 }
110 default: {
111 emoji = "CHANNEL.TEXT.EDIT";
112 readableType = "Channel";
113 displayName = "Channel"
114 }
115 }
116 let t = oc.type.split("_")[1];
pineafane23c4ec2022-07-27 21:56:27 +0100117 if (oc.type !== nc.type) changes["type"] = entry([oc.type, nc.type], `${t[0] + t.splice(1).toLowerCase()} -> ${readableType}`);
pineafane625d782022-05-09 18:04:32 +0100118 if (!(Object.values(changes).length - 4)) return
119 let data = {
120 meta:{
121 type: 'channelUpdate',
122 displayName: displayName + ' Edited',
123 calculateType: 'channelUpdate',
124 color: NucleusColors.yellow,
125 emoji: emoji,
126 timestamp: audit.createdTimestamp
127 },
128 list: changes,
129 hidden: {
130 guild: nc.guild.id
131 }
132 }
pineafan4edb7762022-06-26 19:21:04 +0100133 log(data);
pineafane625d782022-05-09 18:04:32 +0100134 } catch {}
pineafan32767212022-03-14 21:27:39 +0000135}