Welcome to mirror list, hosted at ThFree Co, Russian Federation.

statistic.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 902ed429704f544a299e098cf7eb180f41bb7520 (plain)
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
# frozen_string_literal: true

class Statistic < ActiveRecord::Base
  belongs_to :project

  before_save :update_storage_size

  enum key: {
    commit_count: 0,
    repository_size: 1,
    lfs_objects_size: 2,
    job_artifacts_size: 3,
    repositories_count: 4
  }

  validates :key, presence: true

  def self.increment_project_statistic(project, key, amount)
    raise ArgumentError, "Cannot increment attribute: #{key}" unless keys.key?(key)
    return if amount == 0

    ActiveRecord::Base.transaction do
      project.statistic.public_send(key).increment(amount)
    end
  end

  def self.increment(amount)
    self.value ||= 0
    self.value += amount
    save
  end

  def storage_size
    query = <<~SQL
      SELECT sum(v) from
      (
        SELECT value AS v FROM statistics WHERE project_id = #{project.id} AND key = #{keys[:repository_size]} LIMIT 1
        union all
        SELECT value AS v FROM statistics WHERE project_id = #{project.id} AND key = #{keys[:lfs_objects_size]} LIMIT 1
        union all
        SELECT value AS v FROM statistics WHERE project_id = #{project.id} AND key = #{keys[:job_artifacts_size]} LIMIT 1
      )
    SQL

    ActiveRecord::Base.connection.select_all(query).first
  end
end