summaryrefslogtreecommitdiff
path: root/app/services/groups/nested_create_service.rb
blob: d6f08fc3ccea3a0fa7e7009beebb67b2dda55b3e (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
module Groups
  class NestedCreateService < Groups::BaseService
    attr_reader :group_path

    def initialize(user, params)
      @current_user, @params = user, params.dup

      @group_path = @params.delete(:group_path)
    end

    def execute
      return nil unless group_path

      if group = Group.find_by_full_path(group_path)
        return group
      end

      if group_path.include?('/') && !Group.supports_nested_groups?
        raise 'Nested groups are not supported on MySQL'
      end

      create_group_path
    end

    private

    def create_group_path
      group_path_segments = group_path.split('/')

      last_group = nil
      partial_path_segments = []
      while subgroup_name = group_path_segments.shift
        partial_path_segments << subgroup_name
        partial_path = partial_path_segments.join('/')

        new_params = params.reverse_merge(
          path: subgroup_name,
          name: subgroup_name,
          parent: last_group
        )
        new_params[:visibility_level] ||= Gitlab::CurrentSettings.current_application_settings.default_group_visibility

        last_group = Group.find_by_full_path(partial_path) || Groups::CreateService.new(current_user, new_params).execute
      end

      last_group
    end
  end
end