debian-mirror-gitlab/app/services/create_branch_service.rb

47 lines
1.1 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
require_relative 'base_service'
class CreateBranchService < BaseService
def execute(branch_name, ref, source_project: @project)
2015-04-26 12:48:37 +05:30
valid_branch = Gitlab::GitRefValidator.validate(branch_name)
2016-08-24 12:49:21 +05:30
unless valid_branch
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)
2016-08-24 12:49:21 +05:30
2015-04-26 12:48:37 +05:30
if existing_branch
return error('Branch already exists')
end
new_branch = nil
2016-08-24 12:49:21 +05:30
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
success(new_branch)
else
error('Invalid reference name')
2014-09-02 18:07:02 +05:30
end
2016-08-24 12:49:21 +05:30
rescue GitHooksService::PreReceiveError => ex
error(ex.message)
2015-04-26 12:48:37 +05:30
end
def success(branch)
2016-08-24 12:49:21 +05:30
super().merge(branch: branch)
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
end