summaryrefslogtreecommitdiff
path: root/app/controllers/groups/children_controller.rb
blob: d10c52f0301f0c41c7d92ca70fa91f1408c271bd (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
56
57
# frozen_string_literal: true

module Groups
  class ChildrenController < Groups::ApplicationController
    extend ::Gitlab::Utils::Override

    before_action :group
    skip_cross_project_access_check :index

    feature_category :subgroups

    # TODO: Set to higher urgency after resolving https://gitlab.com/gitlab-org/gitlab/-/issues/331494
    urgency :low, [:index]

    def index
      params[:sort] ||= @group_projects_sort
      parent = if params[:parent_id].present?
                 GroupFinder.new(current_user).execute(id: params[:parent_id])
               else
                 @group
               end

      if parent.nil?
        render_404
        return
      end

      setup_children(parent)

      respond_to do |format|
        format.json do
          serializer = GroupChildSerializer
                         .new(current_user: current_user)
                         .with_pagination(request, response)
          serializer.expand_hierarchy(parent) if params[:filter].present?
          render json: serializer.represent(@children)
        end
      end
    end

    protected

    def setup_children(parent)
      @children = GroupDescendantsFinder.new(current_user: current_user,
                                             parent_group: parent,
                                             params: params.to_unsafe_h).execute
      @children = @children.page(params[:page])
    end

    private

    override :has_project_list?
    def has_project_list?
      true
    end
  end
end