Processes HTTP cookies

Methods
E
N
P
T
Attributes
[RW] comment

The cookie comment

[RW] domain

The cookie domain

[RW] max_age

The maximum age of the cookie

[R] name

The cookie name

[RW] path

The cookie path

[RW] secure

Is this a secure cookie?

[RW] value

The cookie value

[RW] version

The cookie version

Class Public methods
new(name, value)

Creates a new cookie with the given name and value

# File lib/webrick/cookie.rb, line 65
def initialize(name, value)
  @name = name
  @value = value
  @version = 0     # Netscape Cookie

  @domain = @path = @secure = @comment = @max_age =
  @expires = @comment_url = @discard = @port = nil
end
parse(str)

Parses a Cookie field sent from the user-agent. Returns an array of cookies.

# File lib/webrick/cookie.rb, line 110
def self.parse(str)
  if str
    ret = []
    cookie = nil
    ver = 0
    str.split(/[;,]\s+/).each{|x|
      key, val = x.split(/=/,2)
      val = val ? HTTPUtils::dequote(val) : ""
      case key
      when "$Version"; ver = val.to_i
      when "$Path";    cookie.path = val
      when "$Domain";  cookie.domain = val
      when "$Port";    cookie.port = val
      else
        ret << cookie if cookie
        cookie = self.new(key, val)
        cookie.version = ver
      end
    }
    ret << cookie if cookie
    ret
  end
end

Parses the cookie in str

parse_set_cookies(str)

Parses the cookies in str

# File lib/webrick/cookie.rb, line 165
def self.parse_set_cookies(str)
  return str.split(/,(?=[^;,]*=)|,$/).collect{|c|
    parse_set_cookie(c)
  }
end
Instance Public methods
expires()

Retrieves the expiration time as a Time

# File lib/webrick/cookie.rb, line 86
def expires
  @expires && Time.parse(@expires)
end
expires=(t)

Sets the cookie expiration to the time t. The expiration time may be a false value to disable expiration or a Time or HTTP format time string to set the expiration date.

# File lib/webrick/cookie.rb, line 79
def expires=(t)
  @expires = t && (t.is_a?(Time) ? t.httpdate : t.to_s)
end
to_s()

The cookie string suitable for use in an HTTP header

# File lib/webrick/cookie.rb, line 93
def to_s
  ret = ""
  ret << @name << "=" << @value
  ret << "; " << "Version=" << @version.to_s if @version > 0
  ret << "; " << "Domain="  << @domain  if @domain
  ret << "; " << "Expires=" << @expires if @expires
  ret << "; " << "Max-Age=" << @max_age.to_s if @max_age
  ret << "; " << "Comment=" << @comment if @comment
  ret << "; " << "Path="    << @path if @path
  ret << "; " << "Secure"   if @secure
  ret
end