trusche/httplog

View on GitHub
lib/httplog/adapters/net_http.rb

Summary

Maintainability
A
1 hr
Test Coverage
# frozen_string_literal: true

module Net
  class HTTP
    alias orig_request request unless method_defined?(:orig_request)
    alias orig_connect connect unless method_defined?(:orig_connect)

    def request(req, body = nil, &block)
      url = "http://#{@address}:#{@port}#{req.path}"

      bm = Benchmark.realtime do
        @response = orig_request(req, body, &block)
      end
      body_stream  = req.body_stream
      request_body = if body_stream
                       body_stream.to_s # read and rewind for RestClient::Payload::Base
                       body_stream.rewind if body_stream.respond_to?(:rewind) # RestClient::Payload::Base has no method rewind
                       body_stream.read
                     elsif req.body.nil? || req.body.empty?
                       body
                     else
                       req.body
                     end

      if HttpLog.url_approved?(url) && started?
        HttpLog.call(
          method: req.method,
          url: url,
          request_body: request_body,
          request_headers: req.each_header.collect,
          response_code: @response.code,
          response_body: @response.body,
          response_headers: @response.each_header.collect,
          benchmark: bm,
          encoding: @response['Content-Encoding'],
          content_type: @response['Content-Type'],
          mask_body: HttpLog.masked_body_url?(url)
        )
      end

      @response
    end

    def connect
      HttpLog.log_connection(@address, @port) if !started? && HttpLog.url_approved?("#{@address}:#{@port}")

      orig_connect
    end
  end
end