dbot/modules/words/words.js

34 lines
970 B
JavaScript
Raw Normal View History

var Wordnik = require('wordnik');
var words = function(dbot) {
this.commands = {
'~define': function(event) {
var query = event.params[1];
2013-07-28 23:26:04 +02:00
this.wn.definitions(encodeURIComponent(query), function(err, defs) {
if(!err && defs[0]) {
event.reply(query + ': ' + defs[0].text);
} else {
event.reply('No definitions found for ' + query);
}
});
2013-07-08 13:02:27 +02:00
},
'~jimble': function(event) {
event.reply(event.params[1].split('').sort(function() {
return (Math.round(Math.random()) - 0.5);
}).join(''));
}
};
2013-07-08 13:02:27 +02:00
this.commands['~jimble'].regex = [/^~jimble (.+)$/, 2];
this.onLoad = function() {
this.wn = new Wordnik({
'api_key': this.config.api_key
});
}.bind(this);
};
exports.fetch = function(dbot) {
return new words(dbot);
};