2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 09:17:42 -04:00
|
|
|
class ProjectStatistics < ApplicationRecord
|
2019-07-08 11:06:05 -04:00
|
|
|
include AfterCommitQueue
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
belongs_to :project
|
|
|
|
belongs_to :namespace
|
|
|
|
|
2019-02-13 17:38:11 -05:00
|
|
|
default_value_for :wiki_size, 0
|
|
|
|
|
|
|
|
# older migrations fail due to non-existent attribute without this
|
|
|
|
def wiki_size
|
|
|
|
has_attribute?(:wiki_size) ? super : 0
|
|
|
|
end
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
before_save :update_storage_size
|
|
|
|
|
2019-02-13 17:38:11 -05:00
|
|
|
COLUMNS_TO_REFRESH = [:repository_size, :wiki_size, :lfs_objects_size, :commit_count].freeze
|
2019-05-02 12:04:15 -04:00
|
|
|
INCREMENTABLE_COLUMNS = { build_artifacts_size: %i[storage_size], packages_size: %i[storage_size] }.freeze
|
2019-07-08 11:06:05 -04:00
|
|
|
NAMESPACE_RELATABLE_COLUMNS = [:repository_size, :wiki_size, :lfs_objects_size].freeze
|
2016-11-22 11:58:10 -05:00
|
|
|
|
2019-05-12 17:10:46 -04:00
|
|
|
scope :for_project_ids, ->(project_ids) { where(project_id: project_ids) }
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
def total_repository_size
|
|
|
|
repository_size + lfs_objects_size
|
|
|
|
end
|
|
|
|
|
2019-07-08 11:06:05 -04:00
|
|
|
def refresh!(only: [])
|
2018-03-20 19:03:50 -04:00
|
|
|
COLUMNS_TO_REFRESH.each do |column, generator|
|
2019-07-08 11:06:05 -04:00
|
|
|
if only.empty? || only.include?(column)
|
2017-08-03 22:20:34 -04:00
|
|
|
public_send("update_#{column}") # rubocop:disable GitlabSecurity/PublicSend
|
2016-11-22 11:58:10 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-08 11:06:05 -04:00
|
|
|
if only.empty? || only.any? { |column| NAMESPACE_RELATABLE_COLUMNS.include?(column) }
|
|
|
|
schedule_namespace_aggregation_worker
|
|
|
|
end
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_commit_count
|
|
|
|
self.commit_count = project.repository.commit_count
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_repository_size
|
2017-01-17 13:29:31 -05:00
|
|
|
self.repository_size = project.repository.size * 1.megabyte
|
2016-11-22 11:58:10 -05:00
|
|
|
end
|
|
|
|
|
2019-02-13 17:38:11 -05:00
|
|
|
def update_wiki_size
|
|
|
|
self.wiki_size = project.wiki.repository.size * 1.megabyte
|
|
|
|
end
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
def update_lfs_objects_size
|
|
|
|
self.lfs_objects_size = project.lfs_objects.sum(:size)
|
|
|
|
end
|
|
|
|
|
2019-05-02 12:04:15 -04:00
|
|
|
# older migrations fail due to non-existent attribute without this
|
|
|
|
def packages_size
|
2019-05-31 05:59:36 -04:00
|
|
|
has_attribute?(:packages_size) ? super : 0
|
2019-05-02 12:04:15 -04:00
|
|
|
end
|
|
|
|
|
2018-03-20 19:03:50 -04:00
|
|
|
def update_storage_size
|
2019-06-10 11:44:50 -04:00
|
|
|
self.storage_size = repository_size + wiki_size.to_i + lfs_objects_size + build_artifacts_size + packages_size
|
2016-11-22 11:58:10 -05:00
|
|
|
end
|
|
|
|
|
2018-07-18 12:25:56 -04:00
|
|
|
# Since this incremental update method does not call update_storage_size above,
|
|
|
|
# we have to update the storage_size here as additional column.
|
|
|
|
# Additional columns are updated depending on key => [columns], which allows
|
|
|
|
# to update statistics which are and also those which aren't included in storage_size
|
|
|
|
# or any other additional summary column in the future.
|
2018-03-20 19:03:50 -04:00
|
|
|
def self.increment_statistic(project_id, key, amount)
|
2018-07-18 12:25:56 -04:00
|
|
|
raise ArgumentError, "Cannot increment attribute: #{key}" unless INCREMENTABLE_COLUMNS.key?(key)
|
2018-03-20 19:03:50 -04:00
|
|
|
return if amount == 0
|
|
|
|
|
|
|
|
where(project_id: project_id)
|
2018-07-18 12:25:56 -04:00
|
|
|
.columns_to_increment(key, amount)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.columns_to_increment(key, amount)
|
|
|
|
updates = ["#{key} = COALESCE(#{key}, 0) + (#{amount})"]
|
|
|
|
|
|
|
|
if (additional = INCREMENTABLE_COLUMNS[key])
|
|
|
|
additional.each do |column|
|
|
|
|
updates << "#{column} = COALESCE(#{column}, 0) + (#{amount})"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
update_all(updates.join(', '))
|
2016-11-22 11:58:10 -05:00
|
|
|
end
|
2019-07-08 11:06:05 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def schedule_namespace_aggregation_worker
|
|
|
|
run_after_commit do
|
|
|
|
Namespaces::ScheduleAggregationWorker.perform_async(project.namespace_id)
|
|
|
|
end
|
|
|
|
end
|
2016-11-22 11:58:10 -05:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
ProjectStatistics.prepend_if_ee('EE::ProjectStatistics')
|