Skip to content

Bluehouse-Technology/locus

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

locus

Hex pm

locus is library for Erlang/OTP and Elixir that allows you to pinpoint the country, city or ASN of IPv4 and IPv6 addresses.

The free MaxMind databases you choose are downloaded on-demand, cached on the filesystem and updated automatically.

You're encouraged to host your own private copies of the databases when using this library in production, both for reliability and netiquette towards MaxMind.

Run make console to bring up a shell.

URL = "https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz",
ok = locus:start_loader(country, URL).
% Either block indefinitely
{ok, _DatabaseVersion} = locus:wait_for_loader(country).
% ... or give-up after 30 seconds
{ok, _DatabaseVersion} = locus:wait_for_loader(country, 30000). % {error,timeout}
% > locus:lookup(country, "93.184.216.34").
% > locus:lookup(country, "2606:2800:220:1:248:1893:25c8:1946").

{ok,#{<<"continent">> =>
          #{<<"code">> => <<"NA">>,
            <<"geoname_id">> => 6255149,
            <<"names">> =>
                #{<<"de">> => <<"Nordamerika">>,
                  <<"en">> => <<"North America">>,
                  <<"es">> => <<"Norteamérica"/utf8>>,
                  <<"fr">> => <<"Amérique du Nord"/utf8>>,
                  <<"ja">> => <<"北アメリカ"/utf8>>,
                  <<"pt-BR">> => <<"América do Norte"/utf8>>,
                  <<"ru">> => <<"Северная Америка"/utf8>>,
                  <<"zh-CN">> => <<"北美洲"/utf8>>}},
      <<"country">> =>
          #{<<"geoname_id">> => 6252001,
            <<"iso_code">> => <<"US">>,
            <<"names">> =>
                #{<<"de">> => <<"USA">>,
                  <<"en">> => <<"United States">>,
                  <<"es">> => <<"Estados Unidos">>,
                  <<"fr">> => <<"États-Unis"/utf8>>,
                  <<"ja">> => <<"アメリカ合衆国"/utf8>>,
                  <<"pt-BR">> => <<"Estados Unidos">>,
                  <<"ru">> => <<"США"/utf8>>,
                  <<"zh-CN">> => <<"美国"/utf8>>}},
      <<"registered_country">> =>
          #{<<"geoname_id">> => 6252001,
            <<"iso_code">> => <<"US">>,
            <<"names">> =>
                #{<<"de">> => <<"USA">>,
                  <<"en">> => <<"United States">>,
                  <<"es">> => <<"Estados Unidos">>,
                  <<"fr">> => <<"États-Unis"/utf8>>,
                  <<"ja">> => <<"アメリカ合衆国"/utf8>>,
                  <<"pt-BR">> => <<"Estados Unidos">>,
                  <<"ru">> => <<"США"/utf8>>,
                  <<"zh-CN">> => <<"美国"/utf8>>}}}}

Check the function reference for an overview on everything you can do.

  • Erlang/OTP 19.3 or higher
  • rebar3
  • The free GeoLite2 Country, City and ASN databases were all successfully tested; presumably locus can deal with any MaxMind DB -formatted database that maps IP address prefixes to arbitrary data, but no commercial databases have yet been tested
  • The databases are loaded into memory (mostly) as-is; reference counted binaries are shared with the application callers using ETS tables, and the original binary search tree is used to lookup addresses. The data for each entry is decoded on the fly upon successful lookups.
  • Only gzip-compressed tarballs are supported at this moment
  • The first file to be found, within the tarball, with an .mmdb extension, is the one that's chosen for loading
  • The implementation of MaxMind DB format is mostly complete
  • The downloaded tarballs are uncompressed in memory
  • The 'last-modified' response header, if present, is used to condition subsequent download attempts (using 'if-modified-since' request headers) in order to save bandwidth
  • The downloaded tarballs are cached on the filesystem in order to more quickly achieve readiness on future launches of the database loader
  • Until the database loader achieves readiness, download attempts are made every minute; once readiness is achieved (either from cache or network), this interval increases to every 6 hours
  • Caching is a best-effort; the system falls back to relying exclusively on the network if needed
  • A caching directory named 'locus_erlang' is created under the 'user_cache' basedir
  • Cached tarballs are named after the SHA256 hash of their source URL
  • Modification time of the tarballs is extracted from 'last-modified' response header (when present) and used to condition downloads on subsequent boots and save bandwidth
  • Four logging levels are supported: info, warning, error and none
  • The backend is error_logger; this usually plays nicely with lager
  • The default log level is error; it can be changed in the application's env config
  • To tweak the log level in runtime, use locus_logger:set_loglevel/1
  • egeoip: IP Geolocation module, currently supporting the MaxMind GeoLite City Database
  • geodata2: Application for working with MaxMind geoip2 (.mmdb) databases
  • geoip: Returns the location of an IP address; based on the ipinfodb.com web service
  • geolite2data: Periodically fetches the free MaxMind GeoLite2 databases
  • ip2location-erlang: Uses IP2Location geolocation database
  • asn: IP-to-AS-to-ASname lookup
  • freegeoip: Simple wrapper for freegeoip.net HTTP API
  • freegeoipx: API Client for freegeoip.net
  • geoip: Lookup the geo location for a given IP address, hostname or Plug.Conn instance
  • geolix: MaxMind GeoIP2 database reader/decoder
  • plug_geoip2: Adds geo location to a Plug connection based upon the client IP address by using MaxMind's GeoIP2 database
  • tz_world: Resolve timezones from a location efficiently using PostGIS and Ecto

locus is an independent project and has not been authorized, sponsored, or otherwise approved by MaxMind.

Modules

locus
locus_logger

About

Geolocation and ASN lookup of IP addresses

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Erlang 96.5%
  • Makefile 1.2%
  • Shell 1.2%
  • Other 1.1%