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

45 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
2016-09-13 17:45:13 +05:30
new_branch = if source_project != @project
repository.fetch_ref(
source_project.repository.path_to_repo,
"refs/heads/#{ref}",
"refs/heads/#{branch_name}"
)
repository.after_create_branch
repository.find_branch(branch_name)
else
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