2013-03-16 14:45:58 +01:00
|
|
|
var _ = require('underscore')._,
|
|
|
|
databank = require('databank'),
|
2013-04-12 02:38:51 +02:00
|
|
|
uuid = require('node-uuid');
|
2013-01-15 15:47:46 +01:00
|
|
|
|
|
|
|
var commands = function(dbot) {
|
2013-01-23 17:12:08 +01:00
|
|
|
var quotes = dbot.db.quoteArrs;
|
2013-01-15 15:47:46 +01:00
|
|
|
var commands = {
|
2013-03-24 12:09:40 +01:00
|
|
|
/*** Quote Addition ***/
|
|
|
|
|
|
|
|
// Add a quote to a category
|
|
|
|
'~qadd': function(event) {
|
2013-04-12 02:38:51 +02:00
|
|
|
var key = event.input[1].toLowerCase().trim(),
|
|
|
|
quote = event.input[2],
|
2013-04-12 19:33:13 +02:00
|
|
|
newCount,
|
|
|
|
category = false;
|
2013-03-24 12:09:40 +01:00
|
|
|
|
2013-04-12 02:38:51 +02:00
|
|
|
this.db.search('quote_category', { 'name': key }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(!category) {
|
|
|
|
var id = uuid.v4();
|
2013-04-12 19:33:13 +02:00
|
|
|
category = {
|
2013-04-12 02:38:51 +02:00
|
|
|
'id': id,
|
|
|
|
'name': key,
|
2013-04-12 19:33:13 +02:00
|
|
|
'quotes': [],
|
2013-04-12 02:38:51 +02:00
|
|
|
'creator': event.user
|
2013-04-12 19:33:13 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
newCount = category.quotes.push(quote);
|
|
|
|
this.db.save('quote_category', category.id, category, function(err) {
|
|
|
|
this.rmAllowed = true;
|
|
|
|
dbot.api.event.emit('~qadd', {
|
|
|
|
'key': key,
|
|
|
|
'text': quote
|
|
|
|
});
|
|
|
|
event.reply(dbot.t('quote_saved', {
|
|
|
|
'category': key,
|
|
|
|
'count': newCount
|
|
|
|
}));
|
|
|
|
});
|
2013-03-24 12:09:40 +01:00
|
|
|
}.bind(this));
|
|
|
|
},
|
|
|
|
|
2013-03-23 14:24:13 +01:00
|
|
|
/*** Quote Retrieval ***/
|
|
|
|
|
|
|
|
// Alternative ~q syntax
|
2013-01-15 15:47:46 +01:00
|
|
|
'~': function(event) {
|
|
|
|
commands['~q'].bind(this)(event);
|
|
|
|
},
|
|
|
|
|
2013-03-23 14:24:13 +01:00
|
|
|
// Retrieve quote from a category in the database.
|
|
|
|
'~q': function(event) {
|
2013-04-12 02:38:51 +02:00
|
|
|
var name = event.input[1].trim().toLowerCase(),
|
|
|
|
category = false;
|
|
|
|
|
|
|
|
this.db.search('quote_category', { 'name': name }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(category) {
|
|
|
|
var quotes = category.quotes;
|
|
|
|
var index = _.random(0, quotes.length - 1);
|
|
|
|
event.reply(name + ': ' + quotes[index]);
|
|
|
|
} else {
|
2013-03-23 14:24:13 +01:00
|
|
|
event.reply(dbot.t('category_not_found', { 'category': name }));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-04-12 02:38:51 +02:00
|
|
|
// Choose a random quote category and a random quote from that
|
|
|
|
// TODO: This is quite inefficient, but databank must evolve to do otherwise.
|
2013-03-24 12:09:40 +01:00
|
|
|
'~rq': function(event) {
|
2013-04-12 02:38:51 +02:00
|
|
|
var categories = [];
|
|
|
|
this.db.scan('quote_category', function(result) {
|
|
|
|
categories.push(result);
|
|
|
|
}, function(err) {
|
|
|
|
var cIndex = _.random(0, _.size(categories) -1);
|
|
|
|
var qIndex = _.random(0, categories[cIndex].quotes.length - 1);
|
|
|
|
event.reply(categories[cIndex].name + ': ' + categories[cIndex].quotes[qIndex]);
|
|
|
|
});
|
2013-03-24 12:09:40 +01:00
|
|
|
},
|
|
|
|
|
2013-04-12 02:38:51 +02:00
|
|
|
/*** Quote Removal
|
|
|
|
TODO: Remove empty quote categories
|
|
|
|
***/
|
2013-03-23 14:24:13 +01:00
|
|
|
|
|
|
|
// Show number of quotes in removal cache
|
2013-01-15 15:47:46 +01:00
|
|
|
'~rmstatus': function(event) {
|
|
|
|
var rmCacheCount = this.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 }));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-03-23 14:24:13 +01:00
|
|
|
// Confirm removal of quote cache
|
2013-01-15 15:47:46 +01:00
|
|
|
'~rmconfirm': function(event) {
|
|
|
|
var rmCacheCount = this.rmCache.length;
|
|
|
|
this.rmCache.length = 0;
|
|
|
|
event.reply(dbot.t('quote_cache_cleared',
|
|
|
|
{ 'count': rmCacheCount }));
|
|
|
|
},
|
|
|
|
|
2013-03-23 14:24:13 +01:00
|
|
|
// Reinstate all quotes in removal cache
|
2013-01-15 15:47:46 +01:00
|
|
|
'~rmdeny': function(event) {
|
|
|
|
var rmCache = this.rmCache;
|
|
|
|
var rmCacheCount = rmCache.length;
|
2013-03-23 14:24:13 +01:00
|
|
|
|
|
|
|
_.each(rmCache, function(quote, index) {
|
2013-04-12 02:38:51 +02:00
|
|
|
//TODO: Add quote add API func
|
|
|
|
var qadd = _.clone(event);
|
|
|
|
qadd.message = '~qadd ' + quote.key + '=' + quote.quote;
|
|
|
|
dbot.instance.emit(qadd);
|
2013-03-23 14:24:13 +01:00
|
|
|
});
|
2013-01-15 15:47:46 +01:00
|
|
|
|
2013-03-23 14:24:13 +01:00
|
|
|
rmCache.length = 0;
|
2013-01-15 15:47:46 +01:00
|
|
|
event.reply(dbot.t('quote_cache_reinstated',
|
|
|
|
{ 'count': rmCacheCount }));
|
|
|
|
},
|
|
|
|
|
2013-03-23 14:24:13 +01:00
|
|
|
// Remove last quote from category
|
2013-01-15 15:47:46 +01:00
|
|
|
'~rmlast': function(event) {
|
2013-01-27 21:52:11 +01:00
|
|
|
if(this.rmAllowed === true || _.include(dbot.config.admins, event.user)) {
|
2013-04-12 02:38:51 +02:00
|
|
|
var key = event.input[1].trim().toLowerCase(),
|
|
|
|
category = false;
|
2013-01-15 15:47:46 +01:00
|
|
|
|
2013-04-12 02:38:51 +02:00
|
|
|
this.db.search('quote_category', { 'name': key }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(category) {
|
|
|
|
var removedQuote = category.quotes.pop();
|
|
|
|
this.db.save('quote_category', category.id, category, function(err) {
|
|
|
|
this.internalAPI.resetRemoveTimer(event, key, removedQuote);
|
|
|
|
event.reply(dbot.t('removed_from', {
|
|
|
|
'quote': removedQuote,
|
|
|
|
'category': key
|
|
|
|
}));
|
|
|
|
}.bind(this));
|
|
|
|
} else {
|
2013-03-23 14:24:13 +01:00
|
|
|
event.reply(dbot.t('category_not_found', { 'category': key }));
|
|
|
|
}
|
|
|
|
}.bind(this));
|
2013-01-15 15:47:46 +01:00
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('rmlast_spam'));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-03-23 14:24:13 +01:00
|
|
|
// Remove specific quote from category
|
2013-01-15 15:47:46 +01:00
|
|
|
'~rm': function(event) {
|
|
|
|
if(this.rmAllowed == true || _.include(dbot.config.admins, event.user)) {
|
|
|
|
var key = event.input[1].trim().toLowerCase();
|
2013-04-12 02:38:51 +02:00
|
|
|
quote = event.input[2],
|
|
|
|
category = false;
|
2013-01-15 15:47:46 +01:00
|
|
|
|
2013-04-12 02:38:51 +02:00
|
|
|
this.db.search('quote_category', { 'name': key }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(category) {
|
|
|
|
if(category.quotes.indexOf(quote) != -1) {
|
|
|
|
category.quotes = _.without(category.quotes, quote);
|
|
|
|
this.db.save('quote_category', category.id, category, function(err) {
|
|
|
|
this.internalAPI.resetRemoveTimer(event, key, quote);
|
|
|
|
event.reply(dbot.t('removed_from', {
|
|
|
|
'category': key,
|
|
|
|
'quote': quote
|
|
|
|
}));
|
|
|
|
}.bind(this));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('q_not_exist_under', {
|
|
|
|
'category': key,
|
|
|
|
'quote': quote
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
} else {
|
2013-03-16 14:45:58 +01:00
|
|
|
event.reply(dbot.t('category_not_found', { 'category': key }));
|
2013-01-15 15:47:46 +01:00
|
|
|
}
|
2013-03-16 14:45:58 +01:00
|
|
|
}.bind(this));
|
2013-01-15 15:47:46 +01:00
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('rmlast_spam'));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-03-23 14:24:13 +01:00
|
|
|
/*** Quote Statistics and Searching ***/
|
|
|
|
|
|
|
|
// Shows a list of the biggest categories
|
|
|
|
'~qstats': function(event) {
|
|
|
|
var quoteSizes = {};
|
|
|
|
this.db.scan('quote_category', function(category) {
|
2013-04-12 02:38:51 +02:00
|
|
|
if(category) {
|
|
|
|
quoteSizes[category.name] = category.quotes.length;
|
2013-03-23 14:24:13 +01:00
|
|
|
}
|
2013-04-12 02:38:51 +02:00
|
|
|
}.bind(this), function(err) {
|
|
|
|
var qSizes = _.chain(quoteSizes)
|
|
|
|
.pairs()
|
|
|
|
.sortBy(function(category) { return category[1] })
|
|
|
|
.reverse()
|
|
|
|
.first(10)
|
|
|
|
.value();
|
2013-03-23 14:24:13 +01:00
|
|
|
|
2013-04-12 02:38:51 +02:00
|
|
|
var qString = dbot.t('large_categories');
|
|
|
|
for(var i=0;i<qSizes.length;i++) {
|
|
|
|
qString += qSizes[i][0] + " (" + qSizes[i][1] + "), ";
|
|
|
|
}
|
2013-03-23 14:24:13 +01:00
|
|
|
|
2013-04-12 02:38:51 +02:00
|
|
|
event.reply(qString.slice(0, -2));
|
|
|
|
});
|
2013-03-23 14:24:13 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Search a given category for some text.
|
|
|
|
'~qsearch': function(event) {
|
2013-04-12 02:38:51 +02:00
|
|
|
var haystack = event.input[1].trim().toLowerCase(),
|
|
|
|
needle = event.input[2],
|
|
|
|
category = false;
|
2013-03-23 14:24:13 +01:00
|
|
|
|
2013-04-12 02:38:51 +02:00
|
|
|
this.db.search('quote_category', { 'name': haystack }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(category) {
|
|
|
|
var matches = _.filter(category.quotes, function(quote) {
|
2013-03-23 14:24:13 +01:00
|
|
|
return quote.indexOf(needle) != -1;
|
2013-04-12 02:38:51 +02:00
|
|
|
});
|
2013-03-23 14:24:13 +01:00
|
|
|
|
|
|
|
if(matches.length == 0) {
|
|
|
|
event.reply(dbot.t('no_results'));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('search_results', {
|
|
|
|
'category': haystack,
|
|
|
|
'needle': needle,
|
|
|
|
'quote': matches[0],
|
|
|
|
'matches': matches.length
|
|
|
|
}));
|
|
|
|
}
|
2013-04-12 02:38:51 +02:00
|
|
|
} else {
|
2013-03-23 14:24:13 +01:00
|
|
|
event.reply(dbot.t('empty_category'));
|
|
|
|
}
|
2013-04-12 02:38:51 +02:00
|
|
|
});
|
2013-03-23 14:24:13 +01:00
|
|
|
},
|
2013-03-24 12:09:40 +01:00
|
|
|
|
|
|
|
// Count quotes in a given category or total quotes overall
|
2013-01-15 15:47:46 +01:00
|
|
|
'~qcount': function(event) {
|
|
|
|
var input = event.message.valMatch(/^~qcount ([\d\w\s-]*)/, 2);
|
|
|
|
if(input) { // Give quote count for named category
|
2013-04-12 02:38:51 +02:00
|
|
|
var key = input[1].trim().toLowerCase(),
|
|
|
|
category = false;
|
|
|
|
|
|
|
|
this.db.search('quote_category', { 'name': key }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(category) {
|
2013-03-16 14:45:58 +01:00
|
|
|
event.reply(dbot.t('quote_count', {
|
|
|
|
'category': key,
|
2013-04-12 02:38:51 +02:00
|
|
|
'count': category.quotes.length
|
2013-03-16 14:45:58 +01:00
|
|
|
}));
|
2013-04-12 02:38:51 +02:00
|
|
|
} else {
|
2013-03-16 14:45:58 +01:00
|
|
|
event.reply(dbot.t('category_not_found', { 'category': name }));
|
|
|
|
}
|
2013-04-12 02:38:51 +02:00
|
|
|
});
|
2013-03-23 14:24:13 +01:00
|
|
|
} else {
|
|
|
|
var quoteCount = 0;
|
|
|
|
this.db.scan('quote_category', function(category) {
|
2013-04-12 02:38:51 +02:00
|
|
|
if(category) {
|
|
|
|
quoteCount += category.quotes.length;
|
2013-03-23 14:24:13 +01:00
|
|
|
}
|
2013-04-12 02:38:51 +02:00
|
|
|
}, function(err) {
|
|
|
|
event.reply(dbot.t('total_quotes', { 'count': quoteCount }));
|
|
|
|
});
|
2013-01-15 15:47:46 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-04-12 20:03:52 +02:00
|
|
|
// Rename a quote category
|
|
|
|
'~qrename': function(event) {
|
|
|
|
var oldName = event.input[1],
|
|
|
|
newName = event.input[2],
|
|
|
|
oldCategory = false,
|
|
|
|
newCategory = false;
|
|
|
|
|
|
|
|
this.db.search('quote_category', { 'name': newName }, function(result) {
|
|
|
|
newCategory = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(!newCategory) {
|
|
|
|
this.db.search('quote_category', { 'name': oldName }, function(result) {
|
|
|
|
oldCategory = result;
|
|
|
|
}, function(err) {
|
|
|
|
oldCategory.name = newName;
|
|
|
|
this.db.save('quote_category', oldCategory.id, oldCategory, function(err) {
|
|
|
|
event.reply(dbot.t('category_renamed', {
|
|
|
|
'oldName': oldName,
|
|
|
|
'newName': newName
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}.bind(this));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('newcat_exists', { 'newcat': newName }));
|
|
|
|
}
|
|
|
|
}.bind(this));
|
|
|
|
},
|
|
|
|
|
2013-03-24 12:09:40 +01:00
|
|
|
// Link to quote web page
|
2013-01-15 15:47:46 +01:00
|
|
|
'~link': function(event) {
|
2013-04-12 02:38:51 +02:00
|
|
|
var key = event.input[1].toLowerCase(),
|
|
|
|
category = false;
|
|
|
|
|
|
|
|
this.db.search('quote_category', { 'name': key }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(category) {
|
|
|
|
if(_.has(dbot.config, 'web') && _.has(dbot.config.web, 'webHost')) {
|
2013-03-24 12:09:40 +01:00
|
|
|
event.reply(dbot.t('quote_link', {
|
|
|
|
'category': key,
|
|
|
|
'url': dbot.t('url', {
|
|
|
|
'host': dbot.config.web.webHost,
|
|
|
|
'port': dbot.config.web.webPort,
|
|
|
|
'path': 'quotes/' + encodeURIComponent(key)
|
|
|
|
})
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('web_not_configured'));
|
|
|
|
}
|
2013-04-12 02:38:51 +02:00
|
|
|
} else {
|
2013-03-23 14:24:13 +01:00
|
|
|
event.reply(dbot.t('category_not_found', { 'category': key }));
|
|
|
|
}
|
|
|
|
});
|
2013-03-24 12:09:40 +01:00
|
|
|
}
|
2013-01-15 15:47:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
commands['~'].regex = [/^~([\d\w\s-]*)/, 2];
|
|
|
|
commands['~q'].regex = [/^~q ([\d\w\s-]*)/, 2];
|
|
|
|
commands['~qsearch'].regex = [/^~qsearch ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3];
|
|
|
|
commands['~rm'].regex = [/^~rm ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3];
|
|
|
|
commands['~rmlast'].regex = [/^~rmlast ([\d\w\s-]*)/, 2];
|
2013-03-21 08:42:13 +01:00
|
|
|
commands['~qadd'].regex = [/^~qadd ([\d\w-]+[\d\w\s-]*)[ ]?=[ ]?(.+)$/, 3];
|
2013-04-12 20:03:52 +02:00
|
|
|
commands['~qrename'].regex = [/^~qrename ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3];
|
2013-02-15 18:28:54 +01:00
|
|
|
commands['~link'].regex = [/^~link ([\d\w\s-]*)/, 2];
|
2013-01-15 15:47:46 +01:00
|
|
|
|
|
|
|
commands['~rmconfirm'].access = 'moderator';
|
|
|
|
commands['~rmdeny'].access = 'moderator';
|
2013-04-12 20:03:52 +02:00
|
|
|
commands['~qrename'].access = 'moderator';
|
2013-01-15 15:47:46 +01:00
|
|
|
|
|
|
|
return commands;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.fetch = function(dbot) {
|
|
|
|
return commands(dbot);
|
|
|
|
};
|