~wikipedia

This commit is contained in:
reality 2016-03-03 17:31:42 +00:00
parent fd1a76d3bc
commit 86c570a8c8

View File

@ -0,0 +1,79 @@
/**
* 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);
});
},
'~wikipedia': 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);
};