2019-07-02 08:10:25 +01: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-02-09 19:38:10 +00:00
|
|
|
ActiveRecord::Base.connected_to(role: :writing) do
|
|
|
|
current_user.update_sign_in!(request) if user_needs_sign_in_update?
|
|
|
|
end
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def user_needs_sign_in_update?
|
2021-01-30 06:49:22 +00: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 08:10:25 +01:00
|
|
|
end
|
|
|
|
end
|