Protocol::RackSourceProtocolRackResponse

class Response

A Rack-compatible HTTP response wrapper

A Rack response consisting of [status, headers, body] includes various Rack-specific elements, including:

This wrapper takes those issues into account and adapts the Rack response tuple into a Protocol::HTTP::Response.

Definitions

HOP_HEADERS = [...]

HTTP hop headers which should not be passed through the proxy.

Implementation

HOP_HEADERS = [
	"connection",
	"keep-alive",
	"public",
	"proxy-authenticate",
	"transfer-encoding",
	"upgrade",
]

def self.wrap(env, status, headers, meta, body, request = nil)

Wrap a Rack response into a class Protocol::Rack::Response instance.

Signature

parameter env Hash

The Rack environment hash.

parameter status Integer

The Rack response status code.

parameter headers Protocol::HTTP::Headers

The response headers.

parameter meta Hash

The Rack-specific metadata (e.g., rack.hijack).

parameter body Object

The Rack response body.

parameter request Protocol::HTTP::Request | Nil

The original request.

returns Response

A new response instance.

Implementation

def self.wrap(env, status, headers, meta, body, request = nil)
	ignored = headers.extract(HOP_HEADERS)
	
	unless ignored.empty?
		Console.warn(self, "Ignoring hop headers!", ignored: ignored)
	end
	
	if hijack_body = meta["rack.hijack"]
		body = hijack_body
	end
	
	body = Body.wrap(env, status, headers, body, request&.body, request&.head?)
	
	protocol = meta[RACK_PROTOCOL]
	
	# https://tools.ietf.org/html/rfc7231#section-7.4.2
	# headers.add('server', "falcon/#{Falcon::VERSION}")
	
	# https://tools.ietf.org/html/rfc7231#section-7.1.1.2
	# headers.add('date', Time.now.httpdate)
	
	return self.new(status, headers, body, protocol)
end

def initialize(status, headers, body, protocol = nil)

Initialize the response wrapper.

Signature

parameter status Integer

The response status code.

parameter headers Protocol::HTTP::Headers

The response headers.

parameter body Protocol::HTTP::Body

The response body.

parameter protocol String | Nil

The response protocol for upgraded requests.

Implementation

def initialize(status, headers, body, protocol = nil)
	super(nil, status, headers, body, protocol)
end