34690142bf
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
32 lines
858 B
Ruby
32 lines
858 B
Ruby
require_relative "base_service"
|
|
|
|
module Files
|
|
class CreateService < Files::BaseService
|
|
def commit
|
|
CommitService.transaction(project, current_user, @target_branch) do |tmp_ref|
|
|
repository.commit_file(current_user, @file_path, @file_content, @commit_message, tmp_ref)
|
|
end
|
|
end
|
|
|
|
def validate
|
|
super
|
|
|
|
file_name = File.basename(@file_path)
|
|
|
|
unless file_name =~ Gitlab::Regex.file_name_regex
|
|
raise_error(
|
|
'Your changes could not be committed, because the file name ' +
|
|
Gitlab::Regex.file_name_regex_message
|
|
)
|
|
end
|
|
|
|
unless project.empty_repo?
|
|
blob = repository.blob_at_branch(@current_branch, @file_path)
|
|
|
|
if blob
|
|
raise_error("Your changes could not be committed, because file with such name exists")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|