Sha256: 88f23c498bc9ec7209206b81a7f563460078dacf9dd63af33225d7fc9e48b089

Contents?: true

Size: 1.58 KB

Versions: 11

Compression:

Stored size: 1.58 KB

Contents

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

require_relative 'abstract'

module NewRelic
  module Agent
    module HTTPClients

      class CurbRequest
        CURB = 'Curb'
        LHOST = 'host'
        UHOST = 'Host'

        def initialize curlobj
          @curlobj = curlobj
        end

        def type
          CURB
        end

        def host_from_header
          self[LHOST] || self[UHOST]
        end

        def host
          host_from_header || self.uri.host
        end

        def method
          @curlobj._nr_http_verb
        end

        def []( key )
          @curlobj.headers[key]
        end

        def []=(key, value)
          @curlobj.headers[key] = value
        end

        def uri
          @uri ||= URIUtil.parse_and_normalize_url(@curlobj.url)
        end
      end

      class CurbResponse < AbstractResponse

        def initialize wrapped_response
          super wrapped_response
          @headers = {}
        end

        def [](key)
          @headers[key.downcase]
        end

        def to_hash
          @headers.dup
        end

        def append_header_data data
          key, value = data.split(/:\s*/, 2)
          @headers[key.downcase] = value
          @wrapped_response._nr_header_str ||= String.new
          @wrapped_response._nr_header_str << data
        end

        private

        def get_status_code
          get_status_code_using :response_code
        end
      end

    end

  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
newrelic_rpm-8.2.0 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-7.2.0 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-7.1.0 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-7.0.0 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-6.15.0 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-6.14.0 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-6.13.1 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-6.13.0 lib/new_relic/agent/http_clients/curb_wrappers.rb
newrelic_rpm-6.12.0.367 lib/new_relic/agent/http_clients/curb_wrappers.rb