class Geocoder::Lookup::Ipregistry

def base_query_url(query)

def base_query_url(query)
  "#{protocol}://#{host}/#{query.sanitized_text}?"
end

def cache_key(query)

def cache_key(query)
  query_url(query)
end

def host

def host
  configuration[:host] || "api.ipregistry.co"
end

def name

def name
  "Ipregistry"
end

def query_url_params(query)

def query_url_params(query)
  {
    key: configuration.api_key
  }.merge(super)
end

def reserved_result(ip)

def reserved_result(ip)
  {
    "ip"           => ip,
    "country_name" => "Reserved",
    "country_code" => "RD"
  }
end

def results(query)

def results(query)
  # don't look up a loopback or private address, just return the stored result
  return [reserved_result(query.text)] if query.internal_ip_address?
  return [] unless (doc = fetch_data(query))
  if (error = doc['error'])
    code = error['code']
    msg = error['message']
    raise_error(ERROR_CODES[code], msg ) || Geocoder.log(:warn, "Ipregistry API error: #{msg}")
    return []
  end
  [doc]
end

def supported_protocols

def supported_protocols
  [:https, :http]
end