Sha256: edb00f466a09e5537916edfcdfe87fb2de88b0cdd4e5eec70610bcc1acdbd3d9

Contents?: true

Size: 1.19 KB

Versions: 8

Compression:

Stored size: 1.19 KB

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2019-2023, by Samuel Williams.

require_relative "middleware"

require_relative "body/buffered"
require_relative "body/inflate"

module Protocol
	module HTTP
		# Set a valid accept-encoding header and decode the response.
		class AcceptEncoding < Middleware
			ACCEPT_ENCODING = "accept-encoding".freeze
			CONTENT_ENCODING = "content-encoding".freeze
			
			DEFAULT_WRAPPERS = {
				"gzip" => Body::Inflate.method(:for),
				
				# There is no point including this:
				# 'identity' => ->(body){body},
			}
			
			def initialize(app, wrappers = DEFAULT_WRAPPERS)
				super(app)
				
				@accept_encoding = wrappers.keys.join(", ")
				@wrappers = wrappers
			end
			
			def call(request)
				request.headers[ACCEPT_ENCODING] = @accept_encoding
				
				response = super
				
				if body = response.body and !body.empty? and content_encoding = response.headers.delete(CONTENT_ENCODING)
					# We want to unwrap all encodings
					content_encoding.reverse_each do |name|
						if wrapper = @wrappers[name]
							body = wrapper.call(body)
						end
					end
					
					response.body = body
				end
				
				return response
			end
		end
	end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
protocol-http-0.44.0 lib/protocol/http/accept_encoding.rb
protocol-http-0.43.0 lib/protocol/http/accept_encoding.rb
protocol-http-0.42.0 lib/protocol/http/accept_encoding.rb
protocol-http-0.41.0 lib/protocol/http/accept_encoding.rb
protocol-http-0.40.0 lib/protocol/http/accept_encoding.rb
protocol-http-0.39.0 lib/protocol/http/accept_encoding.rb
protocol-http-0.38.0 lib/protocol/http/accept_encoding.rb
protocol-http-0.37.0 lib/protocol/http/accept_encoding.rb