sysinfo: Add static and network intf providers

This commit is contained in:
Girish Ramakrishnan
2019-10-29 16:12:58 -07:00
parent 7d987d7c79
commit 813454ca82
3 changed files with 52 additions and 18 deletions

View File

@@ -0,0 +1,25 @@
'use strict';
exports = module.exports = {
getServerIp: getServerIp
};
var assert = require('assert'),
BoxError = require('../boxerror.js'),
debug = require('box:sysinfo/network-interface'),
os = require('os');
function getServerIp(config, callback) {
assert.strictEqual(typeof config, 'object');
assert.strictEqual(typeof callback, 'function');
const ifaces = os.networkInterfaces();
const iface = ifaces[config.ifname]; // array of addresses
if (!iface) return callback(new BoxError(BoxError.NETWORK_ERROR, `No interface named ${config.ifname}`));
const addresses = iface.filter(i => i.family === 'IPv4').map(i => i.address);
if (addresses.length === 0) return callback(new BoxError(BoxError.NETWORK_ERROR, `${config.ifname} does not have any IPv4 address`));
if (addresses.length > 1) debug(`${config.ifname} has multiple ipv4 - ${JSON.stringify(addresses)}. choosing the first one.`);
return callback(null, addresses[0]);
}