debian-mirror-gitlab/app/services/groups/open_issues_count_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1 KiB
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
module Groups
# Service class for counting and caching the number of open issues of a group.
2021-04-29 21:17:54 +05:30
class OpenIssuesCountService < Groups::CountService
2022-07-16 23:28:13 +05:30
PUBLIC_COUNT_KEY = 'group_public_open_issues_count'
TOTAL_COUNT_KEY = 'group_total_open_issues_count'
2021-03-11 19:13:27 +05:30
2021-06-08 01:23:25 +05:30
def clear_all_cache_keys
2022-07-16 23:28:13 +05:30
[cache_key(PUBLIC_COUNT_KEY), cache_key(TOTAL_COUNT_KEY)].each do |key|
2021-06-08 01:23:25 +05:30
Rails.cache.delete(key)
end
end
2021-03-11 19:13:27 +05:30
private
def cache_key_name
2022-07-16 23:28:13 +05:30
public_only? ? PUBLIC_COUNT_KEY : TOTAL_COUNT_KEY
2021-03-11 19:13:27 +05:30
end
def public_only?
!user_is_at_least_reporter?
end
def user_is_at_least_reporter?
strong_memoize(:user_is_at_least_reporter) do
group.member?(user, Gitlab::Access::REPORTER)
end
end
def relation_for_count
2021-06-08 01:23:25 +05:30
IssuesFinder.new(
user,
group_id: group.id,
state: 'opened',
non_archived: true,
include_subgroups: true,
2022-07-16 23:28:13 +05:30
public_only: public_only?
2021-06-08 01:23:25 +05:30
).execute
2021-03-11 19:13:27 +05:30
end
2021-04-29 21:17:54 +05:30
def issuable_key
'open_issues'
end
2021-03-11 19:13:27 +05:30
end
end