/** * Module name: Wikipedia */ var _ = require('underscore')._, request = require('request'); var wikipedia = function(dbot) { this.api = { 'randomSentence': function(term, cb) { request.get('https://en.wikipedia.org/w/api.php', { 'qs': { 'action': 'opensearch', 'search': term }, 'json': true }, function(error, response, body) { if(body && body[1].length != 0) { request.get('https://en.wikipedia.org/w/api.php?action=query&prop=revisions&rvprop=content&format=json&&titles='+body[1][0], {'json': true}, function(error, response, body) { body = body.query.pages for(var prop in body) { break; } body = body[prop].revisions[0]['*']; body = body.replace(/=(.+)=/g,''); body = body.replace(/\t/g,''); body = body.replace(/\{(.+)\}/g,''); body = body.replace(/(\[|\])/g,''); body = body.replace(/(\(|\))/g,''); console.log(body); body = body.split('\n'); var sentence = body[_.random(0, body.length -1)]; cb(sentence); }); } }); } }; this.commands = { '~lol': function(event) { this.api.randomSentence(event.input[1], function(sentence) { event.reply(sentence); }); }, '~w': function(event) { request.get('http://wikipedia.org/w/api.php', { 'qs': { 'action': 'opensearch', 'search': event.input[1], 'limit': 1, 'namespace': 0, 'format': 'json' }, 'json': true }, function(err, res, body) { if(!err && body[1].length !== 0) { event.reply(event.input[1] + ': https://wikipedia.org/wiki/'+body[1][0].replace(/\s/g, '_')); } else { event.reply(event.input[1] + ' not found.'); } }); } }; this.commands['~lol'].regex = [/^lol ([\d\w\s-]*)/, 2]; this.commands['~wikipedia'].regex = [/^wikipedia (.+)/, 2]; }; exports.fetch = function(dbot) { return new wikipedia(dbot); };