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)
|
2016-07-06 09:26:59 -04:00
|
|
|
|
|
|
|
unless valid_branch
|
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)
|
2016-07-06 09:26:59 -04:00
|
|
|
|
2014-07-27 10:40:00 -04:00
|
|
|
if existing_branch
|
|
|
|
return error('Branch already exists')
|
|
|
|
end
|
|
|
|
|
2016-07-18 10:06:49 -04:00
|
|
|
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-04-01 03:33:23 -04:00
|
|
|
|
|
|
|
if new_branch
|
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
|
2016-07-04 08:30:22 -04:00
|
|
|
rescue GitHooksService::PreReceiveError => ex
|
|
|
|
error(ex.message)
|
2014-07-27 10:40:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def success(branch)
|
2016-07-06 09:26:59 -04:00
|
|
|
super().merge(branch: branch)
|
2014-04-01 03:33:23 -04:00
|
|
|
end
|
|
|
|
end
|