debian-mirror-gitlab/app/services/delete_branch_service.rb

57 lines
1.5 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
require_relative 'base_service'
class DeleteBranchService < BaseService
def execute(branch_name)
2014-09-02 18:07:02 +05:30
repository = project.repository
branch = repository.find_branch(branch_name)
# No such branch
unless branch
2015-04-26 12:48:37 +05:30
return error('No such branch', 404)
2014-09-02 18:07:02 +05:30
end
if branch_name == repository.root_ref
2015-04-26 12:48:37 +05:30
return error('Cannot remove HEAD branch', 405)
2014-09-02 18:07:02 +05:30
end
# Dont allow remove of protected branch
if project.protected_branch?(branch_name)
2015-04-26 12:48:37 +05:30
return error('Protected branch cant be removed', 405)
2014-09-02 18:07:02 +05:30
end
# Dont allow user to remove branch if he is not allowed to push
unless current_user.can?(:push_code, project)
2015-04-26 12:48:37 +05:30
return error('You dont have push access to repo', 405)
2014-09-02 18:07:02 +05:30
end
if repository.rm_branch(branch_name)
2015-04-26 12:48:37 +05:30
push_data = build_push_data(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)
2014-09-02 18:07:02 +05:30
success('Branch was removed')
else
2015-04-26 12:48:37 +05:30
error('Failed to remove branch')
2014-09-02 18:07:02 +05:30
end
end
2015-04-26 12:48:37 +05:30
def error(message, return_code = 400)
out = super(message)
out[:return_code] = return_code
out
2014-09-02 18:07:02 +05:30
end
def success(message)
2015-04-26 12:48:37 +05:30
out = super()
out[:message] = message
out
end
def build_push_data(branch)
Gitlab::PushDataBuilder
.build(project, current_user, branch.target, Gitlab::Git::BLANK_SHA, "#{Gitlab::Git::BRANCH_REF_PREFIX}#{branch.name}", [])
2014-09-02 18:07:02 +05:30
end
end