debian-mirror-gitlab/app/services/files/base_service.rb

76 lines
2.2 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module Files
class BaseService < ::BaseService
2015-09-25 12:07:36 +05:30
class ValidationError < StandardError; end
2014-09-02 18:07:02 +05:30
2015-09-25 12:07:36 +05:30
def execute
@current_branch = params[:current_branch]
@target_branch = params[:target_branch]
@commit_message = params[:commit_message]
@file_path = params[:file_path]
@file_content = if params[:file_content_encoding] == 'base64'
Base64.decode64(params[:file_content])
else
params[:file_content]
end
# Validate parameters
validate
# Create new branch if it different from current_branch
if @target_branch != @current_branch
create_target_branch
end
2015-10-24 18:46:33 +05:30
if commit
2015-09-25 12:07:36 +05:30
success
else
error("Something went wrong. Your changes were not committed")
end
2015-12-23 02:04:40 +05:30
rescue Repository::CommitError, GitHooksService::PreReceiveError, ValidationError => ex
2015-09-25 12:07:36 +05:30
error(ex.message)
2014-09-02 18:07:02 +05:30
end
private
2015-09-25 12:07:36 +05:30
def current_branch
@current_branch ||= params[:current_branch]
end
def target_branch
@target_branch ||= params[:target_branch]
end
def raise_error(message)
raise ValidationError.new(message)
end
def validate
allowed = ::Gitlab::GitAccess.new(current_user, project).can_push_to_branch?(@target_branch)
unless allowed
raise_error("You are not allowed to push into this branch")
end
unless project.empty_repo?
unless repository.branch_names.include?(@current_branch)
2015-12-23 02:04:40 +05:30
raise_error("You can only create or edit files when you are on a branch")
2015-09-25 12:07:36 +05:30
end
if @current_branch != @target_branch
if repository.branch_names.include?(@target_branch)
raise_error("Branch with such name already exists. You need to switch to this branch in order to make changes")
end
end
end
end
def create_target_branch
result = CreateBranchService.new(project, current_user).execute(@target_branch, @current_branch)
unless result[:status] == :success
raise_error("Something went wrong when we tried to create #{@target_branch} for you")
end
2014-09-02 18:07:02 +05:30
end
end
end