forked from GitHub/dbot
34 lines
762 B
JavaScript
34 lines
762 B
JavaScript
var vm = require('vm');
|
|
var sandbox = require('sandbox');
|
|
|
|
var js = function(dbot) {
|
|
var dbot = dbot;
|
|
var s = sandbox.Sandbox();
|
|
|
|
var commands = {
|
|
'~js': function(data, params) {
|
|
var q = data.message.valMatch(/^~js (.*)/, 2);
|
|
s.run(q[1], function(output) {
|
|
dbot.say(data.channel, output.result);
|
|
});
|
|
},
|
|
|
|
'~ajs': function(data, params) {
|
|
var q = data.message.valMatch(/^~ajs (.*)/, 2);
|
|
if(data.user == dbot.admin) {
|
|
dbot.say(data.channel, eval(q[1]));
|
|
}
|
|
}
|
|
};
|
|
|
|
return {
|
|
'onLoad': function() {
|
|
return commands;
|
|
}
|
|
};
|
|
};
|
|
|
|
exports.fetch = function(dbot) {
|
|
return js(dbot);
|
|
};
|