dbot/modules/quotes.js

113 lines
3.9 KiB
JavaScript
Raw Normal View History

var quotes = function(dbot) {
2011-08-22 20:24:23 +02:00
var quotes = dbot.db.quoteArrs;
var addStack = [];
var rmAllowed = true;
var commands = {
'~q': function(data, params) {
var q = data.message.valMatch(/^~q ([\d\w\s]*)/, 2);
if(q) {
key = q[1].trim().toLowerCase();
if(quotes.hasOwnProperty(key)) {
dbot.say(data.channel, key + ': ' + quotes[key].random());
} else {
dbot.say(data.channel, 'No quotes under ' + key);
}
}
},
'~rmlast': function(data, params) {
if(rmAllowed == true) {
2011-09-04 16:49:52 +02:00
var q = data.message.valMatch(/^~rmlast ([\d\w\s]*)/, 2);
if(q) {
if(quotes.hasOwnProperty(q[1])) {
var quote = quotes[q[1]].pop();
2011-09-04 16:50:51 +02:00
dbot.say(data.channel, '\'' + quote + '\' removed from ' + q[1]);
2011-09-04 16:49:52 +02:00
rmAllowed = false;
} else {
dbot.say(data.channel, 'No quotes exist under ' + q[1]);
2011-09-04 16:43:51 +02:00
}
} else {
2011-09-04 16:49:52 +02:00
var last = addStack.pop();
if(last) {
quotes[last].pop();
rmAllowed = false;
dbot.say(data.channel, 'Last quote removed from ' + last + '.');
} else {
dbot.say(data.channel, 'No quotes were added recently.');
}
}
} else {
dbot.say(data.channel, 'No spamming that shit. Try again in a few minutes...');
}
},
'~qcount': function(data, params) {
var q = data.message.valMatch(/^~qcount ([\d\w\s]*)/, 2);
if(q) {
2011-08-28 18:24:48 +02:00
key = q[1].trim().toLowerCase();
if(quotes.hasOwnProperty(key)) {
dbot.say(data.channel, key + ' has ' + quotes[key].length + ' quotes.');
} else {
dbot.say(data.channel, 'No quotes under ' + key);
}
}
},
'~qadd': function(data, params) {
var q = data.message.valMatch(/^~qadd ([\d\w\s]*)=(.+)$/, 3);
if(q) {
q[1] = q[1].toLowerCase();
if(!Object.isArray(quotes[q[1]])) {
quotes[q[1]] = [];
}
quotes[q[1]].push(q[2]);
addStack.push(q[1]);
rmAllowed = true;
dbot.say(data.channel, 'Quote saved in \'' + q[1] + '\' (' + quotes[q[1]].length + ')');
}
},
'~qset': function(data, params) {
var q = data.message.valMatch(/^~qset ([\d\w\s]*)=(.+)$/, 3);
if(q) {
q[1] = q[1].toLowerCase();
if(!quotes.hasOwnProperty(q[1]) || (quotes.hasOwnProperty(q[1]) &&
quotes[q[1]].length == 1)) {
quotes[q[1]] = [q[2]];
dbot.say(data.channel, 'Quote saved as ' + q[1]);
} else {
dbot.say(data.channel, 'No replacing arrays, you whore.');
}
}
},
'~rq': function(data, params) {
var rQuote = Object.keys(quotes).random();
dbot.say(data.channel, rQuote + ': ' + quotes[rQuote].random());
},
'~reality': function(data, params) {
dbot.say(data.channel, dbot.db.realiPuns.random());
},
'~d': function(data, params) {
dbot.say(data.channel, data.user + ': ' + dbot.db.quoteArrs['depressionbot'].random());
}
};
return {
'onLoad': function() {
dbot.timers.addTimer(1000 * 60 * 3, function() {
rmAllowed = true;
});
return commands;
}
};
};
exports.fetch = function(dbot) {
return quotes(dbot);
};