mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 17:25:19 +01:00
38 lines
809 B
JavaScript
38 lines
809 B
JavaScript
var request = require('request');
|
|
|
|
module.exports = require('./core').extend({
|
|
init: function() {
|
|
this._super();
|
|
this.options.port = 7878;
|
|
},
|
|
run: function() {
|
|
var self = this;
|
|
request({
|
|
uri: 'http://'+this.options.address+':'+this.options.port+'/status',
|
|
timeout: 3000,
|
|
}, function(e,r,body) {
|
|
if(e) return self.error('HTTP error');
|
|
var json;
|
|
try {
|
|
json = JSON.parse(body);
|
|
} catch(e) {
|
|
return self.error('Invalid JSON');
|
|
}
|
|
|
|
if(json.status != 200) return self.error('Invalid status');
|
|
|
|
var players = [];
|
|
var split = json.players.split(',');
|
|
split.forEach(function(one) {
|
|
players.push({name:one});
|
|
});
|
|
|
|
self.finish({
|
|
'name': json.name,
|
|
'port': json.port,
|
|
'numplayers': json.playercount,
|
|
'players': players
|
|
});
|
|
});
|
|
}
|
|
});
|