Class: ActionDispatch::Cookies::UpgradeLegacySignedCookieJar

Inherits:
SignedCookieJar show all
Includes:
VerifyAndUpgradeLegacySignedMessage
Defined in:
actionpack/lib/action_dispatch/middleware/cookies.rb

Overview

UpgradeLegacySignedCookieJar is used instead of SignedCookieJar if config.secret_token and secrets.secret_key_base are both set. It reads legacy cookies signed with the old dummy key generator and re-saves them using the new key generator to provide a smooth upgrade path.

Constant Summary

Constants included from SerializedCookieJars

SerializedCookieJars::MARSHAL_SIGNATURE

Instance Method Summary collapse

Methods included from VerifyAndUpgradeLegacySignedMessage

#initialize, #verify_and_upgrade_legacy_signed_message

Methods inherited from SignedCookieJar

#[]=, #initialize

Methods included from ChainedCookieJars

#encrypted, #permanent, #signed, #signed_or_encrypted

Instance Method Details

#[](name) ⇒ Object



490
491
492
493
494
# File 'actionpack/lib/action_dispatch/middleware/cookies.rb', line 490

def [](name)
  if signed_message = @parent_jar[name]
    deserialize(name, verify(signed_message)) || verify_and_upgrade_legacy_signed_message(name, signed_message)
  end
end