Class: HTTP::Features::AutoDeflate

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

Defined Under Namespace

Classes: CompressedBody, DeflatedBody, GzippedBody

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from HTTP::Feature

#wrap_response

Constructor Details

#initializeAutoDeflate

Returns a new instance of AutoDeflate.

Raises:



13
14
15
16
17
18
19
# File 'lib/http/features/auto_deflate.rb', line 13

def initialize(*)
  super

  @method = @opts.key?(:method) ? @opts[:method].to_s : "gzip"

  raise Error, "Only gzip and deflate methods are supported" unless %w[gzip deflate].include?(@method)
end

Instance Attribute Details

#methodObject (readonly)

Returns the value of attribute method.



11
12
13
# File 'lib/http/features/auto_deflate.rb', line 11

def method
  @method
end

Instance Method Details

#deflated_body(body) ⇒ Object



34
35
36
37
38
39
40
41
# File 'lib/http/features/auto_deflate.rb', line 34

def deflated_body(body)
  case method
  when "gzip"
    GzippedBody.new(body)
  when "deflate"
    DeflatedBody.new(body)
  end
end

#wrap_request(request) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/http/features/auto_deflate.rb', line 21

def wrap_request(request)
  return request unless method

  Request.new(
    :version => request.version,
    :verb => request.verb,
    :uri => request.uri,
    :headers => request.headers,
    :proxy => request.proxy,
    :body => deflated_body(request.body)
  )
end