Class: ActionDispatch::Cookies::AbstractCookieJar

Inherits:
Object
  • Object
show all
Includes:
ChainedCookieJars
Defined in:
lib/action_dispatch/middleware/cookies.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods included from ChainedCookieJars

#encrypted, #permanent, #signed, #signed_or_encrypted

Constructor Details

#initialize(parent_jar) ⇒ AbstractCookieJar

Returns a new instance of AbstractCookieJar.



509
510
511
# File 'lib/action_dispatch/middleware/cookies.rb', line 509

def initialize(parent_jar)
  @parent_jar = parent_jar
end

Instance Method Details

#[](name) ⇒ Object



513
514
515
516
517
518
519
520
521
522
523
# File 'lib/action_dispatch/middleware/cookies.rb', line 513

def [](name)
  if data = @parent_jar[name.to_s]
    result = parse(name, data, purpose: "cookie.#{name}")

    if result.nil?
      parse(name, data)
    else
      result
    end
  end
end

#[]=(name, options) ⇒ Object



525
526
527
528
529
530
531
532
533
534
# File 'lib/action_dispatch/middleware/cookies.rb', line 525

def []=(name, options)
  if options.is_a?(Hash)
    options.symbolize_keys!
  else
    options = { value: options }
  end

  commit(name, options)
  @parent_jar[name] = options
end