Haha-Yes/commands/owner/eval.js

63 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-12-30 01:20:24 +01:00
const { Command } = require('discord-akairo');
2019-01-14 16:53:56 +01:00
const { MessageEmbed } = require('discord.js');
2018-12-30 01:20:24 +01:00
class EvalCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor() {
super('eval', {
aliases: ['eval'],
category: 'owner',
args: [
{
id: 'eval',
2019-01-14 11:41:15 +01:00
type: 'string',
match: 'rest'
2019-01-02 08:09:45 +01:00
}
],
ownerOnly: 'true',
description: {
2018-12-30 01:20:24 +01:00
content: 'Execute javascript',
usage: '[code]',
examples: ['message.channel.send(\'Hi\')']
}
2019-01-02 08:09:45 +01:00
});
}
2018-12-30 01:20:24 +01:00
2019-01-02 08:09:45 +01:00
async exec(message, args) {
const clean = text => {
if (typeof(text) === 'string')
return text.replace(/`/g, '`' + String.fromCharCode(8203)).replace(/@/g, '@' + String.fromCharCode(8203));
else
return text;
};
2018-12-30 01:20:24 +01:00
2019-01-02 08:09:45 +01:00
try {
const code = args.eval;
let evaled = eval(code);
if (typeof evaled !== 'string')
evaled = require('util').inspect(evaled);
2019-01-14 16:53:56 +01:00
const evalEmbed = new MessageEmbed()
.setColor('#00FF00')
.setThumbnail('https://cdn4.iconfinder.com/data/icons/gradient-ui-1/512/success-512.png')
.addField('Input', `\`\`\`js\n${code}\`\`\``)
.addField('Output', `\`\`\`js\n${clean(evaled)}\`\`\``)
.setTimestamp();
message.channel.send('<a:orangejustice:522142267490697236> Eval succes <a:orangejustice:522142267490697236>');
2019-01-14 16:53:56 +01:00
message.channel.send(evalEmbed);
2019-01-02 08:09:45 +01:00
} catch (err) {
2019-01-14 16:53:56 +01:00
const errorEmbed = new MessageEmbed()
.setColor('#FF0000')
.setThumbnail('https://cdn4.iconfinder.com/data/icons/the-weather-is-nice-today/64/weather_48-512.png')
.addField('Input', `\`\`\`js\n${args.eval}\`\`\``)
.addField('Output', `\`\`\`js\n${clean(err)}\`\`\``)
.setTimestamp();
message.channel.send('Eval failed <:sadpepe:534399181679230986>');
2019-01-14 16:53:56 +01:00
message.channel.send(errorEmbed);
2019-01-02 08:09:45 +01:00
}
}
2018-12-30 01:20:24 +01:00
}
module.exports = EvalCommand;