2014-09-21 04:29:52 -04:00
|
|
|
require_relative 'base_service'
|
|
|
|
|
|
|
|
class CreateBranchService < BaseService
|
2015-12-18 04:03:34 -05:00
|
|
|
def execute(branch_name, ref, source_project: @project)
|
2014-07-27 10:40:00 -04:00
|
|
|
valid_branch = Gitlab::GitRefValidator.validate(branch_name)
|
|
|
|
if valid_branch == false
|
2015-12-17 13:59:15 -05:00
|
|
|
return error('Branch name is invalid')
|
2014-07-27 10:40:00 -04:00
|
|
|
end
|
|
|
|
|
2014-04-01 03:33:23 -04:00
|
|
|
repository = project.repository
|
2014-07-27 10:40:00 -04:00
|
|
|
existing_branch = repository.find_branch(branch_name)
|
|
|
|
if existing_branch
|
|
|
|
return error('Branch already exists')
|
|
|
|
end
|
|
|
|
|
2015-12-18 04:03:34 -05:00
|
|
|
new_branch = nil
|
|
|
|
if source_project != @project
|
|
|
|
repository.with_tmp_ref do |tmp_ref|
|
|
|
|
repository.fetch_ref(
|
|
|
|
source_project.repository.path_to_repo,
|
|
|
|
"refs/heads/#{ref}",
|
|
|
|
tmp_ref
|
|
|
|
)
|
|
|
|
|
|
|
|
new_branch = repository.add_branch(current_user, branch_name, tmp_ref)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
new_branch = repository.add_branch(current_user, branch_name, ref)
|
|
|
|
end
|
2014-04-01 03:33:23 -04:00
|
|
|
|
|
|
|
if new_branch
|
2016-02-09 00:52:00 -05:00
|
|
|
# GitPushService handles execution of services and hooks for branch pushes
|
2015-03-13 09:55:17 -04:00
|
|
|
success(new_branch)
|
2014-07-27 10:40:00 -04:00
|
|
|
else
|
2015-03-13 09:55:17 -04:00
|
|
|
error('Invalid reference name')
|
2014-04-01 03:33:23 -04:00
|
|
|
end
|
2015-11-25 19:20:40 -05:00
|
|
|
rescue GitHooksService::PreReceiveError
|
|
|
|
error('Branch creation was rejected by Git hook')
|
2014-07-27 10:40:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def success(branch)
|
2014-09-21 04:29:52 -04:00
|
|
|
out = super()
|
|
|
|
out[:branch] = branch
|
|
|
|
out
|
2014-04-01 03:33:23 -04:00
|
|
|
end
|
|
|
|
end
|