var _ = require('underscore')._; var quotes = function(dbot) { var quotes = dbot.db.quoteArrs, addStack = [], rmAllowed = true, rmCache = dbot.sessionData.rmCache, rmTimer; dbot.sessionData.rmCache = []; // Retrieve a random quote from a given category, interpolating any quote // references (~~QUOTE CATEGORY~~) within it var interpolatedQuote = function(event, key, quoteTree) { if(!_.isUndefined(quoteTree) && quoteTree.indexOf(key) != -1) { return ''; } else if(_.isUndefined(quoteTree)) { quoteTree = []; } var index = _.random(0, quotes[key].length - 1); var quoteString = quotes[key][index]; // 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(cleanRef === '-nicks-') { var randomNick = _.keys(event.channel.nicks)[_.random(0, _.size(event.channel.nicks) -1)]; quoteString = quoteString.replace("~~" + cleanRef + "~~", randomNick); quoteTree.pop(); } else if(_.has(quotes, cleanRef)) { quoteTree.push(key); quoteString = quoteString.replace("~~" + cleanRef + "~~", interpolatedQuote(event, cleanRef, quoteTree.slice())); quoteTree.pop(); } } return quoteString; }; var resetRemoveTimer = function(event, key, quote) { rmAllowed = false; dbot.timers.addOnceTimer(5000, function() { rmAllowed = true; }); rmCache.push({ 'key': key, 'quote': quote }); dbot.timers.clearTimeout(rmTimer); if(rmCache.length < dbot.config.quotes.rmLimit) { rmTimer = dbot.timers.addOnceTimer(600000, function() { rmCache.length = 0; // lol what }); } else { _.each(dbot.config.admins, function(admin) { dbot.say(event.server, admin, dbot.t('rm_cache_limit')); }); } }; var api = { 'getQuote': function(event, category) { var key = category.trim().toLowerCase(); var altKey; if(key.split(' ').length > 0) { altKey = key.replace(/ /g, '_'); } if(key.charAt(0) !== '_') { // lol if(_.has(quotes, key)) { return interpolatedQuote(event, key); } else if(_.has(quotes, altKey)) { return interpolatedQuote(event, altKey); } else { return false; } } } }; var commands = { // Alternative syntax to ~q '~': function(event) { commands['~q'](event); }, '~rmstatus': function(event) { var rmCacheCount = rmCache.length; if(rmCacheCount < dbot.config.quotes.rmLimit) { event.reply(dbot.t('quote_cache_auto_remove', { 'count': rmCacheCount })); } else { event.reply(dbot.t('quote_cache_manual_remove', { 'count': rmCacheCount })); } }, '~rmconfirm': function(event) { var rmCacheCount = rmCache.length; rmCache.length = 0; event.reply(dbot.t('quote_cache_cleared', { 'count': rmCacheCount })); }, '~rmdeny': function(event) { var rmCacheCount = rmCache.length; for(var i=0;i