Created
October 6, 2011 07:34
-
-
Save deepakdargade/1266763 to your computer and use it in GitHub Desktop.
Devise Trackable file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'devise/hooks/trackable' | |
module Devise | |
module Models | |
# Track information about your user sign in. It tracks the following columns: | |
# | |
# * sign_in_count - Increased every time a sign in is made (by form, openid, oauth) | |
# * current_sign_in_at - A timestamp updated when the user signs in | |
# * last_sign_in_at - Holds the timestamp of the previous sign in | |
# * current_sign_in_ip - The remote ip updated when the user sign in | |
# * last_sign_in_ip - Holds the remote ip of the previous sign in | |
# | |
module Trackable | |
def update_tracked_fields!(request) | |
old_current, new_current = self.current_sign_in_at, Time.now | |
self.last_sign_in_at = old_current || new_current | |
self.current_sign_in_at = new_current | |
old_current, new_current = self.current_sign_in_ip, request.remote_ip | |
self.last_sign_in_ip = old_current || new_current | |
self.current_sign_in_ip = new_current | |
self.sign_in_count ||= 0 | |
self.sign_in_count += 1 | |
save(:validate => false) | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment