Module: ActionDispatch::Session::StaleSessionCheck

Included in:
AbstractStore, MemCacheStore
Defined in:
lib/action_dispatch/middleware/session/abstract_store.rb

Instance Method Summary collapse

Instance Method Details

#extract_session_id(env) ⇒ Object



59
60
61
# File 'lib/action_dispatch/middleware/session/abstract_store.rb', line 59

def extract_session_id(env)
  stale_session_check! { super }
end

#load_session(env) ⇒ Object



55
56
57
# File 'lib/action_dispatch/middleware/session/abstract_store.rb', line 55

def load_session(env)
  stale_session_check! { super }
end

#stale_session_check!Object



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/action_dispatch/middleware/session/abstract_store.rb', line 63

def stale_session_check!
  yield
rescue ArgumentError => argument_error
  if argument_error.message =~ %r{undefined class/module ([\w:]*\w)}
    begin
      # Note that the regexp does not allow $1 to end with a ':'
      $1.constantize
    rescue LoadError, NameError
      raise ActionDispatch::Session::SessionRestoreError
    end
    retry
  else
    raise
  end
end