debian-mirror-gitlab/app/models/project_statistics.rb

102 lines
3 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2019-07-07 11:18:12 +05:30
class ProjectStatistics < ApplicationRecord
2019-09-30 21:07:59 +05:30
include AfterCommitQueue
2017-08-17 22:00:37 +05:30
belongs_to :project
belongs_to :namespace
2019-09-04 21:01:54 +05:30
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
2017-08-17 22:00:37 +05:30
before_save :update_storage_size
2019-09-04 21:01:54 +05:30
COLUMNS_TO_REFRESH = [:repository_size, :wiki_size, :lfs_objects_size, :commit_count].freeze
2019-07-31 22:56:46 +05:30
INCREMENTABLE_COLUMNS = { build_artifacts_size: %i[storage_size], packages_size: %i[storage_size] }.freeze
2019-09-30 21:07:59 +05:30
NAMESPACE_RELATABLE_COLUMNS = [:repository_size, :wiki_size, :lfs_objects_size].freeze
2017-08-17 22:00:37 +05:30
2019-09-04 21:01:54 +05:30
scope :for_project_ids, ->(project_ids) { where(project_id: project_ids) }
2017-08-17 22:00:37 +05:30
def total_repository_size
repository_size + lfs_objects_size
end
2019-09-30 21:07:59 +05:30
def refresh!(only: [])
2018-10-15 14:42:47 +05:30
COLUMNS_TO_REFRESH.each do |column, generator|
2019-09-30 21:07:59 +05:30
if only.empty? || only.include?(column)
2018-03-17 18:26:18 +05:30
public_send("update_#{column}") # rubocop:disable GitlabSecurity/PublicSend
2017-08-17 22:00:37 +05:30
end
end
2019-09-30 21:07:59 +05:30
if only.empty? || only.any? { |column| NAMESPACE_RELATABLE_COLUMNS.include?(column) }
schedule_namespace_aggregation_worker
end
2017-08-17 22:00:37 +05:30
save!
end
def update_commit_count
self.commit_count = project.repository.commit_count
end
def update_repository_size
self.repository_size = project.repository.size * 1.megabyte
end
2019-09-04 21:01:54 +05:30
def update_wiki_size
self.wiki_size = project.wiki.repository.size * 1.megabyte
end
2017-08-17 22:00:37 +05:30
def update_lfs_objects_size
self.lfs_objects_size = project.lfs_objects.sum(:size)
end
2019-07-31 22:56:46 +05:30
# older migrations fail due to non-existent attribute without this
def packages_size
2019-09-04 21:01:54 +05:30
has_attribute?(:packages_size) ? super : 0
2019-07-31 22:56:46 +05:30
end
2018-10-15 14:42:47 +05:30
def update_storage_size
2019-09-04 21:01:54 +05:30
self.storage_size = repository_size + wiki_size.to_i + lfs_objects_size + build_artifacts_size + packages_size
2017-08-17 22:00:37 +05:30
end
2018-11-18 11:00:15 +05:30
# 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-10-15 14:42:47 +05:30
def self.increment_statistic(project_id, key, amount)
2018-11-18 11:00:15 +05:30
raise ArgumentError, "Cannot increment attribute: #{key}" unless INCREMENTABLE_COLUMNS.key?(key)
2018-10-15 14:42:47 +05:30
return if amount == 0
where(project_id: project_id)
2018-11-18 11:00:15 +05:30
.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(', '))
2017-08-17 22:00:37 +05:30
end
2019-09-30 21:07:59 +05:30
private
def schedule_namespace_aggregation_worker
run_after_commit do
Namespaces::ScheduleAggregationWorker.perform_async(project.namespace_id)
end
end
2017-08-17 22:00:37 +05:30
end
2019-12-04 20:38:33 +05:30
ProjectStatistics.prepend_if_ee('EE::ProjectStatistics')