2022-08-14 05:51:45 -04:00
|
|
|
/* eslint-disable max-len */
|
2022-10-14 04:46:41 -04:00
|
|
|
const {MessageEmbed} = require('discord.js');
|
2022-08-14 05:51:45 -04:00
|
|
|
const {VM} = require('vm2');
|
|
|
|
const axios = require('axios');
|
|
|
|
const util = require('util');
|
|
|
|
const querystring = require('querystring');
|
|
|
|
const {stylize} = require('../util/colors/minecraft');
|
2022-10-14 04:46:41 -04:00
|
|
|
const config = require('../config');
|
2022-08-14 05:51:45 -04:00
|
|
|
module.exports = {
|
|
|
|
name: 'eval',
|
|
|
|
alias: [],
|
|
|
|
description: 'Safe eval 100% secure!!!',
|
|
|
|
trusted: 0,
|
2022-08-25 06:04:43 -04:00
|
|
|
usage: '<run|reset|server> <code>',
|
2022-08-14 05:51:45 -04:00
|
|
|
execute: function(bot, username, usernameraw, sender, prefix, args) {
|
|
|
|
if (args[0]==='run') {
|
|
|
|
try {
|
|
|
|
bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: `${util.inspect(bot.vm.run(args.slice(1).join(' ')), {stylize: stylize})}`.substring(0, 1900)}));
|
|
|
|
} catch (err) {
|
|
|
|
bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: `${util.inspect(err).replaceAll('runner', 'chayapak1')}`, color: 'red'}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (args[0]==='reset') {
|
|
|
|
bot.vm = new VM(bot.vmoptions);
|
|
|
|
}
|
|
|
|
if (args[0]==='server') {
|
|
|
|
axios
|
2022-10-14 04:46:41 -04:00
|
|
|
.post(config.eval.serverUrl, querystring.stringify({
|
2022-08-14 05:51:45 -04:00
|
|
|
html: false,
|
|
|
|
showErrorMsg: false,
|
|
|
|
colors: 'minecraft',
|
|
|
|
code: args[1],
|
|
|
|
})).then((res) => {
|
|
|
|
bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: `${res.data}`}));
|
2022-10-14 04:46:41 -04:00
|
|
|
}).catch((err) => {
|
|
|
|
bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: `${err}`, color: 'red'}));
|
2022-08-14 05:51:45 -04:00
|
|
|
});
|
|
|
|
}
|
2022-08-25 06:04:43 -04:00
|
|
|
// if (args[0]==='dineval') {
|
|
|
|
// axios
|
|
|
|
// .get('https://eval.dinhero21.repl.co', {
|
|
|
|
// headers: {
|
|
|
|
// data: args[1],
|
|
|
|
// colors: 'minecraft',
|
|
|
|
// },
|
|
|
|
// }).then((res) => {
|
|
|
|
// bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: `${res.data}`}));
|
|
|
|
// }).catch((e) => {
|
|
|
|
// bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: `${e}`, color: 'red'}));
|
|
|
|
// });
|
|
|
|
// }
|
2022-08-14 05:51:45 -04:00
|
|
|
},
|
2022-10-14 04:46:41 -04:00
|
|
|
discordExecute: function(bot, username, usernameraw, sender, prefix, args, channeldc, message) {
|
|
|
|
if (args[0]==='run') {
|
|
|
|
try {
|
|
|
|
const Embed = new MessageEmbed()
|
|
|
|
.setColor('#FFFF00')
|
|
|
|
.setTitle('Output')
|
|
|
|
.setDescription(`\`\`\`${util.inspect(bot.vm.run(args.slice(1).join(' ')))}\`\`\``);
|
|
|
|
channeldc.send({embeds: [Embed]});
|
|
|
|
} catch (err) {
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (args[0]==='reset') {
|
|
|
|
bot.vm = new VM(bot.vmoptions);
|
|
|
|
}
|
|
|
|
if (args[0]==='server') {
|
|
|
|
axios
|
|
|
|
.post(config.eval.serverUrl, querystring.stringify({
|
|
|
|
html: false,
|
|
|
|
showErrorMsg: false,
|
|
|
|
code: args[1],
|
|
|
|
})).then((res) => {
|
|
|
|
const Embed = new MessageEmbed()
|
|
|
|
.setColor('#FFFF00')
|
|
|
|
.setTitle('Output')
|
|
|
|
.setDescription(`\`\`\`${res.data}\`\`\``);
|
|
|
|
channeldc.send({embeds: [Embed]});
|
|
|
|
}).catch((err) => {
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2022-08-14 05:51:45 -04:00
|
|
|
};
|