aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/session/cookie_store.rb
diff options
context:
space:
mode:
authorMatt Bauer <bauer@Mosquito.local>2008-12-20 14:37:51 -0600
committerJoshua Peek <josh@joshpeek.com>2008-12-20 14:37:51 -0600
commit7b249b67e9df9f375eaad9e6eb41be73338faaa7 (patch)
treea40d4f8d4e395564cb00afcb4e946114045da117 /actionpack/lib/action_controller/session/cookie_store.rb
parent462c75b60c659d75fafaeb10dd6ba9d4c16b6cb2 (diff)
downloadrails-7b249b67e9df9f375eaad9e6eb41be73338faaa7.tar.gz
rails-7b249b67e9df9f375eaad9e6eb41be73338faaa7.tar.bz2
rails-7b249b67e9df9f375eaad9e6eb41be73338faaa7.zip
Fix reset_session with lazy cookie stores [#1601 state:resolved]
Signed-off-by: Joshua Peek <josh@joshpeek.com>
Diffstat (limited to 'actionpack/lib/action_controller/session/cookie_store.rb')
-rw-r--r--actionpack/lib/action_controller/session/cookie_store.rb12
1 files changed, 5 insertions, 7 deletions
diff --git a/actionpack/lib/action_controller/session/cookie_store.rb b/actionpack/lib/action_controller/session/cookie_store.rb
index ba63f8521f..135bedaf50 100644
--- a/actionpack/lib/action_controller/session/cookie_store.rb
+++ b/actionpack/lib/action_controller/session/cookie_store.rb
@@ -89,16 +89,14 @@ module ActionController
end
def call(env)
- session_data = AbstractStore::SessionHash.new(self, env)
- original_value = session_data.dup
-
- env[ENV_SESSION_KEY] = session_data
+ env[ENV_SESSION_KEY] = AbstractStore::SessionHash.new(self, env)
env[ENV_SESSION_OPTIONS_KEY] = @default_options
status, headers, body = @app.call(env)
- unless env[ENV_SESSION_KEY] == original_value
- session_data = marshal(env[ENV_SESSION_KEY].to_hash)
+ session_data = env[ENV_SESSION_KEY]
+ if !session_data.is_a?(AbstractStore::SessionHash) || session_data.send(:loaded?)
+ session_data = marshal(session_data.to_hash)
raise CookieOverflow if session_data.size > MAX
@@ -153,7 +151,7 @@ module ActionController
# Marshal a session hash into safe cookie data. Include an integrity hash.
def marshal(session)
- @verifier.generate( persistent_session_id!(session))
+ @verifier.generate(persistent_session_id!(session))
end
# Unmarshal cookie data to a hash and verify its integrity.