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) {
|
|
|
|
var commands = {
|
2013-03-24 12:09:40 +01:00
|
|
|
/*** Quote Addition ***/
|
|
|
|
|
|
|
|
// Add a quote to a category
|
|
|
|
'~qadd': function(event) {
|
2013-06-30 17:11:56 +02:00
|
|
|
var key = event.input[1].toLowerCase().trim(),
|
2013-04-13 00:30:45 +02:00
|
|
|
quote = event.input[2];
|
2013-03-24 12:09:40 +01:00
|
|
|
|
2013-04-13 00:30:45 +02:00
|
|
|
this.api.addQuote(key, quote, event.user, function(newCount) {
|
2013-04-22 17:50:05 +02:00
|
|
|
if(newCount) {
|
|
|
|
dbot.api.event.emit('~qadd', [ key, quote ]);
|
2014-09-28 19:48:36 +02:00
|
|
|
if(_.has(dbot.modules, 'web')) {
|
|
|
|
event.reply(dbot.t('quote_saved', {
|
|
|
|
'category': key,
|
|
|
|
'count': newCount,
|
2014-12-24 01:19:25 +01:00
|
|
|
'link': dbot.api.web.getUrl('/quotes/' + key)
|
2014-09-28 19:48:36 +02:00
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('quote_saved', {
|
|
|
|
'category': key,
|
|
|
|
'count': newCount
|
|
|
|
}));
|
|
|
|
}
|
2013-04-22 17:50:05 +02:00
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('quote_exists'));
|
|
|
|
}
|
2013-04-13 00:30:45 +02:00
|
|
|
});
|
2013-03-24 12:09:40 +01:00
|
|
|
},
|
|
|
|
|
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 23:08:11 +02:00
|
|
|
var key = event.input[1];
|
2013-09-01 00:57:29 +02:00
|
|
|
this.api.getInterpolatedQuote(event.server, event.channel,
|
|
|
|
event.user, key, function(quote) {
|
2013-04-12 23:08:11 +02:00
|
|
|
if(quote) {
|
|
|
|
event.reply(key + ': ' + quote);
|
2013-04-12 02:38:51 +02:00
|
|
|
} else {
|
2013-08-17 20:13:38 +02:00
|
|
|
event.reply(dbot.t('category_not_found', { 'category': key }));
|
2013-03-23 14:24:13 +01:00
|
|
|
}
|
2013-05-27 19:33:10 +02:00
|
|
|
}.bind(this));
|
2013-03-23 14:24:13 +01:00
|
|
|
},
|
|
|
|
|
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) {
|
2013-04-22 16:22:35 +02:00
|
|
|
if(result) {
|
|
|
|
categories.push(result);
|
|
|
|
}
|
2013-04-12 02:38:51 +02:00
|
|
|
}, 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 21:28:23 +02:00
|
|
|
/*** Quote Removal ***/
|
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-13 00:30:45 +02:00
|
|
|
this.api.addQuote(quote.key, quote.quote, event.user, function(newCount) { });
|
2013-05-20 21:51:09 +02:00
|
|
|
}.bind(this));
|
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 }));
|
|
|
|
},
|
|
|
|
|
|
|
|
'~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(),
|
2013-04-12 21:28:23 +02:00
|
|
|
category = false,
|
|
|
|
removedQuote;
|
|
|
|
var quoteRemoved = function(err) {
|
|
|
|
this.internalAPI.resetRemoveTimer(event, key, removedQuote);
|
2014-09-28 19:48:36 +02:00
|
|
|
if(_.has(dbot.modules, 'web')) {
|
|
|
|
event.reply(dbot.t('removed_from', {
|
|
|
|
'quote': removedQuote,
|
|
|
|
'category': key,
|
2014-12-24 01:19:25 +01:00
|
|
|
'link': dbot.api.web.getUrl('/quotes/' + key)
|
2014-09-28 19:48:36 +02:00
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('removed_from', {
|
|
|
|
'quote': removedQuote,
|
|
|
|
'category': key
|
|
|
|
}));
|
|
|
|
}
|
2013-04-12 21:28:23 +02:00
|
|
|
}.bind(this);
|
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) {
|
2013-04-12 21:28:23 +02:00
|
|
|
removedQuote = category.quotes.pop();
|
|
|
|
if(category.quotes.length == 0) {
|
|
|
|
this.db.del('quote_category', category.id, quoteRemoved);
|
|
|
|
} else {
|
|
|
|
this.db.save('quote_category', category.id, category, quoteRemoved);
|
|
|
|
}
|
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 }));
|
|
|
|
}
|
|
|
|
}.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-04-12 21:28:23 +02:00
|
|
|
var quoteRemoved = function(err) {
|
|
|
|
this.internalAPI.resetRemoveTimer(event, key, quote);
|
2014-09-28 19:48:36 +02:00
|
|
|
if(_.has(dbot.modules, 'web')) {
|
|
|
|
event.reply(dbot.t('removed_from', {
|
|
|
|
'category': key,
|
|
|
|
'quote': quote,
|
2014-12-24 01:19:25 +01:00
|
|
|
'link': dbot.api.web.getUrl('/quotes/' + key)
|
2014-09-28 19:48:36 +02:00
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('removed_from', {
|
|
|
|
'category': key,
|
|
|
|
'quote': quote
|
|
|
|
}));
|
|
|
|
}
|
2013-04-12 21:28:23 +02:00
|
|
|
}.bind(this);
|
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);
|
2013-04-12 21:28:23 +02:00
|
|
|
if(category.quotes.length == 0) {
|
|
|
|
this.db.del('quote_category', category.id, quoteRemoved);
|
|
|
|
} else {
|
|
|
|
this.db.save('quote_category', category.id, category, quoteRemoved);
|
|
|
|
}
|
2013-04-12 02:38:51 +02:00
|
|
|
} 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-04-12 23:52:46 +02:00
|
|
|
|
|
|
|
if(haystack == '*') {
|
|
|
|
var matches = [];
|
|
|
|
this.db.scan('quote_category', function(category) {
|
|
|
|
if(category) {
|
|
|
|
var theseMatches =_.each(category.quotes, function(quote) {
|
|
|
|
if(quote.indexOf(needle) != -1) {
|
|
|
|
matches.push({
|
|
|
|
'category': category.name,
|
|
|
|
'quote': quote
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, function(err) {
|
|
|
|
if(matches.length > 0) {
|
2013-03-23 14:24:13 +01:00
|
|
|
event.reply(dbot.t('search_results', {
|
2013-04-12 23:52:46 +02:00
|
|
|
'category': matches[0].category,
|
2013-03-23 14:24:13 +01:00
|
|
|
'needle': needle,
|
2017-03-25 01:40:52 +01:00
|
|
|
'quote': matches[_.random(0, _.size(matches) -1)].quote,
|
2013-03-23 14:24:13 +01:00
|
|
|
'matches': matches.length
|
|
|
|
}));
|
2013-04-12 23:52:46 +02:00
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('no_results'));
|
2013-03-23 14:24:13 +01:00
|
|
|
}
|
2013-04-12 23:52:46 +02:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.db.search('quote_category', { 'name': haystack }, function(result) {
|
|
|
|
category = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(category) {
|
|
|
|
var matches = _.filter(category.quotes, function(quote) {
|
|
|
|
return quote.indexOf(needle) != -1;
|
|
|
|
});
|
|
|
|
|
|
|
|
if(matches.length == 0) {
|
|
|
|
event.reply(dbot.t('no_results'));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('search_results', {
|
|
|
|
'category': haystack,
|
|
|
|
'needle': needle,
|
2017-03-25 01:43:31 +01:00
|
|
|
'quote': matches[_.random(0, _.size(matches) -1)],
|
2013-04-12 23:52:46 +02:00
|
|
|
'matches': matches.length
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('empty_category'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
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-04-12 20:20:39 +02:00
|
|
|
event.reply(dbot.t('category_not_found', { 'category': key }));
|
2013-03-16 14:45:58 +01:00
|
|
|
}
|
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-04-12 20:20:39 +02:00
|
|
|
// Merge a quote category insto another
|
|
|
|
'~qmerge': function(event) {
|
|
|
|
var primaryName = event.input[1],
|
|
|
|
secondName = event.input[2],
|
|
|
|
primary = false,
|
|
|
|
secondary = false;
|
|
|
|
|
|
|
|
this.db.search('quote_category', { 'name': primaryName }, function(result) {
|
|
|
|
primary = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(primary) {
|
|
|
|
this.db.search('quote_category', { 'name': secondName }, function(result) {
|
|
|
|
secondary = result;
|
|
|
|
}, function(err) {
|
|
|
|
if(secondary) {
|
|
|
|
primary.quotes = _.union(primary.quotes, secondary.quotes);
|
|
|
|
this.db.save('quote_category', primary.id, primary, function(err) {
|
|
|
|
this.db.del('quote_category', secondary.id, function(err) {
|
|
|
|
event.reply(dbot.t('categories_merged', {
|
|
|
|
'from': secondName,
|
|
|
|
'into': primaryName
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}.bind(this));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('category_not_found', { 'category': secondName }));
|
|
|
|
}
|
|
|
|
}.bind(this));
|
|
|
|
} else {
|
|
|
|
event.reply(dbot.t('category_not_found', { 'category': primaryName }));
|
|
|
|
}
|
|
|
|
}.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) {
|
2013-07-05 01:20:09 +02:00
|
|
|
if(_.has(dbot.modules, 'web')) {
|
2013-03-24 12:09:40 +01:00
|
|
|
event.reply(dbot.t('quote_link', {
|
|
|
|
'category': key,
|
2014-12-24 01:19:25 +01:00
|
|
|
'url': dbot.api.web.getUrl('/quotes/' + key)
|
2013-03-24 12:09:40 +01:00
|
|
|
}));
|
|
|
|
} 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
|
|
|
};
|
|
|
|
|
2013-12-29 19:38:24 +01:00
|
|
|
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];
|
|
|
|
commands['~qadd'].regex = [/^qadd ([\d\w-]+[\d\w\s-]*)[ ]?=[ ]?(.+)$/, 3];
|
|
|
|
commands['~qrename'].regex = [/^qrename ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3];
|
|
|
|
commands['~qmerge'].regex = [/^qmerge ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3];
|
|
|
|
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-04-13 16:59:50 +02:00
|
|
|
commands['~qmerge'].access = 'moderator';
|
2013-01-15 15:47:46 +01:00
|
|
|
|
|
|
|
return commands;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.fetch = function(dbot) {
|
|
|
|
return commands(dbot);
|
|
|
|
};
|