123456789_123456789_123456789_123456789_123456789_

Module: Rack::Response::Helpers

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Included In:
Defined in: lib/rack/response.rb

Instance Attribute Summary

Instance Method Summary

Instance Attribute Details

#accepted?Boolean (readonly)

[ GitHub ]

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

def accepted?;            status == 202;                        end

#bad_request?Boolean (readonly)

[ GitHub ]

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

def bad_request?;         status == 400;                        end

#cache_control (rw)

[ GitHub ]

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

def cache_control
  get_header CACHE_CONTROL
end

#cache_control=(value) (rw)

[ GitHub ]

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

def cache_control=(value)
  set_header CACHE_CONTROL, value
end

#client_error?Boolean (readonly)

[ GitHub ]

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

def client_error?;        status >= 400 && status < 500;        end

#content_type (rw)

Get the content type of the response.

[ GitHub ]

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

def content_type
  get_header CONTENT_TYPE
end

#content_type=(content_type) (rw)

Set the content type of the response.

[ GitHub ]

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

def content_type=(content_type)
  set_header CONTENT_TYPE, content_type
end

#created?Boolean (readonly)

[ GitHub ]

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

def created?;             status == 201;                        end

#etag (rw)

[ GitHub ]

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

def etag
  get_header ETAG
end

#etag=(value) (rw)

[ GitHub ]

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

def etag=(value)
  set_header ETAG, value
end

#forbidden?Boolean (readonly)

[ GitHub ]

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

def forbidden?;           status == 403;                        end

#informational?Boolean (readonly)

[ GitHub ]

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

def informational?;       status >= 100 && status < 200;        end

#invalid?Boolean (readonly)

[ GitHub ]

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

def invalid?;             status < 100 || status >= 600;        end

#location (rw)

[ GitHub ]

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

def location
  get_header "location"
end

#location=(location) (rw)

[ GitHub ]

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

def location=(location)
  set_header "location", location
end

#method_not_allowed?Boolean (readonly)

[ GitHub ]

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

def method_not_allowed?;  status == 405;                        end

#moved_permanently?Boolean (readonly)

[ GitHub ]

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

def moved_permanently?;   status == 301;                        end

#no_content?Boolean (readonly)

[ GitHub ]

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

def no_content?;          status == 204;                        end

#not_acceptable?Boolean (readonly)

[ GitHub ]

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

def not_acceptable?;      status == 406;                        end

#not_found?Boolean (readonly)

[ GitHub ]

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

def not_found?;           status == 404;                        end

#ok?Boolean (readonly)

[ GitHub ]

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

def ok?;                  status == 200;                        end

#precondition_failed?Boolean (readonly)

[ GitHub ]

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

def precondition_failed?; status == 412;                        end

#redirect?Boolean (readonly)

[ GitHub ]

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

def redirect?;            [301, 302, 303, 307, 308].include? status; end

#redirection?Boolean (readonly)

[ GitHub ]

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

def redirection?;         status >= 300 && status < 400;        end

#request_timeout?Boolean (readonly)

[ GitHub ]

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

def request_timeout?;     status == 408;                        end

#server_error?Boolean (readonly)

[ GitHub ]

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

def server_error?;        status >= 500 && status < 600;        end

#successful?Boolean (readonly)

[ GitHub ]

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

def successful?;          status >= 200 && status < 300;        end

#unauthorized?Boolean (readonly)

[ GitHub ]

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

def unauthorized?;        status == 401;                        end

#unprocessable?Boolean (readonly)

[ GitHub ]

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

def unprocessable?;       status == 422;                        end

Instance Method Details

#add_header(key, value)

Add a header that may have multiple values.

Example:

response.add_header 'vary', 'accept-encoding'
response.add_header 'vary', 'cookie'

assert_equal 'accept-encoding,cookie', response.get_header('vary')

www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2

Raises:

  • (ArgumentError)
[ GitHub ]

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

def add_header(key, value)
  raise ArgumentError unless key.is_a?(String)

  if value.nil?
    return get_header(key)
  end

  value = value.to_s

  if header = get_header(key)
    if header.is_a?(Array)
      header << value
    else
      set_header(key, [header, value])
    end
  else
    set_header(key, value)
  end
end

#cache!(duration = 3600, directive: "public")

Specify that the content should be cached.

Parameters:

  • duration (Integer) (defaults to: 3600)

    The number of seconds until the cache expires.

  • directive (Hash)

    a customizable set of options

Options Hash (directive:):

  • The (String)

    cache control directive, one of “public”, “private”, “no-cache” or “no-store”.

[ GitHub ]

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

def cache!(duration = 3600, directive: "public")
  unless headers[CACHE_CONTROL] =~ /no-cache/
    set_header CACHE_CONTROL, "#{directive}, max-age=#{duration}"
    set_header EXPIRES, (Time.now + duration).httpdate
  end
end

#content_length

[ GitHub ]

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

def content_length
  cl = get_header CONTENT_LENGTH
  cl ? cl.to_i : cl
end

#do_not_cache!

Specifies that the content shouldn’t be cached. Overrides #cache! if already called.

[ GitHub ]

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

def do_not_cache!
  set_header CACHE_CONTROL, "no-cache, must-revalidate"
  set_header EXPIRES, Time.now.httpdate
end

#include?(header) ⇒ Boolean

[ GitHub ]

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

def include?(header)
  has_header?(header)
end

#media_type

[ GitHub ]

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

def media_type
  MediaType.type(content_type)
end

#media_type_params

[ GitHub ]

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

def media_type_params
  MediaType.params(content_type)
end