diff options
| author | Your Name <you@example.com> | 2013-02-05 12:29:45 +0000 | 
|---|---|---|
| committer | Your Name <you@example.com> | 2013-02-05 12:29:45 +0000 | 
| commit | c5bd7df1ba5839e1a5a018381a109025d7bb3c6a (patch) | |
| tree | ddee180f43a9300c2be09e6676f781e8f0462a4b /util/lib | |
| parent | b55bb65e05f6645d87470b94ef56ec0c3d6c160d (diff) | |
| parent | 5b87cdd1f83e8191f01ac9e9c3441e2a47874a20 (diff) | |
Merge branch 'master' of https://github.com/krebscode/painload
Diffstat (limited to 'util/lib')
| -rw-r--r-- | util/lib/geo/Makefile | 15 | ||||
| -rw-r--r-- | util/lib/geo/index.js | 48 | ||||
| -rw-r--r-- | util/lib/geo/package.json | 7 | 
3 files changed, 70 insertions, 0 deletions
| diff --git a/util/lib/geo/Makefile b/util/lib/geo/Makefile new file mode 100644 index 00000000..d13cd471 --- /dev/null +++ b/util/lib/geo/Makefile @@ -0,0 +1,15 @@ +all: node_modules GeoLiteCity.dat + +node_modules: package.json +	npm install +	@touch -r $< $@ + +GeoLiteCity.dat: +	@test -e GeoLiteCity.dat && ln -s GeoLiteCity.dat $@ || { \ +		echo 'No GeoIP City database found.'; \ +		echo 'You can get one from http://dev.maxmind.com/geoip/geolite:'; \ +		echo '  wget -N http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz'; \ +		echo '  gunzip GeoLiteCity.dat.gz'; \ +		exit 23; \ +	} + diff --git a/util/lib/geo/index.js b/util/lib/geo/index.js new file mode 100644 index 00000000..0763b1a4 --- /dev/null +++ b/util/lib/geo/index.js @@ -0,0 +1,48 @@ +function slurp (stream, callback) { +  var data = [] +  stream.on('data', function (chunk) { +    data.push(chunk) +  }) +  stream.on('end', function () { +    callback(null, Buffer.concat(data)) +  }) +  stream.resume() +} + + +var path = require('path') +var city_dat = path.join(__dirname, 'GeoLiteCity.dat') + +var geoip = require('geoip') +var city = new geoip.City(city_dat) + +slurp(process.stdin, function (err, data) { +  var lines = data.toString().split('\n') +  // remove last, empty element (caused by the [mandatory] final \n) +  if (lines.length > 1 && lines[lines.length - 1] === '') { +    lines.pop() +  } +  var name = 0, addr = 1 +  lines +    .map(function (line) { return line.split(' ') }) +    .forEach(function (host) { +      //city.lookup(host[addr], function (err, loc) { +      //  if (err) { +      //    console.error('#', host[name], err.message) +      //  } else { +      //    console.log(host[name] + ': ' + loc.longitude + ',' + loc.latitude) +      //  } +      //}) +      var loc = city.lookupSync(host[addr]) +      //if (!loc) { console.error('#', host[name]) } +      if (loc) { +        var a = loc.latitude +        var b = loc.longitude +        //var c = loc.altitude +        //var geo = 'geo:' + [a,b,c].join(',') +        var geo = 'geo:' + [a,b].join(',') + +        console.log(host[name], geo) +      } +    }) +}) diff --git a/util/lib/geo/package.json b/util/lib/geo/package.json new file mode 100644 index 00000000..ad449a62 --- /dev/null +++ b/util/lib/geo/package.json @@ -0,0 +1,7 @@ +{ +  "name": "geo", +  "version": "0.0.0", +  "dependencies": { +    "geoip": "*" +  } +} | 
