summaryrefslogtreecommitdiff
path: root/app/services/create_branch_service.rb
blob: 77459d8779ddf9ad3188e35de30bee21b830deaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class CreateBranchService < BaseService
  def execute(branch_name, ref)
    result = ValidateNewBranchService.new(project, current_user)
      .execute(branch_name)

    return result if result[:status] == :error

    new_branch = repository.add_branch(current_user, branch_name, ref)

    if new_branch
      success(new_branch)
    else
      error('Invalid reference name')
    end
  rescue GitHooksService::PreReceiveError => ex
    error(ex.message)
  end

  def success(branch)
    super().merge(branch: branch)
  end
end