You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/event/listeners/log/channelUpdate.js

58 lines
1.8 KiB
JavaScript

const { Listener } = require('discord-akairo');
const LogStats = require('../../../models/').LogStats;
class channelUpdateListener extends Listener {
constructor() {
super('channelUpdate', {
emitter: 'client',
event: 'channelUpdate'
});
}
async exec(oldChannel, newChannel) {
const logStats = await LogStats.findOne({where: {guild: newChannel.guild.id}});
if (oldChannel === newChannel || oldChannel.rawPosition !== newChannel.rawPosition) return;
if (logStats) {
const fetchedLogs = await newChannel.guild.fetchAuditLogs({
limit: 1,
type: 'CHANNEL_UPDATE',
});
const updateLog = fetchedLogs.entries.first();
const channel = this.client.channels.resolve(await logStats.get('channel'));
let Embed = this.client.util.embed()
.setColor('NAVY')
.setDescription(`**${newChannel} channel updated!**`)
.setTimestamp();
if (oldChannel.name !== newChannel.name) {
Embed.addField('Previous channel', oldChannel.name, true)
.addField('New channel', newChannel.name, true);
}
if (oldChannel.topic !== newChannel.topic) {
Embed.addField('Previous channel topic', oldChannel.topic, true)
.addField('New channel topic', newChannel.topic, true);
}
if (oldChannel.nsfw !== newChannel.nsfw) {
Embed.addField('Previous channel nsfw', oldChannel.nsfw, true)
.addField('New channel nsfw', newChannel.nsfw, true);
}
if (oldChannel.rateLimitPerUser !== newChannel.rateLimitPerUser) {
Embed.addField('Previous channel slowmode', `${oldChannel.rateLimitPerUser} seconds`, true)
.addField('New channel slowmode', `${newChannel.rateLimitPerUser} seconds`, true);
}
if (!updateLog) return channel.send(Embed);
Embed.setDescription(`**${newChannel} channel updated by ${updateLog.executor}**`);
channel.send(Embed);
}
}
}
module.exports = channelUpdateListener;