Class: ThreadedProxy::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/threaded_proxy/client.rb

Constant Summary collapse

DISALLOWED_RESPONSE_HEADERS =
%w[keep-alive].freeze
METHODS =
{
  'get' => Net::HTTP::Get,
  'post' => Net::HTTP::Post,
  'put' => Net::HTTP::Put,
  'delete' => Net::HTTP::Delete,
  'head' => Net::HTTP::Head,
  'options' => Net::HTTP::Options,
  'trace' => Net::HTTP::Trace
}.freeze
DEFAULT_OPTIONS =
{
  headers: {},
  debug: false,
  method: :get
}.freeze

Instance Method Summary collapse

Constructor Details

#initialize(origin_url, options = {}) ⇒ Client



28
29
30
31
# File 'lib/threaded_proxy/client.rb', line 28

def initialize(origin_url, options = {})
  @origin_url = Addressable::URI.parse(origin_url)
  @options = DEFAULT_OPTIONS.merge(options)
end

Instance Method Details

#default_port(uri) ⇒ Object



87
88
89
90
91
92
93
94
# File 'lib/threaded_proxy/client.rb', line 87

def default_port(uri)
  case uri.scheme
  when 'http'
    80
  when 'https'
    443
  end
end

#log(message) ⇒ Object



33
34
35
# File 'lib/threaded_proxy/client.rb', line 33

def log(message)
  warn message if @options[:debug]
end

#start(socket) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/threaded_proxy/client.rb', line 37

def start(socket)
  request_method = @options[:method].to_s.downcase
  request_headers = @options[:headers].merge('Connection' => 'close')

  request_class = METHODS[request_method]
  http_request = request_class.new(@origin_url, request_headers)
  if @options[:body].respond_to?(:read)
    http_request.body_stream = @options[:body]
  elsif @options[:body].is_a?(String)
    http_request.body = @options[:body]
  end

  ActiveSupport::Notifications.instrument('threaded_proxy.fetch', method: request_method, url: @origin_url.to_s,
                                                                  headers: request_headers) do
    http = HTTP.new(@origin_url.host, @origin_url.port || default_port(@origin_url))
    http.use_ssl = (@origin_url.scheme == 'https')
    http.set_debug_output($stderr) if @options[:debug]
    http.verify_mode = OpenSSL::SSL::VERIFY_NONE if @options[:ignore_ssl_errors]

    http.start do
      http.request(http_request) do |client_response|
        # We don't support reusing connections once we have disconnected them from rack
        client_response['connection'] = 'close'

        yield client_response if block_given?

        # start writing response
        log('Writing response status and headers')
        socket.write "HTTP/1.1 #{client_response.code} #{client_response.message}\r\n"

        client_response.each_header do |key, value|
          socket.write "#{key}: #{value}\r\n" unless DISALLOWED_RESPONSE_HEADERS.include?(key.downcase)
        end

        # Done with headers
        socket.write "\r\n"

        # There may have been some existing data in client_response's read buffer, flush it out
        # before we manually connect the raw sockets
        log('Flushing existing response buffer to client')
        http.flush_existing_buffer_to(socket)

        # Copy the rest of the client response to the socket
        log('Copying response body to client')
        http.copy_to(socket)
      end
    end
  end
end