2015-04-26 12:48:37 +05:30
|
|
|
require_relative 'base_service'
|
|
|
|
|
|
|
|
class CreateBranchService < BaseService
|
2016-01-14 18:37:52 +05:30
|
|
|
def execute(branch_name, ref, source_project: @project)
|
2015-04-26 12:48:37 +05:30
|
|
|
valid_branch = Gitlab::GitRefValidator.validate(branch_name)
|
|
|
|
if valid_branch == false
|
2016-01-14 18:37:52 +05:30
|
|
|
return error('Branch name is invalid')
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
repository = project.repository
|
2015-04-26 12:48:37 +05:30
|
|
|
existing_branch = repository.find_branch(branch_name)
|
|
|
|
if existing_branch
|
|
|
|
return error('Branch already exists')
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
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-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
if new_branch
|
2015-04-26 12:48:37 +05:30
|
|
|
push_data = build_push_data(project, current_user, new_branch)
|
|
|
|
|
|
|
|
project.execute_hooks(push_data.dup, :push_hooks)
|
|
|
|
project.execute_services(push_data.dup, :push_hooks)
|
|
|
|
|
|
|
|
success(new_branch)
|
|
|
|
else
|
|
|
|
error('Invalid reference name')
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
2015-12-23 02:04:40 +05:30
|
|
|
rescue GitHooksService::PreReceiveError
|
|
|
|
error('Branch creation was rejected by Git hook')
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def success(branch)
|
|
|
|
out = super()
|
|
|
|
out[:branch] = branch
|
|
|
|
out
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def build_push_data(project, user, branch)
|
|
|
|
Gitlab::PushDataBuilder.
|
|
|
|
build(project, user, Gitlab::Git::BLANK_SHA, branch.target, "#{Gitlab::Git::BRANCH_REF_PREFIX}#{branch.name}", [])
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|