123456789_123456789_123456789_123456789_123456789_

Class: Rack::Response

Relationships & Source Files
Namespace Children
Modules:
Classes:
Raw
Extension / Inclusion / Inheritance Descendants
Subclasses:
Super Chains via Extension / Inclusion / Inheritance
Instance Chain:
self, Helpers
Inherits: Object
Defined in: lib/rack/response.rb

Overview

Response provides a convenient interface to create a ::Rack response.

It allows setting of headers and cookies, and provides useful defaults (an OK response with empty headers and body).

You can use #write to iteratively generate your response, but note that this is buffered by Response until you call #finish. #finish however can take a block inside which calls to #write are synchronous with the ::Rack response.

Your application’s call should end returning #finish.

Constant Summary

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Helpers - Included

#add_header

Add a header that may have multiple values.

#cache!

Specify that the content should be cached.

#content_length, #delete_cookie,
#do_not_cache!

Specifies that the content shouldn’t be cached.

#include?, #media_type, #media_type_params, #set_cookie

Constructor Details

.new(body = nil, status = 200, headers = {}) {|_self| ... } ⇒ Response Also known as: .[]

Initialize the response object with the specified #body, #status and #headers.

If the #body is nil, construct an empty response object with internal buffering.

If the #body responds to to_str, assume it’s a string-like object and construct a buffered response object containing using that string as the initial contents of the buffer.

Otherwise it is expected #body conforms to the normal requirements of a ::Rack response body, typically implementing one of #each (enumerable body) or call (streaming body).

The #status defaults to 200 which is the “OK” HTTP status code. You can provide any other valid status code.

The #headers must be a Hash of key-value header pairs which conform to the ::Rack specification for response headers. The key must be a String instance and the value can be either a String or Array instance.

Yields:

  • (_self)

Yield Parameters:

  • _self (Response)

    the object that the method was called on

[ GitHub ]

  
# File 'lib/rack/response.rb', line 54

def initialize(body = nil, status = 200, headers = {})
  @status = status.to_i

  unless headers.is_a?(Hash)
    raise ArgumentError, "Headers must be a Hash!"
  end

  @headers = Headers.new
  # Convert headers input to a plain hash with lowercase keys.
  headers.each do |k, v|
    @headers[k] = v
  end

  @writer = self.method(:append)

  @block = nil

  # Keep track of whether we have expanded the user supplied body.
  if body.nil?
    @body = []
    @buffered = true
    @length = 0
  elsif body.respond_to?(:to_str)
    @body = [body]
    @buffered = true
    @length = body.to_str.bytesize
  else
    @body = body
    @buffered = nil # undetermined as of yet.
    @length = 0
  end

  yield self if block_given?
end

Class Method Details

.[](status, headers, body)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 24

def self.[](status, headers, body)
  self.new(body, status, headers)
end

Instance Attribute Details

#body (rw)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 31

attr_accessor :length, :status, :body

#chunked?Boolean (readonly)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 94

def chunked?
  CHUNKED == get_header(TRANSFER_ENCODING)
end

#empty?Boolean (readonly)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 148

def empty?
  @block == nil && @body.empty?
end

#headers (readonly)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 32

attr_reader :headers

#length (rw)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 31

attr_accessor :length, :status, :body

#no_entity_body?Boolean (readonly)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 98

def no_entity_body?
  # The response body is an enumerable body and it is not allowed to have an entity body.
  @body.respond_to?(:each) && STATUS_WITH_NO_ENTITY_BODY[@status]
end

#status (rw)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 31

attr_accessor :length, :status, :body

Instance Method Details

#[](key)

Alias for #get_header.

[ GitHub ]

  
# File 'lib/rack/response.rb', line 169

alias :[] :get_header

#[]=(key, value)

Alias for #set_header.

[ GitHub ]

  
# File 'lib/rack/response.rb', line 170

alias :[]= :set_header

#close

[ GitHub ]

  
# File 'lib/rack/response.rb', line 144

def close
  @body.close if @body.respond_to?(:close)
end

#delete_header(key)

Raises:

  • (ArgumentError)
[ GitHub ]

  
# File 'lib/rack/response.rb', line 164

def delete_header(key)
  raise ArgumentError unless key.is_a?(String)
  @headers.delete key
end

#each(&callback)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 124

def each(&callback)
  @body.each(&callback)
  @buffered = true

  if @block
    @writer = callback
    @block.call(self)
  end
end

#finish(&block) ⇒ Array Also known as: #to_a

Generate a response array consistent with the requirements of the SPEC. which is suitable to be returned from the middleware #call(env) method.

Returns:

  • (Array)

    a 3-tuple suitable of [status, headers, body]

[ GitHub ]

  
# File 'lib/rack/response.rb', line 106

def finish(&block)
  if no_entity_body?
    delete_header CONTENT_TYPE
    delete_header CONTENT_LENGTH
    close
    return [@status, @headers, []]
  else
    if block_given?
      @block = block
      return [@status, @headers, self]
    else
      return [@status, @headers, @body]
    end
  end
end

#get_header(key) Also known as: #[]

Raises:

  • (ArgumentError)
[ GitHub ]

  
# File 'lib/rack/response.rb', line 156

def get_header(key)
  raise ArgumentError unless key.is_a?(String)
  @headers[key]
end

#has_header?(key) ⇒ Boolean

Raises:

  • (ArgumentError)
[ GitHub ]

  
# File 'lib/rack/response.rb', line 152

def has_header?(key)
  raise ArgumentError unless key.is_a?(String)
  @headers.key?(key)
end

#redirect(target, status = 302)

[ GitHub ]

  
# File 'lib/rack/response.rb', line 89

def redirect(target, status = 302)
  self.status = status
  self.location = target
end

#set_header(key, value) Also known as: #[]=

Raises:

  • (ArgumentError)
[ GitHub ]

  
# File 'lib/rack/response.rb', line 160

def set_header(key, value)
  raise ArgumentError unless key.is_a?(String)
  @headers[key] = value
end

#to_a(&block)

Alias for #finish.

[ GitHub ]

  
# File 'lib/rack/response.rb', line 122

alias to_a finish           # For *response

#write(chunk)

Append to body and update content-length.

NOTE: Do not mix #write and direct #body access!

[ GitHub ]

  
# File 'lib/rack/response.rb', line 138

def write(chunk)
  buffered_body!

  @writer.call(chunk.to_s)
end