2013-01-12 11:38:40 +01:00
|
|
|
var fs = require('fs'),
|
|
|
|
_ = require('underscore')._,
|
|
|
|
jsbot = require('./jsbot/jsbot');
|
2011-09-04 16:39:03 +02:00
|
|
|
require('./snippets');
|
2011-08-23 01:04:40 +02:00
|
|
|
|
2013-01-27 21:52:11 +01:00
|
|
|
var DBot = function() {
|
2013-01-24 22:35:00 +01:00
|
|
|
|
|
|
|
/*** Load the DB ***/
|
|
|
|
|
2013-01-24 21:51:38 +01:00
|
|
|
if(fs.existsSync('db.json')) {
|
|
|
|
try {
|
|
|
|
this.db = JSON.parse(fs.readFileSync('db.json', 'utf-8'));
|
|
|
|
} catch(err) {
|
|
|
|
console.log('Error loading db.json. Stopping: ' + err);
|
|
|
|
process.exit();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.db = {};
|
2012-03-10 19:38:56 +01:00
|
|
|
}
|
2012-12-11 21:06:29 +01:00
|
|
|
|
2013-01-24 21:51:38 +01:00
|
|
|
if(!_.has(this.db, 'config')) {
|
|
|
|
this.db.config = {};
|
2012-03-10 19:38:56 +01:00
|
|
|
}
|
|
|
|
|
2013-01-24 22:35:00 +01:00
|
|
|
/*** Load the Config ***/
|
|
|
|
|
|
|
|
if(!fs.existsSync('config.json')) {
|
|
|
|
console.log('Error: config.json file does not exist. Stopping');
|
|
|
|
process.exit();
|
|
|
|
}
|
|
|
|
|
2013-01-21 18:55:12 +01:00
|
|
|
this.config = _.clone(this.db.config);
|
2013-01-21 01:05:42 +01:00
|
|
|
try {
|
|
|
|
_.defaults(this.config, JSON.parse(fs.readFileSync('config.json', 'utf-8')));
|
|
|
|
} catch(err) {
|
2013-01-24 22:35:00 +01:00
|
|
|
console.log('Config file is invalid. Stopping: ' + err);
|
2013-01-21 01:05:42 +01:00
|
|
|
process.exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
var defaultConfig = JSON.parse(fs.readFileSync('config.json.sample', 'utf-8'));
|
|
|
|
} catch(err) {
|
|
|
|
console.log('Error loading sample config. Bugger off this should not even be edited. Stopping.');
|
|
|
|
process.exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load missing config directives from sample file
|
|
|
|
_.defaults(this.config, defaultConfig);
|
|
|
|
|
2013-01-24 22:35:00 +01:00
|
|
|
/*** Load main strings ***/
|
|
|
|
|
2012-12-11 21:06:29 +01:00
|
|
|
try {
|
|
|
|
this.strings = JSON.parse(fs.readFileSync('strings.json', 'utf-8'));
|
|
|
|
} catch(err) {
|
2012-12-12 19:25:07 +01:00
|
|
|
console.log('Probably a syntax error in strings.json: ' + err);
|
2012-12-11 21:06:29 +01:00
|
|
|
this.strings = {};
|
|
|
|
}
|
2011-08-24 02:57:52 +02:00
|
|
|
|
2012-04-20 15:14:28 +02:00
|
|
|
// Initialise run-time resources
|
2012-12-11 21:06:29 +01:00
|
|
|
this.usage = {};
|
2013-01-23 23:32:17 +01:00
|
|
|
this.status = {};
|
2012-04-20 15:14:28 +02:00
|
|
|
this.sessionData = {};
|
|
|
|
|
2012-02-13 20:56:04 +01:00
|
|
|
// Populate bot properties with config data
|
2012-04-20 15:14:28 +02:00
|
|
|
// Create JSBot and connect to each server
|
2012-12-17 18:18:31 +01:00
|
|
|
this.instance = jsbot.createJSBot(this.config.name);
|
2013-01-12 22:40:16 +01:00
|
|
|
_.each(this.config.servers, function(server, name) {
|
|
|
|
this.instance.addConnection(name, server.server, server.port,
|
|
|
|
this.config.admin, function(event) {
|
|
|
|
var server = this.config.servers[event.server];
|
|
|
|
for(var i=0;i<server.channels.length;i++) {
|
|
|
|
this.instance.join(event, server.channels[i]);
|
|
|
|
}
|
|
|
|
}.bind(this), server.nickserv, server.password);
|
|
|
|
}, this);
|
2011-08-24 02:57:52 +02:00
|
|
|
|
2012-02-13 20:56:04 +01:00
|
|
|
// Load the modules and connect to the server
|
2011-08-24 02:57:52 +02:00
|
|
|
this.reloadModules();
|
2012-04-20 15:14:28 +02:00
|
|
|
this.instance.connectAll();
|
2011-08-24 02:57:52 +02:00
|
|
|
};
|
|
|
|
|
2012-02-13 20:56:04 +01:00
|
|
|
// Say something in a channel
|
2012-05-23 20:38:10 +02:00
|
|
|
DBot.prototype.say = function(server, channel, message) {
|
|
|
|
this.instance.say(server, channel, message);
|
2011-08-24 02:57:52 +02:00
|
|
|
};
|
|
|
|
|
2012-05-19 17:33:31 +02:00
|
|
|
// Format given stored string in config language
|
|
|
|
DBot.prototype.t = function(string, formatData) {
|
2012-12-11 21:06:29 +01:00
|
|
|
var formattedString;
|
2013-01-12 17:14:17 +01:00
|
|
|
if(_.has(this.strings, string)) {
|
2012-12-17 18:18:31 +01:00
|
|
|
var lang = this.config.language;
|
2013-01-12 17:14:17 +01:00
|
|
|
if(!_.has(this.strings[string], lang)) {
|
2013-02-16 19:07:41 +01:00
|
|
|
lang = "en";
|
2012-12-11 21:06:29 +01:00
|
|
|
}
|
2012-05-19 17:33:31 +02:00
|
|
|
|
2012-12-11 21:06:29 +01:00
|
|
|
formattedString = this.strings[string][lang].format(formatData);
|
|
|
|
} else {
|
|
|
|
formattedString = 'String not found. Something has gone screwy. Maybe.';
|
|
|
|
}
|
|
|
|
|
|
|
|
return formattedString;
|
2012-05-19 17:33:31 +02:00
|
|
|
};
|
|
|
|
|
2012-05-23 20:38:10 +02:00
|
|
|
/*DBot.prototype.act = function(channel, data) {
|
2012-03-09 22:44:05 +01:00
|
|
|
this.instance.send('PRIVMSG', channel, ':\001ACTION ' + data + '\001');
|
2012-05-23 20:38:10 +02:00
|
|
|
}*/
|
2012-02-27 17:43:47 +01:00
|
|
|
|
2012-02-13 20:56:04 +01:00
|
|
|
// Save the database file
|
2011-08-24 02:57:52 +02:00
|
|
|
DBot.prototype.save = function() {
|
2013-01-23 00:27:02 +01:00
|
|
|
fs.writeFileSync('db.json', JSON.stringify(this.db, null, ' '));
|
2011-08-24 02:57:52 +02:00
|
|
|
};
|
|
|
|
|
2012-02-13 20:56:04 +01:00
|
|
|
// Hot-reload module files.
|
2011-08-24 02:57:52 +02:00
|
|
|
DBot.prototype.reloadModules = function() {
|
2012-02-13 20:56:04 +01:00
|
|
|
if(this.modules) { // Run 'onDestroy' code for each module if it exists.
|
2013-02-12 19:34:36 +01:00
|
|
|
_.each(this.modules, function(module) {
|
2011-09-14 18:31:26 +02:00
|
|
|
if(module.onDestroy) {
|
|
|
|
module.onDestroy();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2011-09-14 18:30:39 +02:00
|
|
|
|
2011-08-24 02:57:52 +02:00
|
|
|
this.rawModules = [];
|
2012-12-24 06:47:47 +01:00
|
|
|
this.pages = {};
|
2013-01-23 23:32:17 +01:00
|
|
|
this.status = {};
|
2012-12-30 01:45:25 +01:00
|
|
|
this.modules = {};
|
2011-08-28 16:00:22 +02:00
|
|
|
this.commands = {};
|
2013-01-03 20:56:30 +01:00
|
|
|
this.api = {};
|
2012-04-15 21:42:23 +02:00
|
|
|
this.commandMap = {}; // Map of which commands belong to which modules
|
2012-12-11 21:06:29 +01:00
|
|
|
this.usage = {};
|
2013-01-21 01:05:42 +01:00
|
|
|
|
|
|
|
// Load config changes
|
|
|
|
_.extend(this.config, this.db.config);
|
2011-10-12 15:52:58 +02:00
|
|
|
|
2012-12-11 21:47:50 +01:00
|
|
|
try {
|
|
|
|
this.strings = JSON.parse(fs.readFileSync('strings.json', 'utf-8'));
|
|
|
|
} catch(err) {
|
|
|
|
this.strings = {};
|
|
|
|
}
|
|
|
|
|
2012-12-17 18:18:31 +01:00
|
|
|
var moduleNames = this.config.moduleNames;
|
|
|
|
|
2012-03-15 19:08:40 +01:00
|
|
|
// Enforce having command. it can still be reloaded, but dbot _will not_
|
|
|
|
// function without it, so not having it should be impossible
|
2012-12-17 18:18:31 +01:00
|
|
|
if(!moduleNames.include("command")) {
|
|
|
|
moduleNames.push("command");
|
2012-03-10 18:35:50 +01:00
|
|
|
}
|
|
|
|
|
2012-02-13 20:56:04 +01:00
|
|
|
// Reload Javascript snippets
|
2011-08-25 18:54:59 +02:00
|
|
|
var path = require.resolve('./snippets');
|
2012-02-08 19:42:38 +01:00
|
|
|
delete require.cache[path];
|
2011-08-25 18:54:59 +02:00
|
|
|
require('./snippets');
|
|
|
|
|
2012-04-15 21:42:23 +02:00
|
|
|
this.instance.removeListeners();
|
|
|
|
|
2012-12-17 18:18:31 +01:00
|
|
|
moduleNames.each(function(name) {
|
2012-12-11 21:06:29 +01:00
|
|
|
var moduleDir = './modules/' + name + '/';
|
|
|
|
var cacheKey = require.resolve(moduleDir + name);
|
2012-02-08 19:42:38 +01:00
|
|
|
delete require.cache[cacheKey];
|
2012-04-15 21:46:42 +02:00
|
|
|
|
2013-01-07 13:49:18 +01:00
|
|
|
try {
|
|
|
|
var webKey = require.resolve(moduleDir + 'web');
|
|
|
|
} catch(err) {
|
|
|
|
}
|
|
|
|
if(webKey) {
|
|
|
|
delete require.cache[webKey];
|
|
|
|
}
|
|
|
|
|
2013-01-26 23:07:30 +01:00
|
|
|
this.status[name] = true;
|
|
|
|
|
2011-08-24 19:23:00 +02:00
|
|
|
try {
|
2012-12-18 12:07:39 +01:00
|
|
|
// Load the module config data
|
2013-01-12 11:07:39 +01:00
|
|
|
var config = {};
|
2013-01-20 15:45:58 +01:00
|
|
|
|
|
|
|
if(_.has(this.db.config, name)) {
|
2013-01-21 20:01:53 +01:00
|
|
|
config = _.clone(this.db.config[name]);
|
2013-01-20 15:45:58 +01:00
|
|
|
}
|
|
|
|
|
2012-12-18 12:07:39 +01:00
|
|
|
try {
|
2013-01-23 23:32:17 +01:00
|
|
|
var defaultConfig = fs.readFileSync(moduleDir + 'config.json', 'utf-8');
|
|
|
|
try {
|
|
|
|
defaultConfig = JSON.parse(defaultConfig);
|
|
|
|
} catch(err) { // syntax error
|
|
|
|
this.status[name] = 'Error parsing config: ' + err + ' ' + err.stack.split('\n')[2].trim();
|
|
|
|
return;
|
|
|
|
}
|
2013-01-20 15:45:58 +01:00
|
|
|
config = _.defaults(config, defaultConfig);
|
2012-12-18 12:07:39 +01:00
|
|
|
} catch(err) {
|
|
|
|
// Invalid or no config data
|
|
|
|
}
|
|
|
|
|
2013-01-26 23:07:30 +01:00
|
|
|
// Don't shit out if dependencies not met
|
2013-01-21 18:39:21 +01:00
|
|
|
if(_.has(config, 'dependencies')) {
|
2013-01-26 23:07:30 +01:00
|
|
|
_.each(config.dependencies, function(dependency) {
|
2013-01-21 18:39:21 +01:00
|
|
|
if(!_.include(moduleNames, dependency)) {
|
2013-01-26 23:07:30 +01:00
|
|
|
console.log('Warning: Automatically loading ' + dependency);
|
|
|
|
moduleNames.push(dependency);
|
2013-01-21 18:39:21 +01:00
|
|
|
}
|
2013-01-26 23:07:30 +01:00
|
|
|
}, this);
|
2013-01-21 18:39:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generate missing DB keys
|
2013-01-12 15:58:54 +01:00
|
|
|
this.config[name] = config;
|
|
|
|
_.each(config.dbKeys, function(dbKey) {
|
2013-01-12 16:07:14 +01:00
|
|
|
if(!_.has(this.db, dbKey)) {
|
2013-01-12 15:58:54 +01:00
|
|
|
this.db[dbKey] = {};
|
|
|
|
}
|
|
|
|
}, this);
|
|
|
|
|
2012-12-11 21:06:29 +01:00
|
|
|
// Load the module itself
|
|
|
|
var rawModule = require(moduleDir + name);
|
2012-04-15 21:42:23 +02:00
|
|
|
var module = rawModule.fetch(this);
|
2013-01-14 17:02:40 +01:00
|
|
|
module.name = name;
|
2012-04-15 21:42:23 +02:00
|
|
|
this.rawModules.push(rawModule);
|
2011-08-28 16:00:22 +02:00
|
|
|
|
2013-01-22 01:39:04 +01:00
|
|
|
module.config = this.config[name];
|
|
|
|
|
2013-01-14 19:15:07 +01:00
|
|
|
// Load the module data
|
2013-01-14 17:02:40 +01:00
|
|
|
_.each([ 'commands', 'pages', 'api' ], function(property) {
|
2013-01-14 18:58:58 +01:00
|
|
|
var propertyObj = {};
|
2013-01-24 22:35:00 +01:00
|
|
|
|
|
|
|
if(fs.existsSync(moduleDir + property + '.js')) {
|
|
|
|
try {
|
|
|
|
var propertyKey = require.resolve(moduleDir + property);
|
|
|
|
if(propertyKey) delete require.cache[propertyKey];
|
|
|
|
propertyObj = require(moduleDir + property).fetch(this);
|
|
|
|
} catch(err) {
|
2013-01-24 22:53:24 +01:00
|
|
|
this.status[name] = 'Error loading ' + propertyKey + ': ' + err + ' - ' + err.stack.split('\n')[1].trim();
|
2013-01-24 22:35:00 +01:00
|
|
|
console.log('Module error (' + module.name + ') in ' + property + ': ' + err);
|
|
|
|
}
|
|
|
|
}
|
2013-01-14 17:02:40 +01:00
|
|
|
|
2013-01-14 18:45:53 +01:00
|
|
|
if(!_.has(module, property)) module[property] = {};
|
|
|
|
_.extend(module[property], propertyObj);
|
2013-01-14 18:58:58 +01:00
|
|
|
_.each(module[property], function(item, itemName) {
|
|
|
|
item.module = name;
|
|
|
|
if(_.has(config, property) && _.has(config[property], itemName)) {
|
|
|
|
_.extend(item, config[property][itemName]);
|
|
|
|
}
|
2013-01-14 23:03:58 +01:00
|
|
|
module[property][itemName] = _.bind(item, module);
|
|
|
|
_.extend(module[property][itemName], item);
|
2013-01-14 18:58:58 +01:00
|
|
|
}, this);
|
2013-01-14 23:34:47 +01:00
|
|
|
|
|
|
|
if(property == 'api') {
|
|
|
|
this[property][name] = module[property];
|
|
|
|
} else {
|
|
|
|
_.extend(this[property], module[property]);
|
|
|
|
}
|
2013-01-14 17:02:40 +01:00
|
|
|
}, this);
|
2012-12-24 06:47:47 +01:00
|
|
|
|
2013-01-14 19:15:07 +01:00
|
|
|
// Load the module listener
|
2012-04-15 21:42:23 +02:00
|
|
|
if(module.listener) {
|
2013-01-12 15:58:54 +01:00
|
|
|
if(!_.isArray(module.on)) {
|
|
|
|
module.on = [ module.on ];
|
2012-12-23 17:54:30 +01:00
|
|
|
}
|
2013-01-12 15:58:54 +01:00
|
|
|
_.each(module.on, function(on) {
|
2012-12-23 17:54:30 +01:00
|
|
|
this.instance.addListener(on, module.name, module.listener);
|
2013-01-12 15:58:54 +01:00
|
|
|
}, this);
|
2012-04-15 21:42:23 +02:00
|
|
|
}
|
2011-08-28 16:00:22 +02:00
|
|
|
|
2013-01-14 19:15:07 +01:00
|
|
|
// Load string data for the module
|
|
|
|
_.each([ 'usage', 'strings' ], function(property) {
|
|
|
|
var propertyData = {};
|
|
|
|
try {
|
|
|
|
propertyData = JSON.parse(fs.readFileSync(moduleDir + property + '.json', 'utf-8'));
|
|
|
|
} catch(err) {};
|
|
|
|
_.extend(this[property], propertyData);
|
|
|
|
}, this);
|
2012-12-11 21:06:29 +01:00
|
|
|
|
2013-01-12 15:58:54 +01:00
|
|
|
// Provide toString for module name
|
2012-12-30 18:52:42 +01:00
|
|
|
module.toString = function() {
|
|
|
|
return this.name;
|
|
|
|
}
|
2013-01-12 15:58:54 +01:00
|
|
|
|
2012-12-30 01:45:25 +01:00
|
|
|
this.modules[module.name] = module;
|
2012-04-15 21:42:23 +02:00
|
|
|
} catch(err) {
|
2012-05-23 19:02:02 +02:00
|
|
|
console.log(this.t('module_load_error', {'moduleName': name}));
|
2013-01-23 23:32:17 +01:00
|
|
|
this.status[name] = err + ' - ' + err.stack.split('\n')[1].trim();
|
2012-12-24 04:13:41 +01:00
|
|
|
if(this.config.debugMode) {
|
|
|
|
console.log('MODULE ERROR (' + name + '): ' + err.stack );
|
2013-01-12 15:58:54 +01:00
|
|
|
} else {
|
2012-12-24 04:13:41 +01:00
|
|
|
console.log('MODULE ERROR (' + name + '): ' + err );
|
|
|
|
}
|
2012-04-15 21:42:23 +02:00
|
|
|
}
|
2011-08-24 02:57:52 +02:00
|
|
|
}.bind(this));
|
2013-01-12 15:58:54 +01:00
|
|
|
|
2013-01-15 14:58:13 +01:00
|
|
|
if(_.has(this.modules, 'web')) this.modules.web.reloadPages();
|
2013-01-15 18:23:14 +01:00
|
|
|
|
|
|
|
_.each(this.modules, function(module, name) {
|
|
|
|
if(module.onLoad) {
|
2013-01-24 22:46:18 +01:00
|
|
|
try {
|
|
|
|
module.onLoad();
|
|
|
|
} catch(err) {
|
|
|
|
this.status[name] = 'Error in onLoad: ' + err + ' ' + err.stack.split('\n')[1].trim();
|
|
|
|
}
|
2013-01-15 18:23:14 +01:00
|
|
|
}
|
|
|
|
}, this);
|
2013-01-15 14:58:13 +01:00
|
|
|
|
2012-12-17 20:37:33 +01:00
|
|
|
this.save();
|
2011-08-24 02:57:52 +02:00
|
|
|
};
|
|
|
|
|
2011-11-10 20:36:01 +01:00
|
|
|
DBot.prototype.cleanNick = function(key) {
|
|
|
|
key = key.toLowerCase();
|
|
|
|
while(key.endsWith("_")) {
|
2013-01-12 17:14:17 +01:00
|
|
|
if(_.has(this.db.quoteArrs, key)) {
|
2011-11-10 20:36:01 +01:00
|
|
|
return key;
|
|
|
|
}
|
|
|
|
key = key.substring(0, key.length-1);
|
|
|
|
}
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
2013-01-27 21:52:11 +01:00
|
|
|
new DBot();
|