geoip2

0.4.0 released
delef/geoip2.cr
16 7
Ivan Palamarchuk

GeoIP2.cr

Built with Crystal Build Status Releases

Pure Crystal GeoIP2 databases reader.

Installation

Add this to your application's shard.yml:

dependencies:
  geoip2:
    github: delef/geoip2.cr

Usage

City Example

require "geoip2"

reader = GeoIP2.open("/path/to/GeoLite2-City.mmdb", ["en", "ru", "de"])
record = reader.city("128.101.101.101")

record.city.geoname_id # => 5045360
record.city.name # => "Minneapolis"
record.city.name("ru") # => "Миннеаполис"

record.continent.code # => "NA"
record.continent.name # => "North America"

record.country.iso_code # => "US"
record.country.in_european_union? # => false
record.country.name # => "United States"
record.country.name("de") # => "USA"

record.location.accuracy_radius # => 20
record.location.latitude # => 44.9532
record.location.longitude # => -93.158
record.location.metro_code # => 613
record.location.time_zone # => "America/Chicago"

record.postal.code # => "55104"

record.registered_country.iso_code # => "US"
record.registered_country.name # => "United States"

record.subdivisions[0].iso_code # => "MN"
record.subdivisions[0].name # => "Minnesota"

Anonymous IP Example

require "geoip2"

reader = GeoIP2.open("/path/to/GeoIP2-Anonymous-IP.mmdb")
record = reader.anonymous_ip("128.101.101.101")

record.anonymous? # => false
record.anonymous_vpn? # => false
record.hosting_provider? # => false
record.public_proxy? # => false
record.tor_exit_node? # => false
record.ip_address # => "128.101.101.101"

Connection-Type Example

require "geoip2"

reader = GeoIP2.open("/path/to/GeoIP2-Connection-Type.mmdb")
record = reader.connection_type("128.101.101.101")

record.connection_type # => "Corporate"
record.ip_address # => "128.101.101.101"

Domain Example

require "geoip2"

reader = GeoIP2.open("/path/to/GeoIP2-Domain.mmdb")
record = reader.domain("128.101.101.101")

record.domain # => "umn.edu"
record.ip_address # => "128.101.101.101"

Enterprise Example

require "geoip2"

reader = GeoIP2.open("/path/to/GeoIP2-Enterprise.mmdb", ["en", "zh-CN"])
record = reader.enterprise("128.101.101.101")

record.city.confidence # => 60
record.city.name # => "Minneapolis"

record.country.confidence # => 99
record.country.iso_code # => "US"
record.country.name # => "United States"
record.country.name("zh-CN") # => "美国"

record.subdivisions[0].confidence # => 77
record.subdivisions[0].name # => "Minnesota"
record.subdivisions[0].iso_code # => "MN"

record.postal.code # => "55455"

record.location.accuracy_radius # => 50
record.location.latitude # => 44.9733
record.location.longitude # => -93.2323

ISP Example

require "geoip2"

reader = GeoIP2.open("/path/to/GeoIP2-ISP.mmdb")
record = reader.isp("128.101.101.101")

record.autonomous_system_number # => 217
record.autonomous_system_organization # => "University of Minnesota"
record.isp # => "University of Minnesota"
record.organization # => "University of Minnesota"
record.ip_address # => "128.101.101.101"

Links

  • MaxMind DB reader https://github.com/delef/maxminddb.cr
  • MaxMind DB file format specification http://maxmind.github.io/MaxMind-DB/
  • MaxMind test/sample DB files https://github.com/maxmind/MaxMind-DB
  • GeoLite2 Free Downloadable Databases http://dev.maxmind.com/geoip/geoip2/geolite2/

Contributing

  1. Fork it ( https://github.com/delef/geoip2.cr/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

  • delef - creator, maintainer
geoip2:
  github: delef/geoip2.cr
  version: ~> 0.4.0
License MIT
Crystal none

Authors

Dependencies 1

  • maxminddb master
    {'branch' => 'master', 'github' => 'delef/maxminddb.cr'}

Development Dependencies 0

Dependents 0

Last synced .
search fire star recently