mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
2d0f887ba7
Signed-off-by: José Valim <jose.valim@gmail.com>
22 lines
928 B
Ruby
22 lines
928 B
Ruby
# Each time a record is set we check whether its session has already timed out
|
|
# or not, based on last request time. If so, the record is logged out and
|
|
# redirected to the sign in page. Also, each time the request comes and the
|
|
# record is set, we set the last request time inside it's scoped session to
|
|
# verify timeout in the following request.
|
|
Warden::Manager.after_set_user do |record, warden, options|
|
|
scope = options[:scope]
|
|
|
|
if record && record.respond_to?(:timedout?) && warden.authenticated?(scope) && options[:store] != false
|
|
last_request_at = warden.session(scope)['last_request_at']
|
|
|
|
if record.timedout?(last_request_at)
|
|
path_checker = Devise::PathChecker.new(warden.env, scope)
|
|
unless path_checker.signing_out?
|
|
warden.logout(scope)
|
|
throw :warden, :scope => scope, :message => :timeout
|
|
end
|
|
end
|
|
|
|
warden.session(scope)['last_request_at'] = Time.now.utc
|
|
end
|
|
end
|