2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
class ProjectStatistics < ActiveRecord::Base
|
|
|
|
belongs_to :project
|
|
|
|
belongs_to :namespace
|
|
|
|
|
|
|
|
before_save :update_storage_size
|
|
|
|
|
2018-03-20 19:03:50 -04:00
|
|
|
COLUMNS_TO_REFRESH = [:repository_size, :lfs_objects_size, :commit_count].freeze
|
2018-07-18 12:25:56 -04:00
|
|
|
INCREMENTABLE_COLUMNS = { build_artifacts_size: %i[storage_size] }.freeze
|
2016-11-22 11:58:10 -05:00
|
|
|
|
|
|
|
def total_repository_size
|
|
|
|
repository_size + lfs_objects_size
|
|
|
|
end
|
|
|
|
|
|
|
|
def refresh!(only: nil)
|
2018-03-20 19:03:50 -04:00
|
|
|
COLUMNS_TO_REFRESH.each do |column, generator|
|
2016-11-22 11:58:10 -05:00
|
|
|
if only.blank? || 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
|
|
|
|
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_commit_count
|
|
|
|
self.commit_count = project.repository.commit_count
|
|
|
|
end
|
|
|
|
|
2017-01-17 13:29:31 -05:00
|
|
|
# Repository#size needs to be converted from MB to Byte.
|
2016-11-22 11:58:10 -05:00
|
|
|
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
|
|
|
|
|
|
|
|
def update_lfs_objects_size
|
|
|
|
self.lfs_objects_size = project.lfs_objects.sum(:size)
|
|
|
|
end
|
|
|
|
|
2018-03-20 19:03:50 -04:00
|
|
|
def update_storage_size
|
|
|
|
self.storage_size = repository_size + lfs_objects_size + build_artifacts_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
|
|
|
|
end
|