1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/lib/devise/hooks/timeoutable.rb

26 lines
1 KiB
Ruby
Raw Normal View History

# Each time a record is set we check whether its session has already timed out
2009-11-22 20:29:03 -05:00
# 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 its scoped session to
2009-11-22 20:29:03 -05:00
# verify timeout in the following request.
Warden::Manager.after_set_user do |record, warden, options|
scope = options[:scope]
env = warden.request.env
if record && record.respond_to?(:timedout?) && warden.authenticated?(scope) && options[:store] != false
last_request_at = warden.session(scope)['last_request_at']
2010-01-14 09:47:14 -05:00
if record.timedout?(last_request_at) && !env['devise.skip_timeout']
2012-02-16 11:40:34 -05:00
warden.logout(scope)
if record.respond_to?(:expire_auth_token_on_timeout) && record.expire_auth_token_on_timeout
record.reset_authentication_token!
end
2012-02-16 11:40:34 -05:00
throw :warden, :scope => scope, :message => :timeout
end
2010-01-14 09:47:14 -05:00
unless env['devise.skip_trackable']
warden.session(scope)['last_request_at'] = Time.now.utc
end
end
end