Class: SplitIoClient::FaradayMiddleware::Gzip

Inherits:
Faraday::Middleware
  • Object
show all
Defined in:
lib/splitclient-rb/engine/api/faraday_middleware/gzip.rb

Constant Summary collapse

ACCEPT_ENCODING =
'Accept-Encoding'.freeze
CONTENT_ENCODING =
'Content-Encoding'.freeze
CONTENT_LENGTH =
'Content-Length'.freeze
SUPPORTED_ENCODINGS =
'gzip,deflate'.freeze
RUBY_ENCODING =
'1.9'.respond_to?(:force_encoding)

Instance Method Summary collapse

Instance Method Details

#call(env) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/splitclient-rb/engine/api/faraday_middleware/gzip.rb', line 12

def call(env)
  env[:request_headers][ACCEPT_ENCODING] ||= SUPPORTED_ENCODINGS
  @app.call(env).on_complete do |response_env|
    case response_env[:response_headers][CONTENT_ENCODING]
    when 'gzip'
      reset_body(response_env, &method(:uncompress_gzip))
    when 'deflate'
      reset_body(response_env, &method(:inflate))
    end
  end
end

#inflate(body) ⇒ Object



40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/splitclient-rb/engine/api/faraday_middleware/gzip.rb', line 40

def inflate(body)
  # Inflate as a DEFLATE (RFC 1950+RFC 1951) stream
  Zlib::Inflate.inflate(body)
rescue Zlib::DataError
  # Fall back to inflating as a "raw" deflate stream which
  # Microsoft servers return
  inflate = Zlib::Inflate.new(-Zlib::MAX_WBITS)
  begin
    inflate.inflate(body)
  ensure
    inflate.close
  end
end

#reset_body(env) ⇒ Object



24
25
26
27
28
# File 'lib/splitclient-rb/engine/api/faraday_middleware/gzip.rb', line 24

def reset_body(env)
  env[:body] = yield(env[:body])
  env[:response_headers].delete(CONTENT_ENCODING)
  env[:response_headers][CONTENT_LENGTH] = env[:body].length
end

#uncompress_gzip(body) ⇒ Object



30
31
32
33
34
35
36
37
38
# File 'lib/splitclient-rb/engine/api/faraday_middleware/gzip.rb', line 30

def uncompress_gzip(body)
  io = StringIO.new(body)
  gzip_reader = if RUBY_ENCODING
    Zlib::GzipReader.new(io, :encoding => 'ASCII-8BIT')
  else
    Zlib::GzipReader.new(io)
  end
  gzip_reader.read
end