summaryrefslogtreecommitdiff
path: root/app/services/projects/autocomplete_service.rb
blob: 5286b92ab6b1c4e56da594c10eaec737594f6c2a (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
44
45
46
47
48
49
50
51
52
53
54
55
# frozen_string_literal: true

module Projects
  class AutocompleteService < BaseService
    def issues
      IssuesFinder.new(current_user, project_id: project.id, state: 'opened').execute.select([:iid, :title])
    end

    def milestones
      finder_params = {
        project_ids: [@project.id],
        state: :active,
        order: { due_date: :asc, title: :asc }
      }

      finder_params[:group_ids] = @project.group.self_and_ancestors_ids if @project.group

      MilestonesFinder.new(finder_params).execute.select([:iid, :title])
    end

    def merge_requests
      MergeRequestsFinder.new(current_user, project_id: project.id, state: 'opened').execute.select([:iid, :title])
    end

    def labels_as_hash(target = nil)
      available_labels = LabelsFinder.new(
        current_user,
        project_id: project.id,
        include_ancestor_groups: true
      ).execute

      label_hashes = available_labels.as_json(only: [:title, :color])

      if target&.respond_to?(:labels)
        already_set_labels = available_labels & target.labels
        if already_set_labels.present?
          titles = already_set_labels.map(&:title)
          label_hashes.each do |hash|
            if titles.include?(hash['title'])
              hash[:set] = true
            end
          end
        end
      end

      label_hashes
    end

    def commands(noteable, type)
      return [] unless noteable

      QuickActions::InterpretService.new(project, current_user).available_commands(noteable)
    end
  end
end