Class: ActionDispatch::Cookies::SignedCookieJar
- Defined in:
- lib/action_dispatch/middleware/cookies.rb
Overview
:nodoc:
Constant Summary collapse
- MAX_COOKIE_SIZE =
Cookies can typically store 4096 bytes.
4096
- SECRET_MIN_LENGTH =
Characters
30
Constants inherited from CookieJar
Instance Method Summary collapse
- #[](name) ⇒ Object
- #[]=(key, options) ⇒ Object
-
#initialize(parent_jar, secret) ⇒ SignedCookieJar
constructor
A new instance of SignedCookieJar.
- #method_missing(method, *arguments, &block) ⇒ Object
Methods inherited from CookieJar
build, #delete, #handle_options, #permanent, #signed, #write
Constructor Details
#initialize(parent_jar, secret) ⇒ SignedCookieJar
Returns a new instance of SignedCookieJar.
245 246 247 248 249 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 245 def initialize(parent_jar, secret) ensure_secret_secure(secret) @parent_jar = parent_jar @verifier = ActiveSupport::MessageVerifier.new(secret) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *arguments, &block) ⇒ Object
271 272 273 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 271 def method_missing(method, *arguments, &block) @parent_jar.send(method, *arguments, &block) end |
Instance Method Details
#[](name) ⇒ Object
251 252 253 254 255 256 257 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 251 def [](name) if = @parent_jar[name] @verifier.verify() end rescue ActiveSupport::MessageVerifier::InvalidSignature nil end |
#[]=(key, options) ⇒ Object
259 260 261 262 263 264 265 266 267 268 269 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 259 def []=(key, ) if .is_a?(Hash) .symbolize_keys! [:value] = @verifier.generate([:value]) else = { :value => @verifier.generate() } end raise CookieOverflow if [:value].size > MAX_COOKIE_SIZE @parent_jar[key] = end |