2011-08-16 18:41:29 +02:00
|
|
|
var fs = require('fs');
|
2011-09-04 16:39:03 +02:00
|
|
|
var timers = require('./timer');
|
2011-08-18 19:03:00 +02:00
|
|
|
var jsbot = require('./jsbot');
|
2011-09-04 16:39:03 +02:00
|
|
|
require('./snippets');
|
2011-08-23 01:04:40 +02:00
|
|
|
|
2012-02-11 17:02:16 +01:00
|
|
|
var DBot = function(timers) {
|
2012-02-13 20:56:04 +01:00
|
|
|
// Load external files
|
2011-11-09 22:54:16 +01:00
|
|
|
this.config = JSON.parse(fs.readFileSync('config.json', 'utf-8'));
|
2012-03-10 19:38:56 +01:00
|
|
|
this.db = null;
|
|
|
|
var rawDB;
|
2012-03-07 00:54:52 +01:00
|
|
|
try {
|
2012-03-10 19:38:56 +01:00
|
|
|
var rawDB = fs.readFileSync('db.json', 'utf-8');
|
2012-03-07 00:54:52 +01:00
|
|
|
} catch (e) {
|
2012-03-15 19:08:40 +01:00
|
|
|
this.db = {}; // If no db file, make empty one
|
2012-03-10 19:38:56 +01:00
|
|
|
}
|
2012-03-15 19:08:40 +01:00
|
|
|
if(!this.db) { // If it wasn't empty
|
2012-03-10 19:38:56 +01:00
|
|
|
this.db = JSON.parse(rawDB);
|
|
|
|
}
|
|
|
|
|
2012-03-15 19:08:40 +01:00
|
|
|
// Repair any deficiencies in the DB; if this is a new DB, that's everything
|
2012-03-10 19:38:56 +01:00
|
|
|
if(!this.db.hasOwnProperty("bans")) {
|
|
|
|
this.db.bans = {};
|
|
|
|
}
|
|
|
|
if(!this.db.bans.hasOwnProperty("*")) {
|
|
|
|
this.db.bans["*"] = [];
|
|
|
|
}
|
|
|
|
if(!this.db.hasOwnProperty("quoteArrs")) {
|
|
|
|
this.db.quoteArrs = {};
|
|
|
|
}
|
|
|
|
if(!this.db.hasOwnProperty("kicks")) {
|
|
|
|
this.db.kicks = {};
|
|
|
|
}
|
|
|
|
if(!this.db.hasOwnProperty("kickers")) {
|
|
|
|
this.db.kickers = {};
|
|
|
|
}
|
|
|
|
if(!this.db.hasOwnProperty("modehate")) {
|
|
|
|
this.db.modehate = [];
|
|
|
|
}
|
|
|
|
if(!this.db.hasOwnProperty("locks")) {
|
|
|
|
this.db.locks = [];
|
2012-03-07 00:54:52 +01:00
|
|
|
}
|
2012-04-15 21:42:23 +02:00
|
|
|
if(!this.db.hasOwnProperty("ignores")) {
|
2012-04-15 22:43:02 +02:00
|
|
|
this.db.ignores = {};
|
2012-04-15 21:42:23 +02:00
|
|
|
}
|
2012-06-22 20:27:59 +02:00
|
|
|
if(!this.db.hasOwnProperty('polls')) {
|
|
|
|
this.db.polls = {};
|
|
|
|
}
|
2012-03-25 00:48:28 +01:00
|
|
|
|
2012-04-20 15:14:28 +02:00
|
|
|
// Load Strings file
|
2012-03-25 01:08:32 +01:00
|
|
|
this.strings = JSON.parse(fs.readFileSync('strings.json', 'utf-8'));
|
2011-08-24 02:57:52 +02:00
|
|
|
|
2012-04-20 15:14:28 +02:00
|
|
|
// Initialise run-time resources
|
|
|
|
this.sessionData = {};
|
|
|
|
this.timers = timers.create();
|
|
|
|
|
2012-02-13 20:56:04 +01:00
|
|
|
// Populate bot properties with config data
|
2011-11-27 13:52:04 +01:00
|
|
|
this.name = this.config.name || 'dbox';
|
2012-03-10 15:38:47 +01:00
|
|
|
this.admin = this.config.admin || [ 'reality' ];
|
2012-05-25 17:45:47 +02:00
|
|
|
this.moduleNames = this.config.modules || [ 'ignore', 'admin', 'command', 'dice', 'js', 'kick', 'puns', 'quotes', 'spelling', 'youare' ];
|
2012-03-25 00:48:28 +01:00
|
|
|
this.language = this.config.language || 'english';
|
2012-05-25 22:00:38 +02:00
|
|
|
this.webPort = this.config.webPort || 80;
|
2011-11-09 22:54:16 +01:00
|
|
|
|
2012-04-20 15:14:28 +02:00
|
|
|
// It's the user's responsibility to fill this data structure up properly in
|
|
|
|
// the config file. They can d-d-d-deal with it if they have problems.
|
|
|
|
this.servers = this.config.servers || {
|
|
|
|
'freenode': {
|
|
|
|
'server': 'irc.freenode.net',
|
|
|
|
'port': 6667,
|
|
|
|
'nickserv': 'nickserv',
|
|
|
|
'password': 'lolturtles',
|
|
|
|
'channels': [
|
|
|
|
'#realitest'
|
2012-05-19 18:47:35 +02:00
|
|
|
]
|
2012-04-20 15:14:28 +02:00
|
|
|
}
|
|
|
|
};
|
2011-10-31 18:07:14 +01:00
|
|
|
|
2012-04-20 15:14:28 +02:00
|
|
|
// Create JSBot and connect to each server
|
|
|
|
this.instance = jsbot.createJSBot(this.name);
|
|
|
|
for(var name in this.servers) {
|
|
|
|
if(this.servers.hasOwnProperty(name)) {
|
|
|
|
var server = this.servers[name];
|
|
|
|
this.instance.addConnection(name, server.server, server.port, this.admin, function(event) {
|
2012-05-25 22:36:13 +02:00
|
|
|
var server = this.servers[event.server];
|
|
|
|
for(var i=0;i<server.channels.length;i++) {
|
|
|
|
this.instance.join(event, server.channels[i]);
|
|
|
|
}
|
2012-04-20 15:14:28 +02:00
|
|
|
}.bind(this), server.nickserv, server.password);
|
2011-11-09 22:54:16 +01:00
|
|
|
}
|
2012-04-20 15:14:28 +02:00
|
|
|
}
|
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) {
|
|
|
|
var lang = this.language;
|
|
|
|
if(!this.strings[string].hasOwnProperty(lang)) {
|
|
|
|
lang = "english";
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.strings[string][lang].format(formatData);
|
|
|
|
};
|
|
|
|
|
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() {
|
2011-10-12 16:12:06 +02:00
|
|
|
fs.writeFile('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.
|
2011-09-14 18:31:26 +02:00
|
|
|
this.modules.each(function(module) {
|
|
|
|
if(module.onDestroy) {
|
|
|
|
module.onDestroy();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2011-09-14 18:30:39 +02:00
|
|
|
|
2011-08-24 02:57:52 +02:00
|
|
|
this.rawModules = [];
|
|
|
|
this.modules = [];
|
2011-08-28 16:00:22 +02:00
|
|
|
this.commands = {};
|
2012-04-15 21:42:23 +02:00
|
|
|
this.commandMap = {}; // Map of which commands belong to which modules
|
2011-09-04 16:39:03 +02:00
|
|
|
this.timers.clearTimers();
|
2011-10-12 15:52:58 +02:00
|
|
|
this.save();
|
|
|
|
|
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-03-10 18:35:50 +01:00
|
|
|
if(!this.moduleNames.include("command")) {
|
|
|
|
this.moduleNames.push("command");
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
|
2011-08-24 02:57:52 +02:00
|
|
|
this.moduleNames.each(function(name) {
|
2011-08-24 17:15:42 +02:00
|
|
|
var cacheKey = require.resolve('./modules/' + name);
|
2012-02-08 19:42:38 +01:00
|
|
|
delete require.cache[cacheKey];
|
2012-04-15 21:46:42 +02:00
|
|
|
|
2011-08-24 19:23:00 +02:00
|
|
|
try {
|
2012-04-15 21:42:23 +02:00
|
|
|
var rawModule = require('./modules/' + name);
|
|
|
|
var module = rawModule.fetch(this);
|
|
|
|
this.rawModules.push(rawModule);
|
2011-08-28 16:00:22 +02:00
|
|
|
|
2012-04-15 21:42:23 +02:00
|
|
|
if(module.listener) {
|
2012-05-19 20:14:07 +02:00
|
|
|
this.instance.addListener(module.on, module.name, module.listener);
|
2012-04-15 21:42:23 +02:00
|
|
|
}
|
2011-08-28 16:00:22 +02:00
|
|
|
|
2012-04-15 21:42:23 +02:00
|
|
|
if(module.onLoad) {
|
2012-06-05 01:17:51 +02:00
|
|
|
module.onLoad();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(module.commands) {
|
|
|
|
var newCommands = module.commands;
|
2012-04-15 21:42:23 +02:00
|
|
|
for(key in newCommands) {
|
|
|
|
if(newCommands.hasOwnProperty(key) && Object.prototype.isFunction(newCommands[key])) {
|
|
|
|
this.commands[key] = newCommands[key];
|
2012-04-15 22:43:02 +02:00
|
|
|
this.commandMap[key] = name;
|
2012-04-15 21:42:23 +02:00
|
|
|
}
|
2011-08-28 16:00:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-15 21:42:23 +02:00
|
|
|
this.modules.push(module);
|
|
|
|
} catch(err) {
|
2012-05-23 19:02:02 +02:00
|
|
|
console.log(this.t('module_load_error', {'moduleName': name}));
|
2012-04-19 13:14:08 +02:00
|
|
|
console.log(err);
|
2012-04-15 21:42:23 +02:00
|
|
|
}
|
2011-08-24 02:57:52 +02:00
|
|
|
}.bind(this));
|
|
|
|
};
|
|
|
|
|
2011-11-10 20:36:01 +01:00
|
|
|
DBot.prototype.cleanNick = function(key) {
|
|
|
|
key = key.toLowerCase();
|
|
|
|
while(key.endsWith("_")) {
|
|
|
|
if(this.db.quoteArrs.hasOwnProperty(key)) {
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
key = key.substring(0, key.length-1);
|
|
|
|
}
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
2012-02-11 17:26:29 +01:00
|
|
|
new DBot(timers);
|