Sha256: 1e0a2f6ef217c0694387de030c2e38f33f32ac49505b0fabb77b910aea10a1c2

Contents?: true

Size: 1.28 KB

Versions: 4

Compression:

Stored size: 1.28 KB

Contents

if defined?(Ethon)
  module Ethon
    class Easy

      attr_accessor :action_name

      module Http
        alias_method :orig_http_request, :http_request
        def http_request(url, action_name, options = {})
          @action_name = action_name # remember this for compact logging 
          if HttpLog.url_approved?(url)
            HttpLog.log_request(action_name, url)
            HttpLog.log_headers(options[:headers])
            HttpLog.log_data(options[:body]) if action_name == :post
          end

          orig_http_request(url, action_name, options)
        end
      end

      module Operations
        alias_method :orig_perform, :perform
        def perform
          return orig_perform unless HttpLog.url_approved?(url)

          response_code = nil
          bm = Benchmark.realtime do
            reponse_code = orig_perform
          end

          # Not sure where the acutal status code is stored - so let's
          # extract it from the response header.
          status = response_headers.scan(/HTTP\/... (\d{3})/).flatten.first
          HttpLog.log_compact(@action_name, @url, @return_code, bm)
          HttpLog.log_status(status)
          HttpLog.log_benchmark(bm)
          HttpLog.log_body(response_body)
          return_code
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
httplog-0.2.8 lib/httplog/adapters/ethon.rb
httplog-0.2.7 lib/httplog/adapters/ethon.rb
httplog-0.2.6 lib/httplog/adapters/ethon.rb
httplog-0.2.5 lib/httplog/adapters/ethon.rb