You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Natsuki/commands/eval.js

35 lines
1.7 KiB

4 years ago
const Discord = require('discord.js');
const chalk = require('chalk');
4 years ago
module.exports = {
name: 'eval',
aliases: ['ev', ':', 'e'],
4 years ago
help: "Evaluates raw JavaScript code. *This is a __developer-only__ command.* Usage: `{{p}}eval <code>`",
execute(message, msg, args, cmd, prefix, mention, client) {
try {
if (!client.developers.includes(message.author.id)) return;
if (!args.length) return message.channel.send(`Syntax: \`${prefix}eval <code>\``);
const result = new Promise((resolve) => resolve(eval(args.join(' '))));
return result.then((output) => {
if (typeof output !== 'string') {
output = require('util').inspect(output, {depth: 0});
4 years ago
}
output = output.replace(client.config.token, 'Client Token')
.replace(client.config.database.password, 'Database Password')
.replace(client.config.database.cluster, 'Database Cluster');
4 years ago
return message.channel.send(new Discord.MessageEmbed()
.setTitle('Client Evaluation')
.setDescription(`\`\`\`js\n${output}\n\`\`\``)
.setColor('c375f0')
.setFooter(`Natsuki`, client.user.avatarURL())
.setTimestamp());
}).catch(error => {return message.channel.send(`Error: \`${error}\`.`);});
4 years ago
} catch (error) {
let date = new Date; date = date.toString().slice(date.toString().search(":") - 2, date.toString().search(":") + 6);
console.error(`\n${chalk.red('[ERROR]')} >> ${chalk.yellow(`At [${date}] | Occurred while trying to run n?eval`)}`, error);
4 years ago
return message.channel.send(`Error: \`${error}\`.`);
}
4 years ago
},
};