33 lines
911 B
Ruby
33 lines
911 B
Ruby
|
# 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
|