gab-social/app/controllers/concerns/user_tracking_concern.rb

22 lines
465 B
Ruby
Raw Normal View History

2019-07-02 03:10:25 -04:00
# frozen_string_literal: true
module UserTrackingConcern
extend ActiveSupport::Concern
UPDATE_SIGN_IN_HOURS = 24
included do
before_action :set_user_activity
end
private
def set_user_activity
2021-01-30 01:49:22 -05:00
current_user.update_sign_in!(request) if user_needs_sign_in_update?
2019-07-02 03:10:25 -04:00
end
def user_needs_sign_in_update?
2021-01-30 01:49:22 -05:00
user_signed_in? && (current_user.current_sign_in_at.nil? || current_user.current_sign_in_at < UPDATE_SIGN_IN_HOURS.hours.ago)
2019-07-02 03:10:25 -04:00
end
end