Class: ActionDispatch::Cookies::CookieJar
- Inherits:
-
Object
- Object
- ActionDispatch::Cookies::CookieJar
- Includes:
- ChainedCookieJars, Enumerable
- Defined in:
- lib/action_dispatch/middleware/cookies.rb
Overview
:nodoc:
Direct Known Subclasses
ActionController::RequestForgeryProtection::ProtectionMethods::NullSession::NullCookieJar
Constant Summary collapse
- DOMAIN_REGEXP =
This regular expression is used to split the levels of a domain. The top level domain can be any string without a period or ., *. style TLDs like co.uk or com.au
www.example.co.uk gives: $& => example.co.uk
example.com gives: $& => example.com
lots.of.subdomains.example.local gives: $& => example.local
/[^.]*\.([^.]*|..\...|...\...)$/
Instance Attribute Summary collapse
-
#request ⇒ Object
readonly
Returns the value of attribute request.
Class Method Summary collapse
Instance Method Summary collapse
-
#[](name) ⇒ Object
Returns the value of the cookie by
name
, ornil
if no such cookie exists. -
#[]=(name, options) ⇒ Object
Sets the cookie named
name
. -
#clear(options = {}) ⇒ Object
Removes all cookies on the client machine by calling
delete
for each cookie. - #commit! ⇒ Object
- #committed? ⇒ Boolean
-
#delete(name, options = {}) ⇒ Object
Removes the cookie on the client machine by setting the value to an empty string and the expiration date in the past.
-
#deleted?(name, options = {}) ⇒ Boolean
Whether the given cookie is to be deleted by this CookieJar.
- #each(&block) ⇒ Object
- #fetch(name, *args, &block) ⇒ Object
-
#handle_options(options) ⇒ Object
:nodoc:.
-
#initialize(request) ⇒ CookieJar
constructor
A new instance of CookieJar.
- #key?(name) ⇒ Boolean (also: #has_key?)
- #to_header ⇒ Object
- #update(other_hash) ⇒ Object
- #update_cookies_from_jar ⇒ Object
- #write(headers) ⇒ Object
Methods included from ChainedCookieJars
#encrypted, #permanent, #signed, #signed_or_encrypted
Constructor Details
#initialize(request) ⇒ CookieJar
Returns a new instance of CookieJar.
294 295 296 297 298 299 300 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 294 def initialize(request) @set_cookies = {} @delete_cookies = {} @request = request @cookies = {} @committed = false end |
Instance Attribute Details
#request ⇒ Object (readonly)
Returns the value of attribute request.
292 293 294 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 292 def request @request end |
Class Method Details
.build(req, cookies) ⇒ Object
286 287 288 289 290 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 286 def self.build(req, ) new(req).tap do |hash| hash.update() end end |
Instance Method Details
#[](name) ⇒ Object
Returns the value of the cookie by name
, or nil
if no such cookie exists.
315 316 317 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 315 def [](name) @cookies[name.to_s] end |
#[]=(name, options) ⇒ Object
Sets the cookie named name
. The second argument may be the cookie’s value or a hash of options as documented above.
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 364 def []=(name, ) if .is_a?(Hash) .symbolize_keys! value = [:value] else value = = { :value => value } end () if @cookies[name.to_s] != value or [:expires] @cookies[name.to_s] = value @set_cookies[name.to_s] = @delete_cookies.delete(name.to_s) end value end |
#clear(options = {}) ⇒ Object
Removes all cookies on the client machine by calling delete
for each cookie
408 409 410 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 408 def clear( = {}) @cookies.each_key{ |k| delete(k, ) } end |
#commit! ⇒ Object
304 305 306 307 308 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 304 def commit! @committed = true @set_cookies.freeze @delete_cookies.freeze end |
#committed? ⇒ Boolean
302 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 302 def committed?; @committed; end |
#delete(name, options = {}) ⇒ Object
Removes the cookie on the client machine by setting the value to an empty string and the expiration date in the past. Like []=
, you can pass in an options hash to delete cookies with extra data such as a :path
.
387 388 389 390 391 392 393 394 395 396 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 387 def delete(name, = {}) return unless @cookies.has_key? name.to_s .symbolize_keys! () value = @cookies.delete(name.to_s) @delete_cookies[name.to_s] = value end |
#deleted?(name, options = {}) ⇒ Boolean
Whether the given cookie is to be deleted by this CookieJar. Like []=
, you can pass in an options hash to test if a deletion applies to a specific :path
, :domain
etc.
401 402 403 404 405 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 401 def deleted?(name, = {}) .symbolize_keys! () @delete_cookies[name.to_s] == end |
#each(&block) ⇒ Object
310 311 312 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 310 def each(&block) @cookies.each(&block) end |
#fetch(name, *args, &block) ⇒ Object
319 320 321 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 319 def fetch(name, *args, &block) @cookies.fetch(name.to_s, *args, &block) end |
#handle_options(options) ⇒ Object
:nodoc:
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 344 def () #:nodoc: [:path] ||= "/" if [:domain] == :all || [:domain] == 'all' # if there is a provided tld length then we use it otherwise default domain regexp domain_regexp = [:tld_length] ? /([^.]+\.?){#{[:tld_length]}}$/ : DOMAIN_REGEXP # if host is not ip and matches domain regexp # (ip confirms to domain regexp so we explicitly check for ip) [:domain] = if (request.host !~ /^[\d.]+$/) && (request.host =~ domain_regexp) ".#{$&}" end elsif [:domain].is_a? Array # if host matches one of the supplied domains without a dot in front of it [:domain] = [:domain].find {|domain| request.host.include? domain.sub(/^\./, '') } end end |
#key?(name) ⇒ Boolean Also known as: has_key?
323 324 325 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 323 def key?(name) @cookies.key?(name.to_s) end |
#to_header ⇒ Object
340 341 342 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 340 def to_header @cookies.map { |k,v| "#{escape(k)}=#{escape(v)}" }.join '; ' end |
#update(other_hash) ⇒ Object
328 329 330 331 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 328 def update(other_hash) @cookies.update other_hash.stringify_keys self end |
#update_cookies_from_jar ⇒ Object
333 334 335 336 337 338 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 333 def request_jar = @request..instance_variable_get(:@cookies) = request_jar.reject { |k,_| @delete_cookies.key?(k) } @cookies.update if end |
#write(headers) ⇒ Object
412 413 414 415 416 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 412 def write(headers) if header = (headers[HTTP_HEADER]) headers[HTTP_HEADER] = header end end |