class Geocoder::Lookup::Geocodio

def name

def name
  "Geocodio"
end

def query_url(query)

def query_url(query)
  path = query.reverse_geocode? ? "reverse" : "geocode"
  "#{protocol}://api.geocod.io/v1.3/#{path}?#{url_query_string(query)}"
end

def query_url_params(query)

def query_url_params(query)
  {
    :api_key => configuration.api_key,
    :q => query.sanitized_text
  }.merge(super)
end

def results(query)

def results(query)
  return [] unless doc = fetch_data(query)
  return doc["results"] if doc['error'].nil?
  
  if doc['error'] == 'Invalid API key'
    raise_error(Geocoder::InvalidApiKey) ||
      Geocoder.log(:warn, "Geocodio service error: invalid API key.")
  elsif doc['error'].match(/You have reached your daily maximum/)
    raise_error(Geocoder::OverQueryLimitError, doc['error']) ||
      Geocoder.log(:warn, "Geocodio service error: #{doc['error']}.")
  else
    raise_error(Geocoder::InvalidRequest, doc['error']) ||
      Geocoder.log(:warn, "Geocodio service error: #{doc['error']}.")
  end
  []
end