Module: Rack::Request::Env

Included in:
Rack::Request
Defined in:
lib/rack/request.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#envObject (readonly)

The environment of the request.



38
39
40
# File 'lib/rack/request.rb', line 38

def env
  @env
end

Instance Method Details

#add_header(key, v) ⇒ Object

Add a header that may have multiple values.

Example:

request.add_header 'Accept', 'image/png'
request.add_header 'Accept', '*/*'

assert_equal 'image/png,*/*', request.get_header('Accept')

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



81
82
83
84
85
86
87
88
89
# File 'lib/rack/request.rb', line 81

def add_header key, v
  if v.nil?
    get_header key
  elsif has_header? key
    set_header key, "#{get_header key},#{v}"
  else
    set_header key, v
  end
end

#delete_header(name) ⇒ Object

Delete a request specific value for ‘name`.



92
93
94
# File 'lib/rack/request.rb', line 92

def delete_header(name)
  @env.delete name
end

#each_header(&block) ⇒ Object

Loops through each key / value pair in the request specific data.



63
64
65
# File 'lib/rack/request.rb', line 63

def each_header(&block)
  @env.each(&block)
end

#fetch_header(name, &block) ⇒ Object

If a block is given, it yields to the block if the value hasn’t been set on the request.



58
59
60
# File 'lib/rack/request.rb', line 58

def fetch_header(name, &block)
  @env.fetch(name, &block)
end

#get_header(name) ⇒ Object

Get a request specific value for ‘name`.



52
53
54
# File 'lib/rack/request.rb', line 52

def get_header(name)
  @env[name]
end

#has_header?(name) ⇒ Boolean

Predicate method to test to see if ‘name` has been set as request specific data

Returns:

  • (Boolean)


47
48
49
# File 'lib/rack/request.rb', line 47

def has_header?(name)
  @env.key? name
end

#initialize(env) ⇒ Object



40
41
42
43
# File 'lib/rack/request.rb', line 40

def initialize(env)
  @env = env
  super()
end

#initialize_copy(other) ⇒ Object



96
97
98
# File 'lib/rack/request.rb', line 96

def initialize_copy(other)
  @env = other.env.dup
end

#set_header(name, v) ⇒ Object

Set a request specific value for ‘name` to `v`



68
69
70
# File 'lib/rack/request.rb', line 68

def set_header(name, v)
  @env[name] = v
end