Sha256: 25d5e725d74214d8538a2b1efbafbfc38c626771b69067479e2586c8f2277645

Contents?: true

Size: 1.74 KB

Versions: 1

Compression:

Stored size: 1.74 KB

Contents

module Barometer
  #
  # Format: Geocode
  # (not to be confused with the WebService geocode)
  #
  # eg. 123 Elm St, Mystery, Alaska, USA
  #
  # This class is used to determine if a query is a
  # :geocode, how to convert to :geocode
  #
  class Query::Format::Geocode < Query::Format

    def self.format; :geocode; end
    def self.is?(query=nil); query.is_a?(String) ? true : false; end
    def self.convertable_formats
      [:short_zipcode, :zipcode, :coordinates, :weather_id, :icao, :woe_id]
    end

    # convert to this format, X -> :geocode
    #
    def self.to(original_query)
      raise ArgumentError unless is_a_query?(original_query)
      unless converts?(original_query)
        return (original_query.format == format ? original_query.dup : nil)
      end

      unless converted_query = original_query.get_conversion(format)
        converted_query = Barometer::Query.new

        converted_query = case original_query.format
        when :weather_id
          Query::Format::WeatherID.reverse(original_query)
        when :woe_id
          Query::Format::WoeID.reverse(original_query)
        else
          geocode(original_query)
        end

        original_query.post_conversion(converted_query) if converted_query
      end
      converted_query
    end

    # geocode the query
    #
    def self.geocode(original_query)
      raise ArgumentError unless is_a_query?(original_query)

      converted_query = Barometer::Query.new
      converted_query.geo = Barometer::WebService::Geocode.fetch(original_query)
      if converted_query.geo
        converted_query.country_code = converted_query.geo.country_code
        converted_query.q = converted_query.geo.to_s
        converted_query.format = format
      end
      converted_query
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
barometer-0.8.0 lib/barometer/formats/geocode.rb