2004-11-25 21:04:35 -05:00
|
|
|
module ActionController #:nodoc:
|
2005-10-26 09:20:46 -04:00
|
|
|
# Cookies are read and written through ActionController#cookies. The cookies being read are what were received along with the request,
|
|
|
|
# the cookies being written are what will be sent out with the response. Cookies are read by value (so you won't get the cookie object
|
2005-02-07 09:15:53 -05:00
|
|
|
# itself back -- just the value it holds). Examples for writing:
|
2004-11-25 21:04:35 -05:00
|
|
|
#
|
2005-05-22 04:58:43 -04:00
|
|
|
# cookies[:user_name] = "david" # => Will set a simple session cookie
|
2006-08-20 01:28:47 -04:00
|
|
|
# cookies[:login] = { :value => "XJ-122", :expires => 1.hour.from_now }
|
|
|
|
# # => Will set a cookie that expires in 1 hour
|
|
|
|
#
|
2004-11-25 21:04:35 -05:00
|
|
|
# Examples for reading:
|
|
|
|
#
|
2005-05-22 04:58:43 -04:00
|
|
|
# cookies[:user_name] # => "david"
|
2004-11-25 21:04:35 -05:00
|
|
|
# cookies.size # => 2
|
2006-08-20 01:28:47 -04:00
|
|
|
#
|
2004-12-16 12:45:37 -05:00
|
|
|
# Example for deleting:
|
|
|
|
#
|
2005-05-22 04:58:43 -04:00
|
|
|
# cookies.delete :user_name
|
2004-11-25 21:04:35 -05:00
|
|
|
#
|
2004-11-25 21:09:38 -05:00
|
|
|
# All the option symbols for setting cookies are:
|
2004-11-25 21:04:35 -05:00
|
|
|
#
|
2004-12-16 12:45:37 -05:00
|
|
|
# * <tt>value</tt> - the cookie's value or list of values (as an array).
|
|
|
|
# * <tt>path</tt> - the path for which this cookie applies. Defaults to the root of the application.
|
|
|
|
# * <tt>domain</tt> - the domain for which this cookie applies.
|
|
|
|
# * <tt>expires</tt> - the time at which this cookie expires, as a +Time+ object.
|
|
|
|
# * <tt>secure</tt> - whether this cookie is a secure cookie or not (default to false).
|
2007-09-21 11:05:49 -04:00
|
|
|
# Secure cookies are only transmitted to HTTPS servers.
|
|
|
|
# * <tt>http_only</tt> - whether this cookie is accessible via scripting or only HTTP (defaults to false).
|
|
|
|
|
2004-11-25 21:04:35 -05:00
|
|
|
module Cookies
|
2007-10-31 12:46:56 -04:00
|
|
|
def self.included(base)
|
|
|
|
base.helper_method :cookies
|
|
|
|
end
|
|
|
|
|
2005-05-22 04:58:43 -04:00
|
|
|
protected
|
|
|
|
# Returns the cookie container, which operates as described above.
|
|
|
|
def cookies
|
|
|
|
CookieJar.new(self)
|
|
|
|
end
|
2004-11-25 21:04:35 -05:00
|
|
|
end
|
2006-08-20 01:28:47 -04:00
|
|
|
|
2004-11-26 09:52:59 -05:00
|
|
|
class CookieJar < Hash #:nodoc:
|
2004-11-25 21:04:35 -05:00
|
|
|
def initialize(controller)
|
2006-09-29 04:04:39 -04:00
|
|
|
@controller, @cookies = controller, controller.request.cookies
|
2004-11-25 21:04:35 -05:00
|
|
|
super()
|
|
|
|
update(@cookies)
|
|
|
|
end
|
|
|
|
|
2007-08-31 15:07:42 -04:00
|
|
|
# Returns the value of the cookie by +name+ -- or nil if no such cookie exists. You set new cookies using cookies[]=
|
|
|
|
# (for simple name/value cookies without options).
|
2004-11-25 21:04:35 -05:00
|
|
|
def [](name)
|
2007-10-20 13:30:01 -04:00
|
|
|
cookie = @cookies[name.to_s]
|
|
|
|
if cookie && cookie.respond_to?(:value)
|
2007-12-14 21:29:15 -05:00
|
|
|
cookie.size > 1 ? cookie.value : cookie.value[0]
|
|
|
|
end
|
2004-11-25 21:04:35 -05:00
|
|
|
end
|
2006-08-20 01:28:47 -04:00
|
|
|
|
2004-11-25 21:04:35 -05:00
|
|
|
def []=(name, options)
|
|
|
|
if options.is_a?(Hash)
|
2004-12-12 07:43:48 -05:00
|
|
|
options = options.inject({}) { |options, pair| options[pair.first.to_s] = pair.last; options }
|
2004-11-25 21:11:42 -05:00
|
|
|
options["name"] = name.to_s
|
2004-11-25 21:04:35 -05:00
|
|
|
else
|
2005-01-17 18:38:14 -05:00
|
|
|
options = { "name" => name.to_s, "value" => options }
|
2004-11-25 21:04:35 -05:00
|
|
|
end
|
2006-08-20 01:28:47 -04:00
|
|
|
|
2005-01-06 18:25:19 -05:00
|
|
|
set_cookie(options)
|
2004-11-25 21:04:35 -05:00
|
|
|
end
|
2006-08-20 01:28:47 -04:00
|
|
|
|
2005-04-17 03:18:39 -04:00
|
|
|
# Removes the cookie on the client machine by setting the value to an empty string
|
2007-07-01 19:27:59 -04:00
|
|
|
# and setting its expiration date into the past. Like []=, you can pass in an options
|
|
|
|
# hash to delete cookies with extra data such as a +path+.
|
|
|
|
def delete(name, options = {})
|
|
|
|
options.stringify_keys!
|
|
|
|
set_cookie(options.merge("name" => name.to_s, "value" => "", "expires" => Time.at(0)))
|
2004-12-08 19:15:58 -05:00
|
|
|
end
|
2004-11-25 21:04:35 -05:00
|
|
|
|
|
|
|
private
|
2005-01-06 18:25:19 -05:00
|
|
|
def set_cookie(options) #:doc:
|
2004-12-10 12:16:11 -05:00
|
|
|
options["path"] = "/" unless options["path"]
|
|
|
|
cookie = CGI::Cookie.new(options)
|
2004-11-25 21:16:05 -05:00
|
|
|
@controller.logger.info "Cookie set: #{cookie}" unless @controller.logger.nil?
|
|
|
|
@controller.response.headers["cookie"] << cookie
|
2004-11-25 21:04:35 -05:00
|
|
|
end
|
|
|
|
end
|
2007-12-14 21:29:15 -05:00
|
|
|
end
|