var fs = require('fs'), _ = require('underscore')._, sys = require('sys'), exec = require('child_process').exec; var commands = function(dbot) { var getCurrentConfigPath = function(configKey) { var configKey = configKey.split('.'); defaultConfigPath = dbot.config; userConfigPath = dbot.db.config; for(var i=0;i 0){ event.reply(stdout); } else{ event.reply("No version information or queried module not loaded"); } }.bind(this)); }, // Reload DB, translations and modules. 'reload': function(event) { dbot.db = JSON.parse(fs.readFileSync('db.json', 'utf-8')); dbot.reloadModules(); event.reply(dbot.t('reload')); }, // Say something in a channel 'say': function(event) { var channel = event.params[1]; if(event.params[1] === "@") { var channel = event.channel.name; } var message = event.params.slice(2).join(' '); dbot.say(event.server, channel, message); }, // Load new module 'load': function(event) { var moduleName = event.params[1]; if(!_.include(dbot.config.moduleNames, moduleName)) { dbot.config.moduleNames.push(moduleName); dbot.reloadModules(); event.reply(dbot.t('load_module', {'moduleName': moduleName})); } else { if(moduleName == 'web') { event.reply(dbot.t('already_loaded_web')); } else { event.reply(dbot.t('already_loaded', {'moduleName': moduleName})); } } }, // Unload a loaded module 'unload': function(event) { var moduleNames = dbot.config.moduleNames; var moduleName = event.params[1]; if(_.include(moduleNames, moduleName)) { var moduleDir = '../' + moduleName + '/'; var cacheKey = require.resolve(moduleDir + moduleName); delete require.cache[cacheKey]; dbot.config.moduleNames = _.without(dbot.config.moduleNames, moduleName); dbot.reloadModules(); event.reply(dbot.t('unload_module', {'moduleName': moduleName})); } else { event.reply(dbot.t('unload_error', {'moduleName': moduleName})); } }, // Ban user from command or * 'ban': function(event) { var username = event.params[1]; var command = event.params[2]; if(!_.has(dbot.db.bans, command)) { dbot.db.bans[command] = [ ]; } dbot.db.bans[command].push(username); event.reply(dbot.t('banned', {'user': username, 'command': command})); }, // Unban a user from command or * 'unban': function(event) { var username = event.params[1]; var command = event.params[2]; if(_.has(dbot.db.bans, command) && _.include(dbot.db.bans[command], username)) { _.reject(dbot.db.bans[command], function(bans) { return bans == username; }, this); event.reply(dbot.t('unbanned', {'user': username, 'command': command})); } else { event.reply(dbot.t('unban_error', {'user': username})); } }, /*** Config options ***/ 'setconfig': function(event) { var configPathString = event.params[1]; var configKey = _.last(configPathString.split('.')); var newOption = event.params[2]; var configPath = getCurrentConfigPath(configPathString); var currentOption; if(_.has(configPath['user'], configKey)) { currentOption = configPath['user'][configKey]; } else if(_.has(configPath['default'], configKey)) { currentOption = configPath['default'][configKey]; } else { event.reply("Config key doesn't exist bro"); return; } // Convert to boolean type if config item boolean if(_.isBoolean(currentOption)) { newOption = (newOption == "true"); } if(_.isArray(currentOption)) { event.reply("Config option is an array. Try 'pushconfig'."); } // TODO: Same for numbers and that I assume event.reply(configPathString + ": " + currentOption + " -> " + newOption); userConfigPath[configKey] = newOption; dbot.reloadModules(); }, 'showconfig': function(event) { var configPathString = event.params[1]; var configKey = _.last(configPathString.split('.')); var configPath = getCurrentConfigPath(configPathString); if(!_.has(configPath['default'], configKey)) { event.reply("Config path doesn't exist"); return } if(_.isObject(configPath['default'][configKey])) { event.reply('Config keys in ' + configPathString + ': ' + Object.keys(configPath['default'][configKey])); } else { var currentOption = configPath['default'][configKey]; if(_.has(configPath['user'][configKey])) { currentOption = configPath['user'][configKey]; } event.reply(configPathString + ': ' + currentOption); } } }; commands['greload'].access = 'admin'; commands['reload'].access = 'admin'; commands['unload'].access = 'admin'; commands['load'].access = 'admin'; commands['setconfig'].access = 'admin'; commands['showconfig'].access = 'moderator'; commands['join'].access = 'moderator'; commands['part'].access = 'moderator'; commands['opme'].access = 'moderator'; commands['say'].access = 'moderator'; commands['ban'].access = 'moderator'; commands['unban'].access = 'moderator'; return commands; }; exports.fetch = function(dbot) { return commands(dbot); }