Sha256: cce057a48496261c8531d07b293b6e226cc738470ae4dc317b6d68fd1e079b7a

Contents?: true

Size: 1.41 KB

Versions: 8

Compression:

Stored size: 1.41 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

module NewRelic
  module Agent
    module HTTPClients
      class HTTPClientResponse
        attr_reader :response

        def initialize(response)
          @response = response
        end

        def [](key)
          response.headers.each do |k,v|
            if key.downcase == k.downcase
              return v
            end
          end
          nil
        end

        def to_hash
          response.headers
        end
      end

      class HTTPClientRequest
        attr_reader :request, :uri

        HTTP_CLIENT = "HTTPClient".freeze
        LHOST = 'host'.freeze
        UHOST = 'Host'.freeze
        COLON = ':'.freeze

        def initialize(request)
          @request = request
          @uri = request.header.request_uri
        end

        def type
          HTTP_CLIENT
        end

        def method
          request.header.request_method
        end

        def host_from_header
          if hostname = (self[LHOST] || self[UHOST])
            hostname.split(COLON).first
          end
        end

        def host
          host_from_header || uri.host.to_s
        end

        def [](key)
          request.headers[key]
        end

        def []=(key, value)
          request.http_header[key] = value
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
newrelic_rpm-4.5.0.337 lib/new_relic/agent/http_clients/httpclient_wrappers.rb
newrelic_rpm-4.4.0.336 lib/new_relic/agent/http_clients/httpclient_wrappers.rb
newrelic_rpm-4.3.0.335 lib/new_relic/agent/http_clients/httpclient_wrappers.rb
newrelic_rpm-4.2.0.334 lib/new_relic/agent/http_clients/httpclient_wrappers.rb
newrelic_rpm-4.1.0.333 lib/new_relic/agent/http_clients/httpclient_wrappers.rb
newrelic_rpm-4.0.0.332 lib/new_relic/agent/http_clients/httpclient_wrappers.rb
newrelic_rpm-3.18.1.330 lib/new_relic/agent/http_clients/httpclient_wrappers.rb
newrelic_rpm-3.18.0.329 lib/new_relic/agent/http_clients/httpclient_wrappers.rb