Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_service.rb « groups « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a630aee6269fe203b5ffa32efe8952b6561a029 (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
module Groups
  class CreateService < Groups::BaseService
    def initialize(user, params = {})
      @current_user, @params = user, params.dup
    end

    def execute
      @group = Group.new(params)

      unless Gitlab::VisibilityLevel.allowed_for?(current_user, params[:visibility_level])
        deny_visibility_level(@group)
        return @group
      end

      parent_id = params[:parent_id]

      if parent_id
        parent = Group.find(parent_id)

        unless can?(current_user, :admin_group, parent)
          @group.parent_id = nil
          @group.errors.add(:parent_id, 'manage access required to create subgroup')

          return @group
        end
      end

      @group.name ||= @group.path.dup
      @group.save
      @group.add_owner(current_user)
      @group
    end
  end
end