Sha256: c0c8ed9f531c7083e01f4546d14766c71679120e6e71aa5c9e573f0e25684616

Contents?: true

Size: 1.52 KB

Versions: 13

Compression:

Stored size: 1.52 KB

Contents

require 'ostruct'

module AddressFinder
  class LocationSearch

    attr_reader :results

    def initialize(params:, http:)
      @http = http
      @country = params.delete(:country) || config.default_country

      @params = params
      @params['domain'] = params['domain'] || config.domain if (params['domain'] || config.domain)
      @params[:key] ||= config.api_key
      @params[:secret] ||= config.api_secret
    end

    def perform
      build_request
      execute_request
      build_result

      self
    end

    private

    attr_reader :request_uri, :params, :country, :http
    attr_accessor :response_body, :response_status
    attr_writer :results

    def build_request
      @request_uri = "/api/#{country}/location.json?#{encoded_params}"
    end

    def encoded_params
      Util.encode_and_join_params(params)
    end

    def execute_request
      request = Net::HTTP::Get.new(request_uri)

      response = http.request(request)

      self.response_body = response.body
      self.response_status = response.code
    end

    def build_result
      case response_status
      when '200'
        self.results = response_hash['completions'].map do |result_hash|
          Result.new(result_hash)
        end
      else
        raise AddressFinder::RequestRejectedError.new(@response_status, @response_body)
      end
    end

    def response_hash
      @_response_hash ||= MultiJson.load(response_body)
    end

    def config
      @_config ||= AddressFinder.configuration
    end

    class Result < OpenStruct
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
addressfinder-1.11.0 lib/addressfinder/location_search.rb
addressfinder-1.10.1 lib/addressfinder/location_search.rb
addressfinder-1.10.0 lib/addressfinder/location_search.rb
addressfinder-1.9.1 lib/addressfinder/location_search.rb
addressfinder-1.9.0 lib/addressfinder/location_search.rb
addressfinder-1.8.1 lib/addressfinder/location_search.rb
addressfinder-1.8.0 lib/addressfinder/location_search.rb
addressfinder-1.7.1 lib/addressfinder/location_search.rb
addressfinder-1.7.0 lib/addressfinder/location_search.rb
addressfinder-1.6.2 lib/addressfinder/location_search.rb
addressfinder-1.6.1 lib/addressfinder/location_search.rb
addressfinder-1.6.0 lib/addressfinder/location_search.rb
addressfinder-1.5.2 lib/addressfinder/location_search.rb