2018-07-17 12:50:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 11:21:25 -04:00
|
|
|
module Projects
|
|
|
|
# Base class for the various service classes that count project data (e.g.
|
|
|
|
# issues or forks).
|
2017-11-15 09:47:10 -05:00
|
|
|
class CountService < BaseCountService
|
2017-09-19 07:55:56 -04:00
|
|
|
# The version of the cache format. This should be bumped whenever the
|
|
|
|
# underlying logic changes. This removes the need for explicitly flushing
|
|
|
|
# all caches.
|
|
|
|
VERSION = 1
|
|
|
|
|
2017-08-17 11:21:25 -04:00
|
|
|
def initialize(project)
|
|
|
|
@project = project
|
|
|
|
end
|
|
|
|
|
2017-12-04 05:20:20 -05:00
|
|
|
def relation_for_count
|
|
|
|
self.class.query(@project.id)
|
|
|
|
end
|
|
|
|
|
2017-08-17 11:21:25 -04:00
|
|
|
def cache_key_name
|
|
|
|
raise(
|
|
|
|
NotImplementedError,
|
|
|
|
'"cache_key_name" must be implemented and return a String'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-06-15 13:32:37 -04:00
|
|
|
def cache_key(key = nil)
|
|
|
|
cache_key = key || cache_key_name
|
|
|
|
|
|
|
|
['projects', 'count_service', VERSION, @project.id, cache_key]
|
2017-08-17 11:21:25 -04:00
|
|
|
end
|
2017-12-04 06:33:19 -05:00
|
|
|
|
|
|
|
def self.query(project_ids)
|
|
|
|
raise(
|
|
|
|
NotImplementedError,
|
|
|
|
'"query" must be implemented and return an ActiveRecord::Relation'
|
|
|
|
)
|
|
|
|
end
|
2017-08-17 11:21:25 -04:00
|
|
|
end
|
|
|
|
end
|