gitlab-org--gitlab-foss/app/services/create_branch_service.rb

37 lines
896 B
Ruby
Raw Normal View History

require_relative 'base_service'
class CreateBranchService < BaseService
def execute(branch_name, ref, source_project: @project)
failure = validate_new_branch(branch_name)
return failure if failure
new_branch = if source_project != @project
@project.fetch_ref(source_project, branch_name, ref)
else
repository.add_branch(current_user, branch_name, ref)
end
if new_branch
2015-03-13 09:55:17 -04:00
success(new_branch)
else
2015-03-13 09:55:17 -04:00
error('Invalid reference name')
end
rescue GitHooksService::PreReceiveError => ex
error(ex.message)
end
def success(branch)
super().merge(branch: branch)
end
private
def validate_new_branch(branch_name)
result = ValidateNewBranchService.new(project, current_user).
execute(branch_name)
error(result[:message]) if result[:status] == :error
end
end