summaryrefslogtreecommitdiff
path: root/app/services/projects/update_service.rb
blob: 895e089bea3c74f47cb41dd811efe5730cc09b5b (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
module Projects
  class UpdateService < BaseService
    def execute
      # check that user is allowed to set specified visibility_level
      new_visibility = params[:visibility_level]
      if new_visibility
        if new_visibility.to_i != project.visibility_level
          unless can?(current_user, :change_visibility_level, project) &&
            Gitlab::VisibilityLevel.allowed_for?(current_user, new_visibility)
            deny_visibility_level(project, new_visibility)
            return project
          end
        end

        return false unless visibility_level_allowed?(new_visibility)
      end

      new_branch = params[:default_branch]

      if project.repository.exists? && new_branch && new_branch != project.default_branch
        project.change_head(new_branch)
      end

      if project.update_attributes(params.except(:default_branch))
        if project.previous_changes.include?('path')
          project.rename_repo
        end
      end
    end

    private

    def visibility_level_allowed?(level)
      return true if project.visibility_level_allowed?(level)

      level_name = Gitlab::VisibilityLevel.level_name(level)
      project.errors.add(
        :visibility_level,
        "#{level_name} could not be set as visibility level of this project - parent project settings are more restrictive"
      )

      false
    end
  end
end