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, #clear, #delete, #each, #handle_options, #key?, #permanent, #recycle!, #signed, #update, #write
Constructor Details
#initialize(parent_jar, secret) ⇒ SignedCookieJar
Returns a new instance of SignedCookieJar.
283 284 285 286 287 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 283 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
309 310 311 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 309 def method_missing(method, *arguments, &block) @parent_jar.send(method, *arguments, &block) end |
Instance Method Details
#[](name) ⇒ Object
289 290 291 292 293 294 295 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 289 def [](name) if = @parent_jar[name] @verifier.verify() end rescue ActiveSupport::MessageVerifier::InvalidSignature nil end |
#[]=(key, options) ⇒ Object
297 298 299 300 301 302 303 304 305 306 307 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 297 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 |