1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
# frozen_string_literal: true
module Projects
class UpdateStatisticsService < BaseService
include ::Gitlab::Utils::StrongMemoize
STAT_TO_CACHED_METHOD = {
repository_size: [:size, :recent_objects_size],
commit_count: :commit_count
}.freeze
def execute
return unless project
Gitlab::AppLogger.info("Updating statistics for project #{project.id}")
expire_repository_caches
expire_wiki_caches
project.statistics.refresh!(only: statistics)
after_execute_hook
end
private
def after_execute_hook
# overridden in ee
end
def expire_repository_caches
if statistics.empty?
project.repository.expire_statistics_caches
elsif method_caches_to_expire.present?
project.repository.expire_method_caches(method_caches_to_expire)
end
end
def expire_wiki_caches
return unless project.wiki_enabled? && statistics.include?(:wiki_size)
project.wiki.repository.expire_method_caches([:size])
end
def method_caches_to_expire
strong_memoize(:method_caches_to_expire) do
statistics.flat_map { |stat| STAT_TO_CACHED_METHOD[stat] }.compact
end
end
def statistics
strong_memoize(:statistics) do
params[:statistics]&.map(&:to_sym)
end
end
end
end
Projects::UpdateStatisticsService.prepend_mod
|