var quotes = function(dbot) { var name = 'quotes'; var quotes = dbot.db.quoteArrs; var addStack = []; var rmAllowed = true; // Retrieve a random quote from a given category, interpolating any quote // references (~~QUOTE CATEGORY~~) within it var interpolatedQuote = function(key, quoteTree) { if(quoteTree !== undefined && quoteTree.indexOf(key) != -1) { return ''; } else if(quoteTree === undefined) { quoteTree = []; } var quoteString = quotes[key].random(); // Parse quote interpolations var quoteRefs = quoteString.match(/~~([\d\w\s-]*)~~/g); var thisRef; while(quoteRefs && (thisRef = quoteRefs.shift()) !== undefined) { var cleanRef = dbot.cleanNick(thisRef.replace(/^~~/,'').replace(/~~$/,'').trim()); if (quotes.hasOwnProperty(cleanRef)) { quoteTree.push(key); quoteString = quoteString.replace("~~" + cleanRef + "~~", interpolatedQuote(cleanRef, quoteTree.slice())); quoteTree.pop(); } } return quoteString; }; var commands = { // Alternative syntax to ~q '~': function(event) { commands['~q'](event); }, // Retrieve quote from a category in the database. '~q': function(event) { var key = event.input[1].trim().toLowerCase(); var altKey; if(key.split(' ').length > 0) { altKey = key.replace(/ /g, '_'); } if(key.charAt(0) !== '_') { // lol if(quotes.hasOwnProperty(key)) { event.reply(key + ': ' + interpolatedQuote(key)); } else if(quotes.hasOwnProperty(altKey)) { event.reply(altKey + ': ' + interpolatedQuote(altKey)); } else { event.reply(dbot.t('category_not_found', {'category': key})); } } }, // Shows a list of the biggest categories '~qstats': function(event) { var qSizes = Object.prototype.sort(quotes, function(key, obj) { return obj[key].length }); qSizes = qSizes.slice(qSizes.length - 10).reverse(); var qString = dbot.t('large_categories'); for(var i=0;i 0) { event.reply(dbot.t('prune', {'categories': pruned.join(", ")})); } else { event.reply(dbot.t('no_prune')); } } }; commands['~'].regex = [/^~([\d\w\s-]*)/, 2]; commands['~q'].regex = [/^~q ([\d\w\s-]*)/, 2]; commands['~qsearch'].regex = [/^~qsearch ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3]; commands['~rmlast'].regex = [/^~rmlast ([\d\w\s-]*)/, 2]; commands['~qadd'].regex = [/^~qadd ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3]; return { 'name': 'quotes', 'ignorable': true, 'commands': commands, 'onLoad': function() { dbot.timers.addTimer(1000 * 60 * 3, function() { rmAllowed = true; }); }, 'listener': function(event) { if((dbot.db.ignores.hasOwnProperty(event) && dbot.db.ignores[event.user].include(name)) == false) { if(event.user == 'reality') { var once = event.message.valMatch(/^I ([\d\w\s,'-]* once)/, 2); } else { var once = event.message.valMatch(/^reality ([\d\w\s,'-]* once)/, 2); } if(once) { if((dbot.db.bans.hasOwnProperty('~qadd') && dbot.db.bans['~qadd'].include(event.user)) || dbot.db.bans['*'].include(event.user)) { event.reply(dbot.t('command_ban', {'user': event.user})); } else { if(!dbot.db.quoteArrs.hasOwnProperty('realityonce')) { dbot.db.quoteArrs['realityonce'] = []; } if(dbot.db.quoteArrs['realityonce'].include('reality ' + once[1] + '.')) { event.reply(event.user + ': reality has already done that once.'); } else { dbot.db.quoteArrs['realityonce'].push('reality ' + once[1] + '.'); addStack.push('realityonce'); rmAllowed = true; event.reply('\'reality ' + once[1] + '.\' saved.'); } } } } }, 'on': 'PRIVMSG' }; }; exports.fetch = function(dbot) { return quotes(dbot); };