galactic-bot/structure/client/components/commands/developer/Evaluate.js
2020-05-01 17:12:45 +03:00

83 lines
2.4 KiB
JavaScript

const { inspect } = require('util');
const { username } = require('os').userInfo();
const { stripIndents } = require('common-tags');
let _storage = null; //eslint-disable-line no-unused-vars
const { Command, Argument } = require('../../../../interfaces/');
class Evaluate extends Command {
constructor(client) {
super(client, {
name: 'evaluate',
module: 'developer',
aliases: [
'eval',
'e'
],
restricted: true,
description: "Evaluates javascript code.",
arguments: [
new Argument(client, {
name: 'log',
type: 'BOOLEAN',
types: ['FLAG'],
description: "Logs the output in the console."
}),
new Argument(client, {
name: 'hide',
type: 'BOOLEAN',
types: ['FLAG'],
description: "Hides the output from the channel."
})
]
});
}
async execute(message, { params, args }) {
params = params.join(' ');
try {
let evaled = eval(params);
if(evaled instanceof Promise) await evaled;
if(typeof evaled !== 'string') evaled = inspect(evaled);
evaled = evaled
.replace(new RegExp(this.client.token, 'g'), '<redacted>')
.replace(new RegExp(username, 'g'), '<redacted>');
if(args.log) this.client.logger.debug(`[${message.author.tag}] Evaluation Result: ${evaled}`);
if (evaled.length > 1850) {
console.log(evaled);
evaled = `${evaled.substring(0, 1850)}...`;
}
await message.respond(`Evaluation was successful.\`\`\`js\n${evaled}\`\`\``,
{ emoji: 'success' });
} catch(error) {
let msg = `${error}${error.stack ? `\n${error.stack}` : ''}`;
if(args.log) this.client.logger.debug(`[${message.author.tag}] Evaluation Failed: ${msg}`);
if(msg.length > 2000) msg = `${msg.substring(0, 1900)}...`;
await message.respond(stripIndents`Evaluation failed.
\`\`\`js
${msg}\`\`\``,
{ emoji: 'failure' });
}
}
}
module.exports = Evaluate;