3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00
dbot/run.js

92 lines
3.2 KiB
JavaScript

var fs = require('fs');
var jsbot = require('./jsbot');
var quote = require('./quotes');
var userCommands = require('./user');
var adminCommands = require('./admin');
var puns = require('./puns');
///////////////////////////
Array.prototype.random = function() {
return this[Math.floor((Math.random()*this.length))];
};
///////////////////////////
var dbot = Class.create({
initialize: function(dModules, quotes) {
this.admin = 'reality';
this.waitingForKarma = false;
this.name = 'depressionbot';
this.db = JSON.parse(fs.readFileSync('db.json', 'utf-8'));
this.quotes = quotes.fetch(this);
this.instance = jsbot.createJSBot(this.name, 'elara.ivixor.net', 6667, this, function() {
this.instance.join('#realitest');
}.bind(this));
this.modules = dModules.collect(function(n) {
var module = n.fetch(this);
this.instance.addListener(module.on, module.listener);
return n.fetch(this);
}.bind(this));
this.instance.addListener('KICK', function(data) {
if(data.kickee == name) {
this.instance.join(data.channel);
this.instance.say(data.channel, 'Thou shalt not kick ' + name);
this.db.kicks[name] += 1;
} else {
if(this.db.kicks[data.kickee] == undefined) {
this.db.kicks[data.kickee] = 1;
} else {
this.db.kicks[data.kickee] += 1;
}
instance.say(data.channel, data.kickee + '-- (' + data.kickee + ' has been kicked ' + this.db.kicks[data.kickee] + ' times)');
}
this.save();
});
this.instance.addListener('PRIVMSG', function(data) {
if(data.user == 'aisbot' && data.channel == name && waitingForKarma != false && data.message.match(/is at/)) {
var split = data.message.split(' ');
var target = split[0];
var karma = split[3];
if(karma.startsWith('-')) {
this.instance.say(waitingForKarma, target + this.db.hatedPhrases.random() + ' (' + karma + ')');
} else if(karma == '0') {
this.instance.say(waitingForKarma, target + this.db.neutralPhrases.random() + ' (0)');
} else {
this.instance.say(waitingForKarma, target + this.db.lovedPhrases.random() + ' (' + karma + ')');
}
waitingForKarma = false;
}
});
this.instance.addListener('PRIVMSG', function(data) {
if(data.user == 'reality') {
var once = data.message.match(/I ([\d\w\s]* once.)/);
if(once != null) {
this.db.realiPuns.push('reality ' + once[1]);
this.instance.say(data.channel, '\'reality ' + once[1] + '\' saved.');
this.save();
}
}
});
this.instance.connect();
},
say: function(channel, data) {
this.instance.say(channel, data);
},
save: function() {
fs.writeFile('db.json', JSON.stringify(this.db, null, ' '));
}
});
new dbot([userCommands, adminCommands, puns], quote);