+
+ def xml_root_attributes
+ { "version" => Settings.api_version,
+ "generator" => Settings.generator,
+ "copyright" => Settings.copyright_owner,
+ "attribution" => Settings.attribution_url,
+ "license" => Settings.license_url }
+ end
+ end
+
+ def self.ip_to_country(ip_address)
+ ipinfo = maxmind_database.lookup(ip_address) if Settings.key?(:maxmind_database)
+
+ 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"
+ end
+
+ country
+ rescue StandardError
+ nil
+ end
+
+ def self.ip_location(ip_address)
+ code = OSM.ip_to_country(ip_address)
+
+ if code && country = Country.find(code)
+ return { :minlon => country.min_lon, :minlat => country.min_lat, :maxlon => country.max_lon, :maxlat => country.max_lat }
+ end
+
+ nil
+ end
+
+ # Parse a float, raising a specified exception on failure
+ def self.parse_float(str, klass, *args)
+ Float(str)
+ rescue StandardError
+ raise klass.new(*args)
+ end
+
+ # Construct a random token of a given length
+ def self.make_token(length = 30)
+ chars = "abcdefghijklmnopqrtuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+ token = ""
+
+ length.times do
+ token += chars[(rand * chars.length).to_i].chr
+ end
+
+ token
+ end
+
+ # Return an SQL fragment to select a given area of the globe
+ def self.sql_for_area(bbox, prefix = nil)
+ tilesql = QuadTile.sql_for_area(bbox, prefix)
+ bbox = bbox.to_scaled
+
+ "#{tilesql} AND #{prefix}latitude BETWEEN #{bbox.min_lat} AND #{bbox.max_lat} " \
+ "AND #{prefix}longitude BETWEEN #{bbox.min_lon} AND #{bbox.max_lon}"
+ end
+
+ # Return the terms and conditions text for a given country
+ def self.legal_text_for_country(country_code)
+ file_name = Rails.root.join("config", "legales", country_code.to_s + ".yml")
+ file_name = Rails.root.join("config", "legales", Settings.default_legale + ".yml") unless File.exist? file_name
+ YAML.load_file(file_name)
+ end
+
+ # Return the HTTP client to use
+ def self.http_client
+ @http_client ||= Faraday.new
+ end
+
+ # Return the MaxMindDB database handle
+ def self.maxmind_database
+ @maxmind_database ||= MaxMindDB.new(Settings.maxmind_database) if Settings.key?(:maxmind_database)