ddca49e4b5
Partially addresses #47424.
21 lines
475 B
Ruby
21 lines
475 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative 'base_service'
|
|
|
|
class ValidateNewBranchService < BaseService
|
|
def execute(branch_name)
|
|
valid_branch = Gitlab::GitRefValidator.validate(branch_name)
|
|
|
|
unless valid_branch
|
|
return error('Branch name is invalid')
|
|
end
|
|
|
|
if project.repository.branch_exists?(branch_name)
|
|
return error('Branch already exists')
|
|
end
|
|
|
|
success
|
|
rescue Gitlab::Git::PreReceiveError => ex
|
|
error(ex.message)
|
|
end
|
|
end
|