const { Listener } = require('discord-akairo'); const LogStats = require('../../../models/').LogStats; class channelCreateListener extends Listener { constructor() { super('channelCreate', { emitter: 'client', event: 'channelCreate' }); } async exec(GuildChannel) { const logStats = await LogStats.findOne({where: {guild: GuildChannel.guild.id}}); if (logStats) { const fetchedLogs = await GuildChannel.guild.fetchAuditLogs({ limit: 1, type: 'CHANNEL_CREATE', }); const creationLog = fetchedLogs.entries.first(); const channel = this.client.channels.resolve(await logStats.get('channel')); let Embed = this.client.util.embed() .setColor('NAVY') .setTitle('Channel created!') .setDescription(`${GuildChannel.type} channel ${GuildChannel} got created!`) .setFooter(`Channel ID: ${GuildChannel.id}`) .setTimestamp(); if (!creationLog) return channel.send(Embed); Embed.setDescription(`${GuildChannel.type} channel ${GuildChannel} got created by ${creationLog.executor}`); channel.send(Embed); } } } module.exports = channelCreateListener;