summaryrefslogtreecommitdiff
path: root/app/services/projects/count_service.rb
blob: 5e633c37bf8ec1b12f6fdc7452a31afb25ee6e31 (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
33
34
35
36
37
38
39
40
41
42
43
module Projects
  # Base class for the various service classes that count project data (e.g.
  # issues or forks).
  class CountService
    def initialize(project)
      @project = project
    end

    def relation_for_count
      raise(
        NotImplementedError,
        '"relation_for_count" must be implemented and return an ActiveRecord::Relation'
      )
    end

    def count
      Rails.cache.fetch(cache_key) { uncached_count }
    end

    def refresh_cache
      Rails.cache.write(cache_key, uncached_count)
    end

    def uncached_count
      relation_for_count.count
    end

    def delete_cache
      Rails.cache.delete(cache_key)
    end

    def cache_key_name
      raise(
        NotImplementedError,
        '"cache_key_name" must be implemented and return a String'
      )
    end

    def cache_key
      ['projects', @project.id, cache_key_name]
    end
  end
end