test
This commit is contained in:
parent
c303a1040d
commit
680230abc1
@ -1,12 +1,13 @@
|
|||||||
const util = require('util');
|
//const util = require('util');
|
||||||
const vm = require('vm');
|
//const vm = require('vm');
|
||||||
|
var safeEval = require('safe-eval');
|
||||||
|
|
||||||
module.exports = (lib) => {
|
module.exports = (lib) => {
|
||||||
var sandbox = {
|
//var sandbox = {
|
||||||
bot: lib.bot,
|
// bot: lib.bot,
|
||||||
output: undefined,
|
// output: undefined,
|
||||||
e: null
|
// e: null
|
||||||
};
|
//};
|
||||||
|
|
||||||
lib.trigger.add({
|
lib.trigger.add({
|
||||||
name: 'bot debug',
|
name: 'bot debug',
|
||||||
@ -15,13 +16,18 @@ module.exports = (lib) => {
|
|||||||
active: 1,
|
active: 1,
|
||||||
func: (e) => {
|
func: (e) => {
|
||||||
var args = e.message.match(/^\!bot (.*)/i)[1];
|
var args = e.message.match(/^\!bot (.*)/i)[1];
|
||||||
sandbox.e = e;
|
|
||||||
|
|
||||||
vm.runInNewContext('this.output = '+args, sandbox);
|
var context = {
|
||||||
|
bot: lib.bot,
|
||||||
|
e: e
|
||||||
|
}
|
||||||
|
e.reply( safeEval(args, context) );
|
||||||
|
|
||||||
var output = util.inspect(sandbox.output);
|
//sandbox.e = e;
|
||||||
if(typeof(output) !== undefined)
|
//vm.runInNewContext('this.output = '+args, sandbox);
|
||||||
e.reply(output);
|
//var output = util.inspect(sandbox.output);
|
||||||
|
//if(typeof(output) !== undefined)
|
||||||
|
// e.reply(output);
|
||||||
},
|
},
|
||||||
desc: 'bot debug'
|
desc: 'bot debug'
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user