55 lines
2.3 KiB
Ruby
55 lines
2.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module RegistrationLimitationHelper
|
|
def reach_registrations_limit?
|
|
((Setting.registrations_limit.presence || 0).positive? && Setting.registrations_limit <= user_count_for_registration) ||
|
|
((Setting.registrations_limit_per_day.presence || 0).positive? && Setting.registrations_limit_per_day <= today_increase_user_count)
|
|
end
|
|
|
|
def user_count_for_registration
|
|
Rails.cache.fetch('registrations:user_count') { User.confirmed.enabled.joins(:account).merge(Account.without_suspended).count }
|
|
end
|
|
|
|
def today_increase_user_count
|
|
today_date = Time.now.utc.beginning_of_day.to_i
|
|
count = 0
|
|
|
|
if Rails.cache.fetch('registrations:today_date') { today_date } == today_date
|
|
count = Rails.cache.fetch('registrations:today_increase_user_count') { today_increase_user_count_value }
|
|
else
|
|
count = today_increase_user_count_value
|
|
Rails.cache.write('registrations:today_date', today_date)
|
|
Rails.cache.write('registrations:today_increase_user_count', count)
|
|
end
|
|
|
|
count
|
|
end
|
|
|
|
def today_increase_user_count_value
|
|
User.confirmed.enabled.where(users: { created_at: Time.now.utc.beginning_of_day.. }).joins(:account).merge(Account.without_suspended).count
|
|
end
|
|
|
|
def registrations_in_time?
|
|
start_hour = Setting.registrations_start_hour
|
|
end_hour = Setting.registrations_end_hour
|
|
secondary_start_hour = Setting.registrations_secondary_start_hour
|
|
secondary_end_hour = Setting.registrations_secondary_end_hour
|
|
|
|
start_hour = 0 unless start_hour.is_a?(Integer)
|
|
end_hour = 0 unless end_hour.is_a?(Integer)
|
|
secondary_start_hour = 0 unless secondary_start_hour.is_a?(Integer)
|
|
secondary_end_hour = 0 unless secondary_end_hour.is_a?(Integer)
|
|
|
|
return true if start_hour >= end_hour && secondary_start_hour >= secondary_end_hour
|
|
|
|
current_hour = Time.now.utc.hour
|
|
|
|
(start_hour < end_hour && end_hour.positive? && current_hour.between?(start_hour, end_hour - 1)) ||
|
|
(secondary_start_hour < secondary_end_hour && secondary_end_hour.positive? && current_hour.between?(secondary_start_hour, secondary_end_hour - 1))
|
|
end
|
|
|
|
def reset_registration_limit_caches!
|
|
Rails.cache.delete('registrations:user_count')
|
|
Rails.cache.delete('registrations:today_increase_user_count')
|
|
end
|
|
end
|