Commit 69086634 authored by Rubén Dávila's avatar Rubén Dávila Committed by Robert Speicher

Refactor RevertService.

parent d958d027
module Commits module Commits
class RevertService < ::BaseService class RevertService < ::BaseService
class ValidationError < StandardError; end class ValidationError < StandardError; end
class ReversionError < StandardError; end
def execute def execute
@source_project = params[:source_project] || @project @source_project = params[:source_project] || @project
...@@ -8,61 +9,54 @@ module Commits ...@@ -8,61 +9,54 @@ module Commits
@commit = params[:commit] @commit = params[:commit]
@create_merge_request = params[:create_merge_request].present? @create_merge_request = params[:create_merge_request].present?
# Check push permissions to branch validate and commit
validate rescue Repository::CommitError, Gitlab::Git::Repository::InvalidBlobName, GitHooksService::PreReceiveError,
ValidationError, ReversionError => ex
if commit
success
else
custom_error
end
rescue Repository::CommitError, Gitlab::Git::Repository::InvalidBlobName, GitHooksService::PreReceiveError, ValidationError => ex
error(ex.message) error(ex.message)
end end
def commit def commit
revert_into = @create_merge_request ? @commit.revert_branch_name : @target_branch
if @create_merge_request if @create_merge_request
# Temporary branch exists and contains the revert commit # Temporary branch exists and contains the revert commit
return true if repository.find_branch(@commit.revert_branch_name) return success if repository.find_branch(revert_into)
return false unless create_target_branch
repository.revert(current_user, @commit, @commit.revert_branch_name) create_target_branch
else
repository.revert(current_user, @commit, @target_branch)
end end
end
private
def custom_error unless repository.revert(current_user, @commit, revert_into)
if @branch_error_msg error_msg = "Sorry, we cannot revert this #{params[:revert_type_title]} automatically.
error("There was an error creating the source branch: #{@branch_error_msg}") It may have already been reverted, or a more recent commit may have updated some of its content."
else raise_error(ReversionError, error_msg)
error("Sorry, we cannot revert this #{params[:revert_type_title]} automatically.
It may have already been reverted, or a more recent commit may
have updated some of its content.")
end end
success
end end
private
def create_target_branch def create_target_branch
result = CreateBranchService.new(@project, current_user) result = CreateBranchService.new(@project, current_user)
.execute(@commit.revert_branch_name, @target_branch, source_project: @source_project) .execute(@commit.revert_branch_name, @target_branch, source_project: @source_project)
@branch_error_msg = result[:message] if result[:status] == :error
raise_error(ReversionError, "There was an error creating the source branch: #{result[:message]}")
result[:status] != :error end
end end
def raise_error(message) def raise_error(klass, message)
raise ValidationError.new(message) raise klass.new(message)
end end
def validate def validate
allowed = ::Gitlab::GitAccess.new(current_user, project).can_push_to_branch?(@target_branch) allowed = ::Gitlab::GitAccess.new(current_user, project).can_push_to_branch?(@target_branch)
unless allowed unless allowed
raise_error("You are not allowed to push into this branch") raise_error(ValidationError, "You are not allowed to push into this branch")
end end
true
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment