Skip to content

Instantly share code, notes, and snippets.

@anhldbk
Created August 10, 2016 04:35
Show Gist options
  • Save anhldbk/cc86f7f7d229ce24fc48a88b3bfaa8a6 to your computer and use it in GitHub Desktop.
Save anhldbk/cc86f7f7d229ce24fc48a88b3bfaa8a6 to your computer and use it in GitHub Desktop.
Get globally unique IDs for machines
'use strict'
const os = require('os')
const crypto = require( "crypto" )
const _ = require('lodash')
// Get MAC addresses of public interfaces
// @return: List of addresses
function getPublicInterfaces(){
// get network interfaces
var interfaces = os.networkInterfaces()
interfaces = _.values(interfaces)
var mapOp = function(iface){
// only get public interfaces
if( _.isNil(iface.internal) || iface.internal == true){
return null
}
return iface.mac
}
interfaces = _.flatten(interfaces)
interfaces = _.map(interfaces, mapOp)
var filterOp = function(iface){
return iface !== null
}
interfaces = _.filter(interfaces, filterOp)
return interfaces
}
// Get models of CPU cores
// @return: List of models
function getCpuModels(){
var cpus = os.cpus()
var mapOp = function(cpu){
return cpu.model
}
cpus = _.map(cpus, mapOp)
return cpus
}
// Get Machine Id
// @return: Unique Id string for the machine
function getMachineId(){
var interfaces = getPublicInterfaces()
var cpus = getCpuModels()
var uid = _.join(interfaces, '#') + _.join(cpus, '#')
uid = crypto.createHash( "sha256" ).update( uid ).digest( "HEX" )
return uid
}
module.exports = getMachineId
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment