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/models/rememberable.rb

130 lines
5 KiB
Ruby
Raw Normal View History

2010-01-14 09:47:14 -05:00
require 'devise/strategies/rememberable'
require 'devise/hooks/rememberable'
require 'devise/hooks/forgetable'
2010-01-14 09:47:14 -05:00
2009-10-19 22:31:33 -04:00
module Devise
module Models
2009-10-19 22:52:31 -04:00
# Rememberable manages generating and clearing token for remember the user
# from a saved cookie. Rememberable also has utility methods for dealing
# with serializing the user into the cookie and back from the cookie, trying
# to lookup the record based on the saved information.
# You probably wouldn't use rememberable methods directly, they are used
# mostly internally for handling the remember token.
#
2010-07-15 07:01:31 -04:00
# == Options
#
2010-07-15 07:01:31 -04:00
# Rememberable adds the following options in devise_for:
#
2010-07-15 07:01:31 -04:00
# * +remember_for+: the time you want the user will be remembered without
# asking for credentials. After this time the user will be blocked and
# will have to enter his credentials again. This configuration is also
2010-07-15 07:01:31 -04:00
# used to calculate the expires time for the cookie created to remember
# the user. By default remember_for is 2.weeks.
#
2010-07-15 07:01:31 -04:00
# * +remember_across_browsers+: if a valid remember token can be re-used
# between multiple browsers. By default remember_across_browsers is true
# and cannot be turned off if you are using password salt instead of remember
# token.
#
2010-07-15 07:01:31 -04:00
# * +extend_remember_period+: if true, extends the user's remember period
# when remembered via cookie. False by default.
#
# * +cookie_options+: configuration options passed to the created cookie.
#
2010-07-15 07:01:31 -04:00
# == Examples
2009-10-19 22:52:31 -04:00
#
# User.find(1).remember_me! # regenerating the token
# User.find(1).forget_me! # clearing the token
2009-10-20 06:44:21 -04:00
#
2009-10-19 22:52:31 -04:00
# # generating info to put into cookies
# User.serialize_into_cookie(user)
2009-10-20 06:44:21 -04:00
#
2009-10-19 22:52:31 -04:00
# # lookup the user based on the incoming cookie information
# User.serialize_from_cookie(cookie_string)
2009-10-19 22:31:33 -04:00
module Rememberable
2010-02-17 06:35:38 -05:00
extend ActiveSupport::Concern
2009-10-19 22:31:33 -04:00
2011-02-24 15:55:41 -05:00
attr_accessor :remember_me, :extend_remember_period
2009-10-19 22:31:33 -04:00
# Generate a new remember token and save the record without validations
# unless remember_across_browsers is true and the user already has a valid token.
def remember_me!(extend_period=false)
self.remember_token = self.class.remember_token if respond_to?(:remember_token) && generate_remember_token?
self.remember_created_at = Time.now.utc if generate_remember_timestamp?(extend_period)
save(:validate => false)
2009-10-19 22:31:33 -04:00
end
# If the record is persisted, remove the remember token (but only if
# it exists), and save the record without validations.
2009-10-19 22:31:33 -04:00
def forget_me!
if persisted?
self.remember_token = nil if respond_to?(:remember_token=)
self.remember_created_at = nil
save(:validate => false)
end
2009-10-19 22:31:33 -04:00
end
# Remember token should be expired if expiration time not overpass now.
def remember_expired?
remember_created_at.nil? || (remember_expires_at <= Time.now.utc)
end
# Remember token expires at created time + remember_for configuration
def remember_expires_at
remember_created_at + self.class.remember_for
2009-10-19 22:31:33 -04:00
end
2010-01-14 07:38:02 -05:00
def rememberable_value
if respond_to?(:remember_token)
remember_token
elsif respond_to?(:authenticatable_salt) && (salt = authenticatable_salt)
salt
else
raise "The #{self.class.name} class does not respond to remember_token and " <<
"authenticatable_salt returns nil. In order to use rememberable, you must " <<
"add a remember_token field to your model or ensure a password is always set."
end
end
def cookie_options
self.class.cookie_options
end
protected
# Generate a token unless remember_across_browsers is true and there is
# an existing remember_token or the existing remember_token has expried.
def generate_remember_token? #:nodoc:
!(self.class.remember_across_browsers && remember_token) || remember_expired?
end
# Generate a timestamp if extend_remember_period is true, if no remember_token
# exists, or if an existing remember token has expired.
def generate_remember_timestamp?(extend_period) #:nodoc:
extend_period || remember_created_at.nil? || remember_expired?
end
2010-01-14 07:38:02 -05:00
module ClassMethods
# Create the cookie key using the record id and remember_token
def serialize_into_cookie(record)
[record.to_key, record.rememberable_value]
2010-01-14 07:38:02 -05:00
end
# Recreate the user based on the stored cookie
def serialize_from_cookie(id, remember_token)
2010-10-10 11:51:12 -04:00
record = to_adapter.get(id)
record if record && record.rememberable_value == remember_token && !record.remember_expired?
2010-01-14 07:38:02 -05:00
end
2010-07-18 17:32:56 -04:00
# Generate a token checking if one does not already exist in the database.
def remember_token
generate_token(:remember_token)
end
Devise::Models.config(self, :remember_for, :remember_across_browsers,
:extend_remember_period, :cookie_options)
2010-01-14 07:38:02 -05:00
end
2009-10-19 22:31:33 -04:00
end
end
end