2011-08-22 19:56:36 +02:00
|
|
|
var quotes = function(dbot) {
|
2012-04-15 23:04:58 +02:00
|
|
|
var name = 'quotes';
|
2011-08-22 20:24:23 +02:00
|
|
|
var quotes = dbot.db.quoteArrs;
|
2011-09-04 16:39:03 +02:00
|
|
|
var addStack = [];
|
|
|
|
var rmAllowed = true;
|
2012-03-14 15:35:37 +01:00
|
|
|
|
|
|
|
// Retrieve a random quote from a given category, interpolating any quote references (~~QUOTE CATEGORY~~) within it
|
2012-03-17 14:53:58 +01:00
|
|
|
var interpolatedQuote = function(key, quoteTree) {
|
2012-03-15 13:52:47 +01:00
|
|
|
if(quoteTree !== undefined && quoteTree.indexOf(key) != -1) {
|
|
|
|
return '';
|
|
|
|
} else if(quoteTree === undefined) {
|
|
|
|
quoteTree = [];
|
|
|
|
}
|
|
|
|
|
2012-03-14 15:35:37 +01:00
|
|
|
var quoteString = quotes[key].random();
|
2012-03-17 14:38:03 +01:00
|
|
|
|
|
|
|
// Parse quote interpolations
|
2012-03-14 15:35:37 +01:00
|
|
|
var quoteRefs = quoteString.match(/~~([\d\w\s-]*)~~/g);
|
|
|
|
var thisRef;
|
2012-03-15 13:52:47 +01:00
|
|
|
|
|
|
|
while(quoteRefs && (thisRef = quoteRefs.shift()) !== undefined) {
|
2012-03-27 16:04:32 +02:00
|
|
|
var cleanRef = dbot.cleanNick(thisRef.replace(/^~~/,'').replace(/~~$/,'').trim());
|
2012-03-14 15:35:37 +01:00
|
|
|
if (quotes.hasOwnProperty(cleanRef)) {
|
2012-03-15 13:52:47 +01:00
|
|
|
quoteTree.push(key);
|
|
|
|
quoteString = quoteString.replace("~~" + cleanRef + "~~",
|
|
|
|
interpolatedQuote(cleanRef, quoteTree.slice()));
|
2012-03-14 15:35:37 +01:00
|
|
|
quoteTree.pop();
|
|
|
|
}
|
|
|
|
}
|
2012-03-15 13:52:47 +01:00
|
|
|
|
2012-03-17 14:38:03 +01:00
|
|
|
// Parse quote parameters
|
2012-03-17 14:51:01 +01:00
|
|
|
/*
|
2012-03-17 14:38:03 +01:00
|
|
|
var paramRefs = quoteString.match(/~~\$([1-9])~~/g);
|
|
|
|
var thisParam;
|
|
|
|
|
|
|
|
while(paramRefs && (thisParam = paramRefs.shift()) !== undefined) {
|
2012-03-17 14:45:36 +01:00
|
|
|
thisParam = thisParam[1];
|
2012-03-17 14:49:08 +01:00
|
|
|
console.log(thisParam);
|
2012-03-17 14:38:03 +01:00
|
|
|
if(thisParam < params.length) {
|
2012-03-17 14:47:06 +01:00
|
|
|
quoteString = quoteString.replace("~~$" + thisParam + "~~", params[thisParam]);
|
2012-03-17 14:38:03 +01:00
|
|
|
}
|
|
|
|
}
|
2012-03-17 14:51:01 +01:00
|
|
|
*/
|
2012-03-17 14:38:03 +01:00
|
|
|
|
2012-03-14 15:35:37 +01:00
|
|
|
return quoteString;
|
|
|
|
};
|
2012-03-17 14:38:03 +01:00
|
|
|
|
2011-08-28 16:00:22 +02:00
|
|
|
var commands = {
|
|
|
|
'~q': function(data, params) {
|
2011-12-12 15:08:56 +01:00
|
|
|
var q = data.message.valMatch(/^~q ([\d\w\s-]*)/, 2);
|
2011-08-28 16:00:22 +02:00
|
|
|
if(q) {
|
2011-11-10 19:29:06 +01:00
|
|
|
q[1] = q[1].trim();
|
|
|
|
key = q[1].toLowerCase();
|
2011-08-28 16:00:22 +02:00
|
|
|
if(quotes.hasOwnProperty(key)) {
|
2012-03-17 14:53:58 +01:00
|
|
|
dbot.say(data.channel, q[1] + ': ' + interpolatedQuote(key));
|
2011-08-28 16:00:22 +02:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('category_not_found', {'category': q[1]}));
|
2011-08-28 16:00:22 +02:00
|
|
|
}
|
2011-08-22 14:20:06 +02:00
|
|
|
}
|
|
|
|
},
|
2012-02-28 15:25:13 +01:00
|
|
|
|
|
|
|
// 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();
|
2012-02-28 15:25:13 +01:00
|
|
|
|
2012-05-19 17:33:31 +02:00
|
|
|
var qString = dbot.t('large_categories');
|
2012-02-28 15:25:13 +01:00
|
|
|
|
|
|
|
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) {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('syntax_error'));
|
2011-10-13 18:36:35 +02:00
|
|
|
} else {
|
2011-11-10 19:29:06 +01:00
|
|
|
params[1].trim();
|
|
|
|
key = params[1].toLowerCase();
|
|
|
|
if(!quotes.hasOwnProperty(key)) {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('empty_category'));
|
2011-10-13 18:36:35 +02:00
|
|
|
} else {
|
|
|
|
var matches = [];
|
|
|
|
|
2011-11-10 19:29:06 +01:00
|
|
|
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) {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('no_results'));
|
2011-10-13 18:36:35 +02:00
|
|
|
} 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) {
|
2012-03-10 15:38:47 +01:00
|
|
|
if(rmAllowed == true || dbot.admin.include(data.user)) {
|
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) {
|
2011-11-10 19:29:06 +01:00
|
|
|
q[1] = q[1].trim()
|
|
|
|
key = q[1].toLowerCase();
|
2011-09-04 16:49:52 +02:00
|
|
|
if(quotes.hasOwnProperty(q[1])) {
|
2012-03-10 15:38:47 +01:00
|
|
|
if(!dbot.db.locks.include(q[1]) || dbot.admin.include(data.user)) {
|
2011-11-10 19:29:06 +01:00
|
|
|
var quote = quotes[key].pop();
|
2012-02-27 16:15:30 +01:00
|
|
|
if(quotes[key].length === 0) {
|
2012-02-27 16:11:43 +01:00
|
|
|
delete quotes[key];
|
|
|
|
}
|
2011-10-14 14:24:18 +02:00
|
|
|
rmAllowed = false;
|
2012-03-25 00:48:28 +01:00
|
|
|
dbot.say(data.channel, '\'' + quote + '\'' +
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.t('removed_from') + q[1]);
|
2011-10-14 14:24:18 +02:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('locked_category', {'category': q[1]}));
|
2011-10-14 14:24:18 +02:00
|
|
|
}
|
2011-09-04 16:49:52 +02:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('no_quotes', {'category': q[1]}));
|
2011-09-04 16:43:51 +02:00
|
|
|
}
|
2011-09-04 16:39:03 +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;
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('last_removed', {'category': last}));
|
2011-10-14 14:24:18 +02:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('locked_category', {'category': last}));
|
2011-10-14 14:24:18 +02:00
|
|
|
}
|
2011-09-04 16:49:52 +02:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('no_recent_adds'));
|
2011-09-04 16:49:52 +02:00
|
|
|
}
|
2011-09-04 16:39:03 +02:00
|
|
|
}
|
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('rmlast_spam'));
|
2011-09-04 16:39:03 +02:00
|
|
|
}
|
2011-10-09 17:06:28 +02:00
|
|
|
},
|
2011-09-04 16:39:03 +02:00
|
|
|
|
2012-01-14 11:27:23 +01:00
|
|
|
'~rm': function(data, params) {
|
2012-03-10 15:38:47 +01:00
|
|
|
if(rmAllowed == true || dbot.admin.include(data.user)) {
|
2012-01-14 11:27:23 +01:00
|
|
|
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);
|
2012-03-10 18:48:49 +01:00
|
|
|
if(quotes[q[1]].length === 0) {
|
|
|
|
delete quotes[q[1]];
|
|
|
|
}
|
2012-01-14 11:27:23 +01:00
|
|
|
rmAllowed = false;
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('removed_from', {'category': q[1], 'quote': q[2]}));
|
2012-01-14 11:27:23 +01:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('q_not_exist_under', {'category': q[1], 'quote': q[2]}));
|
2012-01-14 11:27:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('locked_category', {'category': q[1]}));
|
2012-01-14 11:27:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('no_quotes', {'category': q[1]}));
|
2012-01-14 11:27:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('syntax_error'));
|
2012-01-14 11:27:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('rmlast_spam'));
|
2012-01-14 11:27:23 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-08-28 16:00:22 +02:00
|
|
|
'~qcount': function(data, params) {
|
2011-12-12 15:08:56 +01:00
|
|
|
var q = data.message.valMatch(/^~qcount ([\d\w\s-]*)/, 2);
|
2011-08-28 16:00:22 +02:00
|
|
|
if(q) {
|
2011-11-10 19:29:06 +01:00
|
|
|
q[1] = q[1].trim();
|
|
|
|
key = q[1].toLowerCase();
|
2011-08-28 16:00:22 +02:00
|
|
|
if(quotes.hasOwnProperty(key)) {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('quote_count', {'category': q[1], 'count': quotes[key].length}));
|
2011-08-28 16:00:22 +02:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('no_quotes', {'category': q[1]}));
|
2011-08-28 16:00:22 +02:00
|
|
|
}
|
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:18:59 +01:00
|
|
|
totalQuoteCount += category.length;
|
|
|
|
}
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('total_quotes', {'count': totalQuoteCount}));
|
2011-08-22 14:20:06 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-08-28 16:00:22 +02:00
|
|
|
'~qadd': function(data, params) {
|
2012-03-17 14:22:25 +01:00
|
|
|
var q = data.message.valMatch(/^~qadd ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3);
|
2011-08-28 16:00:22 +02:00
|
|
|
if(q) {
|
2011-11-10 19:29:06 +01:00
|
|
|
key = q[1].toLowerCase();
|
|
|
|
if(!Object.isArray(quotes[key])) {
|
|
|
|
quotes[key] = [];
|
2011-11-08 14:42:22 +01:00
|
|
|
} else {
|
2012-03-19 19:48:12 +01:00
|
|
|
if (quotes[key].include(q[2])) {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('quote_exists'));
|
2011-11-08 14:42:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-08-28 16:00:22 +02:00
|
|
|
}
|
2011-11-10 19:29:06 +01:00
|
|
|
quotes[key].push(q[2]);
|
2011-09-04 16:39:03 +02:00
|
|
|
addStack.push(q[1]);
|
|
|
|
rmAllowed = true;
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('quote_saved', {'category': q[1], 'count': quotes[key].length}));
|
2011-09-24 19:49:43 +02:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('syntax_error'));
|
2011-08-22 14:20:06 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-08-28 16:00:22 +02:00
|
|
|
'~qset': function(data, params) {
|
2011-12-12 15:08:56 +01:00
|
|
|
var q = data.message.valMatch(/^~qset ([\d\w\s-]*)=(.+)$/, 3);
|
2011-08-28 16:00:22 +02:00
|
|
|
if(q) {
|
2011-11-10 19:29:06 +01:00
|
|
|
q[1] = q[1].trim();
|
|
|
|
key = q[1].toLowerCase();
|
|
|
|
if(!quotes.hasOwnProperty(key) || (quotes.hasOwnProperty(key) &&
|
|
|
|
quotes[key].length == 1)) {
|
|
|
|
quotes[key] = [q[2]];
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('quote_saved', {'category': q[1], 'count': 1}));
|
2011-08-28 16:00:22 +02:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('quote_replace'));
|
2011-08-28 16:00:22 +02:00
|
|
|
}
|
2011-08-22 14:20:06 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-08-28 16:00:22 +02:00
|
|
|
'~rq': function(data, params) {
|
2011-08-22 14:20:06 +02:00
|
|
|
var rQuote = Object.keys(quotes).random();
|
2012-03-17 14:53:58 +01:00
|
|
|
dbot.say(data.channel, rQuote + ': ' + interpolatedQuote(rQuote));
|
2011-08-28 16:00:22 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
'~d': function(data, params) {
|
2012-03-17 14:53:58 +01:00
|
|
|
dbot.say(data.channel, data.user + ': ' + interpolatedQuote(dbot.name));
|
2011-11-08 14:42:22 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
'~link': function(data, params) {
|
2012-01-08 22:58:40 +01:00
|
|
|
if(params[1] === undefined || !quotes.hasOwnProperty(params[1].toLowerCase())) {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('syntax_error'));
|
2011-11-08 14:42:22 +01:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('quote_link', {'category': params[1]}) +
|
|
|
|
' - http://nc.no.de:443/quotes/' + params[1]);
|
2011-11-08 14:42:22 +01:00
|
|
|
}
|
2012-03-10 19:10:04 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
'~qprune': function(data) {
|
|
|
|
var pruned = []
|
|
|
|
for(key in quotes) {
|
|
|
|
if(quotes.hasOwnProperty(key)) {
|
|
|
|
if(quotes[key].length == 0) {
|
|
|
|
delete quotes[key];
|
|
|
|
pruned.push(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(pruned.length > 0) {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('prune', {'categories': pruned.join(", ")}));
|
2012-03-10 19:10:04 +01:00
|
|
|
} else {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('no_prune'));
|
2012-03-10 19:10:04 +01:00
|
|
|
}
|
2011-08-30 17:13:47 +02:00
|
|
|
}
|
2011-08-28 16:00:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
'onLoad': function() {
|
2011-09-04 16:39:03 +02:00
|
|
|
dbot.timers.addTimer(1000 * 60 * 3, function() {
|
|
|
|
rmAllowed = true;
|
|
|
|
});
|
2011-08-28 16:00:22 +02:00
|
|
|
return commands;
|
2011-10-06 14:14:56 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// For automatic quote retrieval
|
|
|
|
'listener': function(data, params) {
|
2012-04-15 23:04:58 +02:00
|
|
|
if((dbot.db.ignores.hasOwnProperty(data.user) &&
|
|
|
|
dbot.db.ignores[data.user].include(name)) == false) {
|
|
|
|
if(data.user == 'reality') {
|
|
|
|
var once = data.message.valMatch(/^I ([\d\w\s,'-]* once)/, 2);
|
2011-10-12 16:36:51 +02:00
|
|
|
} else {
|
2012-04-15 23:04:58 +02:00
|
|
|
var once = data.message.valMatch(/^reality ([\d\w\s,'-]* once)/, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(once) {
|
|
|
|
if((dbot.db.bans.hasOwnProperty('~qadd') &&
|
|
|
|
dbot.db.bans['~qadd'].include(data.user)) ||
|
|
|
|
dbot.db.bans['*'].include(data.user)) {
|
2012-05-19 17:33:31 +02:00
|
|
|
dbot.say(data.channel, dbot.t('command_ban', {'user': data.user}));
|
2012-04-15 23:04:58 +02:00
|
|
|
} else {
|
|
|
|
if(!dbot.db.quoteArrs.hasOwnProperty('realityonce')) {
|
|
|
|
dbot.db.quoteArrs['realityonce'] = [];
|
|
|
|
}
|
|
|
|
dbot.db.quoteArrs['realityonce'].push('reality ' + once[1] + '.');
|
|
|
|
addStack.push('realityonce');
|
|
|
|
rmAllowed = true;
|
|
|
|
dbot.instance.say(data.channel, '\'reality ' + once[1] + '.\' saved.');
|
2012-03-10 19:38:56 +01:00
|
|
|
}
|
2011-10-12 16:36:51 +02:00
|
|
|
}
|
2011-10-06 14:14:56 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-04-15 22:43:02 +02:00
|
|
|
'on': 'PRIVMSG',
|
|
|
|
|
2012-04-15 23:04:58 +02:00
|
|
|
'name': name,
|
2012-04-15 22:43:02 +02:00
|
|
|
|
|
|
|
'ignorable': true
|
2011-08-22 14:20:06 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2011-08-22 19:56:36 +02:00
|
|
|
exports.fetch = function(dbot) {
|
|
|
|
return quotes(dbot);
|
2011-11-08 17:22:40 +01:00
|
|
|
};
|