2013-04-13 00:30:45 +02:00
|
|
|
var _ = require('underscore')._,
|
|
|
|
uuid = require('node-uuid');
|
2013-01-12 22:40:16 +01:00
|
|
|
|
2012-12-11 17:04:52 +01:00
|
|
|
var quotes = function(dbot) {
|
2013-01-15 15:51:07 +01:00
|
|
|
dbot.sessionData.rmCache = [];
|
2013-04-13 00:30:45 +02:00
|
|
|
this.rmCache = dbot.sessionData.rmCache;
|
|
|
|
this.quotes = dbot.db.quoteArrs;
|
|
|
|
this.rmAllowed = true;
|
2013-01-15 15:47:46 +01:00
|
|
|
this.rmTimer;
|
2012-12-11 17:04:52 +01:00
|
|
|
|
2013-01-15 15:47:46 +01:00
|
|
|
this.internalAPI = {
|
2013-04-13 00:30:45 +02:00
|
|
|
// Parse quote interpolations
|
2013-04-12 23:08:11 +02:00
|
|
|
'interpolatedQuote': function(server, channel, key, quote, callback) {
|
|
|
|
var quoteRefs = quote.match(/~~([\d\w\s-]*)~~/g);
|
|
|
|
if(quoteRefs) {
|
2013-04-30 19:19:23 +02:00
|
|
|
var ref = this.internalAPI.cleanRef(quoteRefs[0].replace(/^~~/,'').replace(/~~$/,'').trim());
|
2013-04-12 23:08:11 +02:00
|
|
|
if(ref === '-nicks-') {
|
|
|
|
dbot.api.users.getRandomChannelUser(server, channel, function(user) {
|
2013-08-30 04:47:44 +02:00
|
|
|
quote = quote.replace('~~' + ref + '~~', user.currentNick);
|
2013-04-12 23:08:11 +02:00
|
|
|
this.internalAPI.interpolatedQuote(server, channel, key, quote, callback);
|
|
|
|
}.bind(this));
|
|
|
|
} else {
|
|
|
|
this.api.getQuote(ref, function(interQuote) {
|
|
|
|
if(!interQuote || ref == key) {
|
|
|
|
interQuote = '';
|
|
|
|
}
|
|
|
|
quote = quote.replace('~~' + ref + '~~', interQuote);
|
2013-08-30 04:55:20 +02:00
|
|
|
console.log('lol');
|
2013-04-12 23:08:11 +02:00
|
|
|
this.internalAPI.interpolatedQuote(server, channel, key, quote, callback);
|
|
|
|
}.bind(this));
|
2013-01-15 15:47:46 +01:00
|
|
|
}
|
2013-04-12 23:08:11 +02:00
|
|
|
} else {
|
|
|
|
callback(quote);
|
2013-01-15 15:47:46 +01:00
|
|
|
}
|
|
|
|
}.bind(this),
|
2013-01-12 22:40:16 +01:00
|
|
|
|
2013-04-30 19:19:23 +02:00
|
|
|
'cleanRef': function(key) {
|
|
|
|
key = key.toLowerCase();
|
2013-06-27 17:26:21 +02:00
|
|
|
while(key.slice(-1) == '_') {
|
2013-04-30 19:19:23 +02:00
|
|
|
key = key.substring(0, key.length-1);
|
|
|
|
}
|
|
|
|
return key;
|
|
|
|
},
|
|
|
|
|
2013-01-15 15:47:46 +01:00
|
|
|
'resetRemoveTimer': function(event, key, quote) {
|
|
|
|
this.rmAllowed = false;
|
2013-01-27 21:52:11 +01:00
|
|
|
setTimeout(function() {
|
2013-01-15 15:47:46 +01:00
|
|
|
this.rmAllowed = true;
|
2013-01-27 21:52:11 +01:00
|
|
|
}.bind(this), 5000);
|
2013-01-15 15:47:46 +01:00
|
|
|
|
|
|
|
this.rmCache.push({
|
|
|
|
'key': key,
|
|
|
|
'quote': quote
|
2013-01-12 22:40:16 +01:00
|
|
|
});
|
2013-01-15 15:47:46 +01:00
|
|
|
|
2013-01-27 21:33:27 +01:00
|
|
|
clearTimeout(this.rmTimer);
|
2013-06-27 17:26:21 +02:00
|
|
|
if(this.rmCache.length < this.config.rmLimit) {
|
2013-01-27 21:52:11 +01:00
|
|
|
this.rmTimer = setTimeout(function() {
|
2013-01-15 15:47:46 +01:00
|
|
|
this.rmCache.length = 0; // lol what
|
2013-01-27 21:52:11 +01:00
|
|
|
}.bind(this), 600000);
|
2013-01-15 15:47:46 +01:00
|
|
|
} else {
|
|
|
|
_.each(dbot.config.admins, function(admin) {
|
|
|
|
dbot.say(event.server, admin, dbot.t('rm_cache_limit'));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}.bind(this)
|
2012-12-19 22:03:03 +01:00
|
|
|
};
|
|
|
|
|
2013-01-15 15:47:46 +01:00
|
|
|
this.api = {
|
2013-04-13 00:30:45 +02:00
|
|
|
'addQuote': function(key, quote, user, callback) {
|
|
|
|
var key = key.toLowerCase().trim(),
|
|
|
|
newCount,
|
|
|
|
category = false;
|
|
|
|
|
|
|
|
this.db.search('quote_category', { 'name': key }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(!category) {
|
|
|
|
var id = uuid.v4();
|
|
|
|
category = {
|
|
|
|
'id': id,
|
|
|
|
'name': key,
|
|
|
|
'quotes': [],
|
|
|
|
'owner': user
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-04-22 17:50:05 +02:00
|
|
|
if(_.include(category.quotes, quote)) {
|
|
|
|
callback(false);
|
|
|
|
} else {
|
|
|
|
newCount = category.quotes.push(quote);
|
|
|
|
this.db.save('quote_category', category.id, category, function(err) {
|
|
|
|
this.rmAllowed = true;
|
|
|
|
callback(newCount);
|
|
|
|
}.bind(this));
|
|
|
|
}
|
2013-04-13 00:30:45 +02:00
|
|
|
}.bind(this));
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-04-12 23:08:11 +02:00
|
|
|
'getQuote': function(key, callback) {
|
2013-04-23 19:26:44 +02:00
|
|
|
this.api.getQuoteCategory(key, function(category) {
|
2013-04-12 23:08:11 +02:00
|
|
|
if(category) {
|
|
|
|
var quotes = category.quotes;
|
|
|
|
var index = _.random(0, quotes.length - 1);
|
|
|
|
callback(quotes[index]);
|
2013-01-03 22:27:06 +01:00
|
|
|
} else {
|
2013-04-12 23:08:11 +02:00
|
|
|
callback(false);
|
2013-01-03 22:27:06 +01:00
|
|
|
}
|
2013-04-12 23:08:11 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
'getInterpolatedQuote': function(server, channel, key, callback) {
|
|
|
|
key = key.trim().toLowerCase(),
|
|
|
|
|
|
|
|
this.api.getQuote(key, function(quote) {
|
2013-04-22 16:22:35 +02:00
|
|
|
if(quote) {
|
|
|
|
this.internalAPI.interpolatedQuote(server, channel, key, quote, callback);
|
|
|
|
} else {
|
|
|
|
callback(quote);
|
|
|
|
}
|
2013-04-12 23:08:11 +02:00
|
|
|
}.bind(this));
|
2013-04-23 19:26:44 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
'getQuoteCategory': function(key, callback) {
|
|
|
|
var category = false,
|
|
|
|
key = key.trim().toLowerCase();
|
|
|
|
|
|
|
|
this.db.search('quote_category', { 'name': key }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
callback(category);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
'getCategoryKeys': function(callback) {
|
|
|
|
var keys = [];
|
|
|
|
this.db.scan('quote_category', function(result) {
|
|
|
|
if(result) keys.push(result.name);
|
|
|
|
}, function(err) {
|
|
|
|
callback(keys);
|
|
|
|
});
|
2013-01-03 22:27:06 +01:00
|
|
|
}
|
|
|
|
};
|
2013-01-15 15:47:46 +01:00
|
|
|
|
|
|
|
this.listener = function(event) {
|
|
|
|
if(event.action == 'PRIVMSG') {
|
|
|
|
if(event.user == 'reality') {
|
|
|
|
var once = event.message.valMatch(/^I ([\d\w\s,'-]* once)/, 2);
|
2012-12-19 22:03:03 +01:00
|
|
|
} else {
|
2013-01-15 15:47:46 +01:00
|
|
|
var once = event.message.valMatch(/^reality ([\d\w\s,'-]* once)/, 2);
|
2012-12-19 22:03:03 +01:00
|
|
|
}
|
|
|
|
|
2013-01-15 15:47:46 +01:00
|
|
|
if(once) {
|
2013-04-13 00:30:45 +02:00
|
|
|
this.api.addQuote('realityonce', 'reality' + once[1], event.user, function(newCount) {
|
|
|
|
event.reply('\'reality ' + once[1] + '\' saved (' + newCount + ').');
|
|
|
|
});
|
2013-01-15 15:47:46 +01:00
|
|
|
}
|
|
|
|
} else if(event.action == 'JOIN') {
|
2013-05-17 09:04:57 +02:00
|
|
|
if(this.config.quotesOnJoin == true) {
|
2013-05-17 09:40:46 +02:00
|
|
|
this.api.getQuote(event.user, function(quote) {
|
|
|
|
if(quote) {
|
|
|
|
event.reply(event.user + ': ' + quote);
|
|
|
|
}
|
|
|
|
});
|
2012-12-19 22:03:03 +01:00
|
|
|
}
|
2013-01-15 15:47:46 +01:00
|
|
|
}
|
|
|
|
}.bind(this);
|
|
|
|
this.on = ['PRIVMSG', 'JOIN'];
|
2012-12-11 17:04:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.fetch = function(dbot) {
|
2013-01-15 15:47:46 +01:00
|
|
|
return new quotes(dbot);
|
2012-12-11 17:04:52 +01:00
|
|
|
};
|