2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-20 06:59:39 -04:00
|
|
|
# Worker for updating any project specific caches.
|
2015-07-17 08:50:03 -04:00
|
|
|
class ProjectCacheWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2018-06-22 09:31:04 -04:00
|
|
|
include ExclusiveLeaseGuard
|
2015-07-17 08:50:03 -04:00
|
|
|
|
2016-10-20 06:59:39 -04:00
|
|
|
LEASE_TIMEOUT = 15.minutes.to_i
|
|
|
|
|
2016-11-18 08:04:18 -05:00
|
|
|
# project_id - The ID of the project for which to flush the cache.
|
2016-11-22 11:58:10 -05:00
|
|
|
# files - An Array containing extra types of files to refresh such as
|
|
|
|
# `:readme` to flush the README and `:changelog` to flush the
|
|
|
|
# CHANGELOG.
|
|
|
|
# statistics - An Array containing columns from ProjectStatistics to
|
|
|
|
# refresh, if empty all columns will be refreshed
|
|
|
|
def perform(project_id, files = [], statistics = [])
|
2018-06-22 09:31:04 -04:00
|
|
|
@project = Project.find_by(id: project_id)
|
|
|
|
return unless @project&.repository&.exists?
|
2016-10-25 10:01:24 -04:00
|
|
|
|
2018-06-22 09:31:04 -04:00
|
|
|
update_statistics(statistics)
|
2016-10-25 10:01:24 -04:00
|
|
|
|
2018-06-22 09:31:04 -04:00
|
|
|
@project.repository.refresh_method_caches(files.map(&:to_sym))
|
2016-10-20 06:59:39 -04:00
|
|
|
|
2018-06-22 09:31:04 -04:00
|
|
|
@project.cleanup
|
2016-10-20 06:59:39 -04:00
|
|
|
end
|
|
|
|
|
2018-06-22 09:31:04 -04:00
|
|
|
private
|
2016-03-27 09:17:49 -04:00
|
|
|
|
2018-06-22 09:31:04 -04:00
|
|
|
def update_statistics(statistics = [])
|
|
|
|
try_obtain_lease do
|
|
|
|
Rails.logger.info("Updating statistics for project #{@project.id}")
|
|
|
|
@project.statistics.refresh!(only: statistics.to_a.map(&:to_sym))
|
|
|
|
end
|
2015-07-17 08:50:03 -04:00
|
|
|
end
|
2016-10-20 06:59:39 -04:00
|
|
|
|
2018-06-22 09:31:04 -04:00
|
|
|
def lease_timeout
|
|
|
|
LEASE_TIMEOUT
|
|
|
|
end
|
2016-11-18 08:04:18 -05:00
|
|
|
|
2018-06-22 09:31:04 -04:00
|
|
|
def lease_key
|
|
|
|
"project_cache_worker:#{@project.id}:update_statistics"
|
2016-10-20 06:59:39 -04:00
|
|
|
end
|
2015-07-17 08:50:03 -04:00
|
|
|
end
|