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

validate_new_branch_service.rb « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f4a59e5cee8b8c2d6fecfe0ccadedf64e69afbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require_relative 'base_service'

class ValidateNewBranchService < BaseService
  def execute(branch_name, force: false)
    valid_branch = Gitlab::GitRefValidator.validate(branch_name)

    unless valid_branch
      return error('Branch name is invalid')
    end

    if project.repository.branch_exists?(branch_name) && !force
      return error('Branch already exists')
    end

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