summaryrefslogtreecommitdiff
path: root/app/services/projects/fetch_statistics_increment_service.rb
blob: 8644e6bf313e933acbe8333d807a4b5d031397d9 (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
# frozen_string_literal: true

module Projects
  class FetchStatisticsIncrementService
    attr_reader :project

    def initialize(project)
      @project = project
    end

    def execute
      increment_fetch_count_sql = <<~SQL
        INSERT INTO #{table_name} (project_id, date, fetch_count)
        VALUES (#{project.id}, '#{Date.today}', 1)
      SQL

      increment_fetch_count_sql += if Gitlab::Database.postgresql?
                                     "ON CONFLICT (project_id, date) DO UPDATE SET fetch_count = #{table_name}.fetch_count + 1"
                                   else
                                     "ON DUPLICATE KEY UPDATE fetch_count = #{table_name}.fetch_count + 1"
                                   end

      ActiveRecord::Base.connection.execute(increment_fetch_count_sql)
    end

    private

    def table_name
      ProjectDailyStatistic.table_name
    end
  end
end