2019-04-01 02:11:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Worker for updating project statistics.
|
2020-02-19 13:09:10 -05:00
|
|
|
class UpdateProjectStatisticsWorker # rubocop:disable Scalability/IdempotentWorker
|
2019-04-01 02:11:08 -04:00
|
|
|
include ApplicationWorker
|
|
|
|
|
2019-10-18 07:11:44 -04:00
|
|
|
feature_category :source_code_management
|
|
|
|
|
2019-04-01 02:11:08 -04:00
|
|
|
# project_id - The ID of the project for which to flush the cache.
|
|
|
|
# statistics - An Array containing columns from ProjectStatistics to
|
|
|
|
# refresh, if empty all columns will be refreshed
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
|
|
def perform(project_id, statistics = [])
|
|
|
|
project = Project.find_by(id: project_id)
|
|
|
|
|
2019-04-05 09:07:09 -04:00
|
|
|
Projects::UpdateStatisticsService.new(project, nil, statistics: statistics).execute
|
2019-04-01 02:11:08 -04:00
|
|
|
end
|
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
end
|