Files
selmerBot/commands/log.js
T

47 lines
1.8 KiB
JavaScript
Raw Normal View History

2022-07-09 20:30:31 +03:00
const { MongoClient, ServerApiVersion } = require('mongodb');
const Discord = require('discord.js');
const SEVCODES = {
none: 0,
low: 1,
medium: 2,
high: 3
}
const col_list = {0: '0ed300', 1: 'f6ff00', 2: 'ffa100', 3: 'FF0000'}
/**
*
* @param {*} bot
* @param {*} message the message the mod sent (AKA a DISCORD MESSAGE OBJECT)
*/
function log(bot, message, command, mentioned, reason, severity) {
const client = new MongoClient(bot.mongouri, { useNewUrlParser: true, useUnifiedTopology: true, serverApi: ServerApiVersion.v1 });
client.connect(err => {
if (err) { return console.log(err); }
client.db(message.guild.id).collection('SETUP').findOne({_id: 'LOG'}).then((doc) => {
if (!doc) { return message.channel.send("Server logs not set up yet!"); }
const channel = message.guild.channels.cache.get(doc.logchannel);
//Check severity threshold
if (SEVCODES[doc.severity] < severity) { return; }
let action;
if (command.endsWith('e')) { action = (command + 'd'); }
else if (command.endsWith('n')) { action = (command + 'ned'); }
else { action = (command + 'ed'); }
const newEmbed = new Discord.MessageEmbed()
.setColor(col_list[severity])
.setTitle(`User ${mentioned.username}#${mentioned.discriminator} has been ${action}`)
//.setURL('https://discordjs.guide/popular-topics/embeds.html#embed-preview')
.setDescription(`Reason: ${reason}\n Responsible Mod: ${message.author.username}#${message.author.discriminator}`)
.setThumbnail(mentioned.displayAvatarURL())
.setTimestamp();
channel.send({ embeds: [newEmbed] });
});
});
}
module.exports = { log, SEVCODES }