Sha256: e8893c90c65a027ea1138af8bdf4ce7984ece31e7e0991f56505c20ea818f693
Contents?: true
Size: 1.51 KB
Versions: 2
Compression:
Stored size: 1.51 KB
Contents
require 'ostruct' module AddressFinder class LocationInfo attr_reader :result 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 :result def build_request @request_uri = "/api/#{country}/location/info.json?#{encoded_params}" end def encoded_params Util.encode_and_join_params(params) end def execute_request response = http.request(request_uri) self.response_body = response.body self.response_status = response.code end def build_result case response_status when '200' self.result = Result.new(response_hash) when '404' raise AddressFinder::NotFoundError.new(@response_status, @response_body, @pxid) 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
addressfinder-1.14.0 | lib/addressfinder/location_info.rb |
addressfinder-1.13.0 | lib/addressfinder/location_info.rb |