summaryrefslogtreecommitdiff
path: root/app/services/todos/destroy/confidential_issue_service.rb
blob: c5b66df057af7bc80576f8c952d6c5186e73f7f1 (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
module Todos
  module Destroy
    class ConfidentialIssueService < ::Todos::Destroy::BaseService
      extend ::Gitlab::Utils::Override

      attr_reader :issue

      def initialize(issue_id)
        @issue = Issue.find_by(id: issue_id)
      end

      private

      override :todos
      def todos
        Todo.where(target: issue)
          .where('user_id != ?', issue.author_id)
          .where('user_id NOT IN (?)', issue.assignees.select(:id))
      end

      override :todos_to_remove?
      def todos_to_remove?
        issue&.confidential?
      end

      override :project_ids
      def project_ids
        issue.project_id
      end

      override :authorized_users
      def authorized_users
        ProjectAuthorization.select(:user_id)
          .where(project_id: project_ids)
          .where('access_level >= ?', Gitlab::Access::REPORTER)
      end
    end
  end
end