debian-mirror-gitlab/app/services/branches/create_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.2 KiB
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
# frozen_string_literal: true
module Branches
class CreateService < BaseService
2021-09-04 01:27:46 +05:30
def execute(branch_name, ref, create_default_branch_if_empty: true)
create_default_branch if create_default_branch_if_empty && project.empty_repo?
2020-01-01 13:55:28 +05:30
result = ::Branches::ValidateNewService.new(project).execute(branch_name)
return result if result[:status] == :error
2021-09-30 23:02:18 +05:30
begin
new_branch = repository.add_branch(current_user, branch_name, ref)
rescue Gitlab::Git::CommandError => e
return error("Failed to create branch '#{branch_name}': #{e}")
end
2020-01-01 13:55:28 +05:30
if new_branch
success(new_branch)
else
2021-09-30 23:02:18 +05:30
error("Failed to create branch '#{branch_name}': invalid reference name '#{ref}'")
2020-01-01 13:55:28 +05:30
end
2020-10-24 23:57:45 +05:30
rescue Gitlab::Git::PreReceiveError => e
2022-04-04 11:22:00 +05:30
Gitlab::ErrorTracking.log_exception(e, pre_receive_message: e.raw_message, branch_name: branch_name, ref: ref)
2020-10-24 23:57:45 +05:30
error(e.message)
2020-01-01 13:55:28 +05:30
end
def success(branch)
super().merge(branch: branch)
end
private
2021-09-04 01:27:46 +05:30
def create_default_branch
2020-01-01 13:55:28 +05:30
project.repository.create_file(
current_user,
'/README.md',
'',
message: 'Add README.md',
2021-09-04 01:27:46 +05:30
branch_name: project.default_branch_or_main
2020-01-01 13:55:28 +05:30
)
end
end
end