Merge pull request #65 from CaptV0rt3x/fix

Minor fixes to logging
This commit is contained in:
Flame Sage 2019-08-16 12:08:47 -04:00 committed by GitHub
commit dfdd048d39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 18 deletions

View File

@ -35,9 +35,9 @@ function findArray (haystack, arr) {
});
}
function IsIgnoredChannel (channelName) {
const IgnoredChannels = ['welcome', 'announcements', 'media'];
return IgnoredChannels.includes(channelName);
function IsIgnoredCategory (categoryName) {
const IgnoredCategory = ['welcome', 'team', 'website-team'];
return IgnoredCategory.includes(categoryName);
}
client.on('ready', () => {
@ -72,7 +72,7 @@ client.on('guildMemberAdd', (member) => {
});
client.on('messageDelete', message => {
if (IsIgnoredChannel(message.channel.name) == false) {
if (IsIgnoredCategory(message.channel.parent.name) == false) {
if (message.content && message.content.startsWith('.') == false && message.author.bot == false) {
const deletionEmbed = new discord.RichEmbed()
.setAuthor(message.author.tag, message.author.displayAvatarURL)
@ -88,11 +88,12 @@ client.on('messageDelete', message => {
});
client.on('messageUpdate', (oldMessage, newMessage) => {
if (IsIgnoredChannel(oldMessage.channel.name) == false) {
const AllowedRoles = ['Administrators', 'Moderators', 'Team', 'VIP'];
if (!findArray(oldMessage.member.roles.map(function (x) { return x.name; }), AllowedRoles)) {
if (IsIgnoredCategory(oldMessage.channel.parent.name) == false) {
const oldM = oldMessage.cleanContent;
const newM = newMessage.cleanContent;
if (oldM && newM) {
if (oldMessage.content != newMessage.content && oldM && newM) {
const editedEmbed = new discord.RichEmbed()
.setAuthor(oldMessage.author.tag, oldMessage.author.displayAvatarURL)
.setDescription(`Message edited in ${oldMessage.channel} [Jump To Message](${newMessage.url})`)
@ -105,6 +106,7 @@ client.on('messageUpdate', (oldMessage, newMessage) => {
logger.info(`${oldMessage.author.username} ${oldMessage.author} edited message from: ${oldM} to: ${newM}.`);
}
}
}
});
client.on('message', message => {