BigW Consortium Gitlab

project_statistics.rb 1.08 KB
Newer Older
1 2 3 4 5 6
class ProjectStatistics < ActiveRecord::Base
  belongs_to :project
  belongs_to :namespace

  before_save :update_storage_size

7
  STORAGE_COLUMNS = [:repository_size, :lfs_objects_size, :build_artifacts_size].freeze
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
  STATISTICS_COLUMNS = [:commit_count] + STORAGE_COLUMNS

  def total_repository_size
    repository_size + lfs_objects_size
  end

  def refresh!(only: nil)
    STATISTICS_COLUMNS.each do |column, generator|
      if only.blank? || only.include?(column)
        public_send("update_#{column}")
      end
    end

    save!
  end

  def update_commit_count
    self.commit_count = project.repository.commit_count
  end

28
  # Repository#size needs to be converted from MB to Byte.
29
  def update_repository_size
30
    self.repository_size = project.repository.size * 1.megabyte
31 32 33 34 35 36 37 38 39 40 41 42 43 44
  end

  def update_lfs_objects_size
    self.lfs_objects_size = project.lfs_objects.sum(:size)
  end

  def update_build_artifacts_size
    self.build_artifacts_size = project.builds.sum(:artifacts_size)
  end

  def update_storage_size
    self.storage_size = STORAGE_COLUMNS.sum(&method(:read_attribute))
  end
end