Class: HTTP::Features::AutoInflate

Inherits:
HTTP::Feature show all
Defined in:
lib/http/features/auto_inflate.rb

Instance Method Summary collapse

Methods inherited from HTTP::Feature

#initialize, #wrap_request

Constructor Details

This class inherits a constructor from HTTP::Feature

Instance Method Details

#stream_for(connection) ⇒ Object



18
19
20
# File 'lib/http/features/auto_inflate.rb', line 18

def stream_for(connection)
  Response::Body.new(Response::Inflater.new(connection))
end

#wrap_response(response) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
# File 'lib/http/features/auto_inflate.rb', line 6

def wrap_response(response)
  return response unless %w[deflate gzip x-gzip].include?(response.headers[:content_encoding])
  Response.new(
    :status => response.status,
    :version => response.version,
    :headers => response.headers,
    :proxy_headers => response.proxy_headers,
    :connection => response.connection,
    :body => stream_for(response.connection)
  )
end