# Load faraday for mockable HTTP client
gem "faraday"
-# Load geoip for querying Maxmind GeoIP database
-gem "geoip"
+# Load maxminddb for querying Maxmind GeoIP database
+gem "maxminddb"
# Load rotp to generate TOTP tokens
gem "rotp"
#messages_domain: "messages.openstreetmap.org"
# Geonames authentication details
#geonames_username: ""
-# GeoIP database
-#geoip_database: ""
+# MaxMind GeoIPv2 database
+#maxmind_database: ""
# Users to show as being nearby
nearby_users: 30
# Max radius, in km, for nearby users
end
def self.ip_to_country(ip_address)
- ipinfo = geoip_database.country(ip_address) if Settings.key?(:geoip_database)
+ ipinfo = maxmind_database.lookup(ip_address) if Settings.key?(:maxmind_database)
- if ipinfo
- country = ipinfo.country_code2
+ if ipinfo.found?
+ country = ipinfo.country.iso_code
else
country = http_client.get("https://api.hostip.info/country.php?ip=#{ip_address}").body
country = "GB" if country == "UK"
@http_client ||= Faraday.new
end
- # Return the GeoIP database handle
- def self.geoip_database
- @geoip_database ||= GeoIP.new(Settings.geoip_database) if Settings.key?(:geoip_database)
+ # Return the MaxMindDB database handle
+ def self.maxmind_database
+ @maxmind_database ||= MaxMindDB.new(Settings.maxmind_database) if Settings.key?(:maxmind_database)
end
end