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

validate_new_service.rb « branches « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bee7ffaa669ec2564eca07ff22371e7ad9db0a2 (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
# frozen_string_literal: true

module Branches
  class ValidateNewService < BaseService
    def initialize(project)
      @project = project
    end

    def execute(branch_name, force: false)
      return error('Branch name is invalid') unless valid_name?(branch_name)

      if branch_exist?(branch_name) && !force
        return error('Branch already exists')
      end

      success
    rescue Gitlab::Git::PreReceiveError => ex
      error(ex.message)
    end

    private

    def valid_name?(branch_name)
      Gitlab::GitRefValidator.validate(branch_name)
    end

    def branch_exist?(branch_name)
      project.repository.branch_exists?(branch_name)
    end
  end
end

Branches::ValidateNewService.prepend_mod