2015-11-02 06:57:30 +00:00
|
|
|
var mcpe_ping = require('mcpe-ping');
|
2015-11-02 07:42:11 +00:00
|
|
|
var mcpc_ping = require('mc-ping-updated');
|
2015-11-02 04:56:08 +00:00
|
|
|
|
2015-11-09 00:34:17 +00:00
|
|
|
var util = require('./util');
|
2015-11-03 07:40:09 +00:00
|
|
|
|
2015-11-02 08:24:55 +00:00
|
|
|
// This is a wrapper function for mc-ping-updated, mainly used to convert the data structure of the result.
|
2016-03-02 03:09:38 +00:00
|
|
|
function pingMinecraftPC(host, port, timeout, callback, version) {
|
2015-11-09 00:34:17 +00:00
|
|
|
var startTime = util.getCurrentTimeMs();
|
2015-11-02 04:56:08 +00:00
|
|
|
|
2015-11-26 01:29:00 +00:00
|
|
|
mcpc_ping(host, port, function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
callback(err, null);
|
|
|
|
} else {
|
|
|
|
// Remap our JSON into our custom structure.
|
|
|
|
callback(null, {
|
|
|
|
players: {
|
|
|
|
online: res.players.online,
|
|
|
|
max: res.players.max
|
|
|
|
},
|
|
|
|
version: res.version.protocol,
|
|
|
|
latency: util.getCurrentTimeMs() - startTime,
|
|
|
|
favicon: res.favicon
|
|
|
|
});
|
|
|
|
}
|
2016-03-02 03:09:38 +00:00
|
|
|
}, timeout, version);
|
2015-11-02 07:04:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is a wrapper function for mcpe-ping, mainly used to convert the data structure of the result.
|
2015-11-02 06:57:30 +00:00
|
|
|
function pingMinecraftPE(host, port, timeout, callback) {
|
2015-11-09 00:34:17 +00:00
|
|
|
var startTime = util.getCurrentTimeMs();
|
2015-11-26 01:29:00 +00:00
|
|
|
|
|
|
|
mcpe_ping(host, port || 19132, function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
callback(err, null);
|
|
|
|
} else {
|
|
|
|
// Remap our JSON into our custom structure.
|
|
|
|
callback(err, {
|
|
|
|
players: {
|
|
|
|
online: parseInt(res.currentPlayers),
|
|
|
|
max: parseInt(res.maxPlayers)
|
|
|
|
},
|
|
|
|
version: res.version,
|
|
|
|
latency: util.getCurrentTimeMs() - startTime
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, timeout);
|
2015-11-02 06:57:30 +00:00
|
|
|
}
|
|
|
|
|
2016-03-02 03:09:38 +00:00
|
|
|
exports.ping = function(host, port, type, timeout, callback, version) {
|
2015-11-02 04:56:08 +00:00
|
|
|
if (type === 'PC') {
|
2016-06-09 03:26:32 +00:00
|
|
|
util.unfurlSRV(host, port, function(host, port){
|
|
|
|
pingMinecraftPC(host, port || 25565, timeout, callback, version);
|
|
|
|
})
|
2015-11-02 04:56:08 +00:00
|
|
|
} else if (type === 'PE') {
|
2015-11-02 06:57:30 +00:00
|
|
|
pingMinecraftPE(host, port || 19132, timeout, callback);
|
2015-11-02 04:56:08 +00:00
|
|
|
} else {
|
|
|
|
throw new Error('Unsupported type: ' + type);
|
|
|
|
}
|
2016-03-02 03:09:38 +00:00
|
|
|
};
|