dbot/modules/quotes.js

245 lines
9.8 KiB
JavaScript
Raw Normal View History

var quotes = function(dbot) {
2011-08-22 20:24:23 +02:00
var quotes = dbot.db.quoteArrs;
var addStack = [];
var rmAllowed = true;
var commands = {
'~q': function(data, params) {
2011-12-12 15:08:56 +01:00
var q = data.message.valMatch(/^~q ([\d\w\s-]*)/, 2);
if(q) {
q[1] = q[1].trim();
key = q[1].toLowerCase();
if(quotes.hasOwnProperty(key)) {
2012-03-07 23:13:31 +01:00
dbot.say(data.channel, q[1] + ': ' + dbot.interpolatedQuote(key));
} else {
dbot.say(data.channel, 'Nobody loves ' + q[1]);
}
}
},
// shows the biggest categories
'~qstats': function(data, params) {
var qSizes = [];
for(var cat in quotes) {
if(quotes[cat].length != 0) {
qSizes.push([cat, quotes[cat].length]);
}
}
qSizes = qSizes.sort(function(a, b) { return a[1] - b[1]; });
2012-02-28 15:26:12 +01:00
qSizes = qSizes.slice(qSizes.length - 10).reverse();
var qString = "Largest categories: ";
for(var i=0;i<qSizes.length;i++) {
qString += qSizes[i][0] + " (" + qSizes[i][1] + "), ";
}
dbot.say(data.channel, qString.slice(0, -2));
},
2011-12-13 16:48:55 +01:00
2011-10-13 18:36:35 +02:00
'~qsearch': function(data, params) {
if(params[2] === undefined) {
dbot.say(data.channel, 'Next time provide a search parameter. Commence incineration.');
} else {
params[1].trim();
key = params[1].toLowerCase();
if(!quotes.hasOwnProperty(key)) {
2011-10-13 18:36:35 +02:00
dbot.say(data.channel, 'That category has no quotes in it. Commence incineration.');
} else {
var matches = [];
quotes[key].each(function(quote) {
2011-10-13 18:36:35 +02:00
if(quote.indexOf(params[2]) != -1) {
matches.push(quote);
}
}.bind(this));
if(matches.length == 0) {
dbot.say(data.channel, 'No results found.');
} else {
dbot.say(data.channel, params[1] + ' (' + params[2] + '): ' + matches.random() + ' [' + matches.length + ' results]');
}
}
}
},
2011-10-09 17:06:28 +02:00
'~rmlast': function(data, params) {
2011-09-04 16:55:12 +02:00
if(rmAllowed == true || data.user == dbot.admin) {
2011-12-12 15:08:56 +01:00
var q = data.message.valMatch(/^~rmlast ([\d\w\s-]*)/, 2);
2011-09-04 16:49:52 +02:00
if(q) {
q[1] = q[1].trim()
key = q[1].toLowerCase();
2011-09-04 16:49:52 +02:00
if(quotes.hasOwnProperty(q[1])) {
2012-02-13 04:50:39 +01:00
if(!dbot.db.locks.include(q[1]) || data.user == dbot.admin) {
var quote = quotes[key].pop();
if(quotes[key].length === 0) {
delete quotes[key];
}
2011-10-14 14:24:18 +02:00
rmAllowed = false;
dbot.say(data.channel, '\'' + quote + '\' removed from ' + q[1]);
} else {
2011-10-14 14:26:51 +02:00
dbot.say(data.channel, q[1] + ' is locked. Commence incineration.');
2011-10-14 14:24:18 +02:00
}
2011-09-04 16:49:52 +02:00
} else {
dbot.say(data.channel, 'No quotes exist under ' + q[1]);
2011-09-04 16:43:51 +02:00
}
} else {
2011-09-04 16:49:52 +02:00
var last = addStack.pop();
if(last) {
2011-10-14 14:24:18 +02:00
if(!dbot.db.locks.include(last)) {
quotes[last].pop();
rmAllowed = false;
dbot.say(data.channel, 'Last quote removed from ' + last + '.');
} else {
dbot.say(data.channel, last + ' is locked. Commence incineration.');
}
2011-09-04 16:49:52 +02:00
} else {
dbot.say(data.channel, 'No quotes were added recently.');
}
}
} else {
dbot.say(data.channel, 'No spamming that shit. Try again in a few minutes...');
}
2011-10-09 17:06:28 +02:00
},
'~rm': function(data, params) {
if(rmAllowed == true || data.user == dbot.admin) {
var q = data.message.valMatch(/^~rm ([\d\w\s-]*) (.+)$/, 3);
if(q) {
if(quotes.hasOwnProperty(q[1])) {
if(!dbot.db.locks.include(q[1])) {
var index = quotes[q[1]].indexOf(q[2]);
if(index != -1) {
quotes[q[1]].splice(index, 1);
rmAllowed = false;
dbot.say(data.channel, '\'' + q[2] + '\' removed from ' + q[1]);
} else {
dbot.say(data.channel, '\'' + q[2] + '\' doesn\'t exist under user \'' + q[1] + '\'.');
}
} else {
dbot.say(data.channel, q[1] + ' is locked. Initiate incineration.');
}
} else {
dbot.say(data.channel, 'No quotes exist under ' + q[1]);
}
} else {
dbot.say(data.channel, 'Invalid syntax. Initiate incineration.');
}
} else {
dbot.say(data.channel, 'No spamming that shit. Try again in a few minutes...');
}
},
'~qcount': function(data, params) {
2011-12-12 15:08:56 +01:00
var q = data.message.valMatch(/^~qcount ([\d\w\s-]*)/, 2);
if(q) {
q[1] = q[1].trim();
key = q[1].toLowerCase();
if(quotes.hasOwnProperty(key)) {
dbot.say(data.channel, q[1] + ' has ' + quotes[key].length + ' quotes.');
} else {
dbot.say(data.channel, 'No quotes under ' + q[1]);
}
2011-11-29 14:18:59 +01:00
} else { // Give total quote count
var totalQuoteCount = 0;
2011-11-29 14:20:47 +01:00
for(var category in quotes) {
2011-11-29 14:28:22 +01:00
console.log('adding ' + category.length);
2011-11-29 14:18:59 +01:00
totalQuoteCount += category.length;
}
dbot.say(data.channel, 'There are ' + totalQuoteCount + ' quotes in total.');
}
},
'~qadd': function(data, params) {
2011-12-12 15:06:05 +01:00
var q = data.message.valMatch(/^~qadd ([\d\w\s-]*)=(.+)$/, 3);
if(q) {
key = q[1].toLowerCase();
if(!Object.isArray(quotes[key])) {
quotes[key] = [];
} else {
if (q[2] in quotes[key]) {
dbot.say(data.channel, 'Quote already in DB. Initiate incineration.');
return;
}
}
quotes[key].push(q[2]);
addStack.push(q[1]);
rmAllowed = true;
dbot.say(data.channel, 'Quote saved in \'' + q[1] + '\' (' + quotes[key].length + ')');
2011-09-24 19:49:43 +02:00
} else {
dbot.say(data.channel, 'Invalid syntax. Initiate incineration.');
}
},
'~qset': function(data, params) {
2011-12-12 15:08:56 +01:00
var q = data.message.valMatch(/^~qset ([\d\w\s-]*)=(.+)$/, 3);
if(q) {
q[1] = q[1].trim();
key = q[1].toLowerCase();
if(!quotes.hasOwnProperty(key) || (quotes.hasOwnProperty(key) &&
quotes[key].length == 1)) {
quotes[key] = [q[2]];
dbot.say(data.channel, 'Quote saved as ' + q[1]);
} else {
dbot.say(data.channel, 'No replacing arrays, you whore.');
}
}
},
'~rq': function(data, params) {
var rQuote = Object.keys(quotes).random();
2012-03-07 23:13:31 +01:00
dbot.say(data.channel, rQuote + ': ' + dbot.interpolatedQuote(rQuote));
},
'~d': function(data, params) {
2012-03-07 23:13:31 +01:00
dbot.say(data.channel, data.user + ': ' + dbot.interpolatedQuote('depressionbot'));
},
'~link': function(data, params) {
2012-01-08 22:58:40 +01:00
if(params[1] === undefined || !quotes.hasOwnProperty(params[1].toLowerCase())) {
dbot.say(data.channel, 'Syntax error. Commence incineration.');
} else {
dbot.say(data.channel, 'Link to "'+params[1]+'" - http://nc.no.de:443/quotes/'+params[1]);
}
}
};
return {
'onLoad': function() {
dbot.timers.addTimer(1000 * 60 * 3, function() {
rmAllowed = true;
});
return commands;
2011-10-06 14:14:56 +02:00
},
// For automatic quote retrieval
'listener': function(data, params) {
if(data.user == 'reality') {
var once = data.message.valMatch(/^I ([\d\w\s,'-]* once)/, 2);
} else {
var once = data.message.valMatch(/^reality ([\d\w\s,'-]* once)/, 2);
}
if(once) {
2011-10-12 16:39:35 +02:00
if((dbot.db.bans.hasOwnProperty('~qadd') &&
dbot.db.bans['~qadd'].include(data.user)) ||
dbot.db.bans['*'].include(data.user)) {
dbot.say(data.channel, data.user + ' is banned from using this command. Commence incineration.');
2011-10-12 16:36:51 +02:00
} else {
dbot.db.quoteArrs['realityonce'].push('reality ' + once[1] + '.');
addStack.push('realityonce');
rmAllowed = true;
dbot.instance.say(data.channel, '\'reality ' + once[1] + '.\' saved.');
}
2011-10-06 14:14:56 +02:00
}
},
'on': 'PRIVMSG'
};
};
exports.fetch = function(dbot) {
return quotes(dbot);
2011-11-08 17:22:40 +01:00
};