Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/create_branch_service.rb')
-rw-r--r--app/services/create_branch_service.rb42
1 files changed, 0 insertions, 42 deletions
diff --git a/app/services/create_branch_service.rb b/app/services/create_branch_service.rb
deleted file mode 100644
index cf7ae4345f3..00000000000
--- a/app/services/create_branch_service.rb
+++ /dev/null
@@ -1,42 +0,0 @@
-require_relative 'base_service'
-
-class CreateBranchService < BaseService
- def execute(branch_name, ref)
- valid_branch = Gitlab::GitRefValidator.validate(branch_name)
- if valid_branch == false
- return error('Branch name invalid')
- end
-
- repository = project.repository
- existing_branch = repository.find_branch(branch_name)
- if existing_branch
- return error('Branch already exists')
- end
-
- repository.add_branch(branch_name, ref)
- new_branch = repository.find_branch(branch_name)
-
- if new_branch
- push_data = build_push_data(project, current_user, new_branch)
-
- EventCreateService.new.push(project, current_user, push_data)
- project.execute_hooks(push_data.dup, :push_hooks)
- project.execute_services(push_data.dup, :push_hooks)
-
- success(new_branch)
- else
- error('Invalid reference name')
- end
- end
-
- def success(branch)
- out = super()
- out[:branch] = branch
- out
- end
-
- 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}", [])
- end
-end