Commit 2452f1a7 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'gitaly-tree-entry-dot-dot' into 'master'

Client-side fix for Gitaly TreeEntry bug

See merge request gitlab-org/gitlab-ce!20176
parents e055cb47 33c950f2
...@@ -493,13 +493,18 @@ module Gitlab ...@@ -493,13 +493,18 @@ module Gitlab
def tree_entry(path) def tree_entry(path)
return unless path.present? return unless path.present?
@repository.gitaly_migrate(:commit_tree_entry) do |is_migrated| # We're only interested in metadata, so limit actual data to 1 byte
if is_migrated # since Gitaly doesn't support "send no data" option.
gitaly_tree_entry(path) entry = @repository.gitaly_commit_client.tree_entry(id, path, 1)
else return unless entry
rugged_tree_entry(path)
end # To be compatible with the rugged format
end entry = entry.to_h
entry.delete(:data)
entry[:name] = File.basename(path)
entry[:type] = entry[:type].downcase
entry
end end
def to_gitaly_commit def to_gitaly_commit
...@@ -562,28 +567,6 @@ module Gitlab ...@@ -562,28 +567,6 @@ module Gitlab
SERIALIZE_KEYS SERIALIZE_KEYS
end end
def gitaly_tree_entry(path)
# We're only interested in metadata, so limit actual data to 1 byte
# since Gitaly doesn't support "send no data" option.
entry = @repository.gitaly_commit_client.tree_entry(id, path, 1)
return unless entry
# To be compatible with the rugged format
entry = entry.to_h
entry.delete(:data)
entry[:name] = File.basename(path)
entry[:type] = entry[:type].downcase
entry
end
# Is this the same as Blob.find_entry_by_path ?
def rugged_tree_entry(path)
rugged_commit.tree.path(path)
rescue Rugged::TreeError
nil
end
def gitaly_commit_author_from_rugged(author_or_committer) def gitaly_commit_author_from_rugged(author_or_committer)
Gitaly::CommitAuthor.new( Gitaly::CommitAuthor.new(
name: author_or_committer[:name].b, name: author_or_committer[:name].b,
......
...@@ -76,6 +76,13 @@ module Gitlab ...@@ -76,6 +76,13 @@ module Gitlab
end end
def tree_entry(ref, path, limit = nil) def tree_entry(ref, path, limit = nil)
if Pathname.new(path).cleanpath.to_s.start_with?('../')
# The TreeEntry RPC should return an empty reponse in this case but in
# Gitaly 0.107.0 and earlier we get an exception instead. This early return
# saves us a Gitaly roundtrip while also avoiding the exception.
return
end
request = Gitaly::TreeEntryRequest.new( request = Gitaly::TreeEntryRequest.new(
repository: @gitaly_repo, repository: @gitaly_repo,
revision: encode_binary(ref), revision: encode_binary(ref),
......
...@@ -514,30 +514,21 @@ eos ...@@ -514,30 +514,21 @@ eos
end end
describe '#uri_type' do describe '#uri_type' do
shared_examples 'URI type' do it 'returns the URI type at the given path' do
it 'returns the URI type at the given path' do expect(commit.uri_type('files/html')).to be(:tree)
expect(commit.uri_type('files/html')).to be(:tree) expect(commit.uri_type('files/images/logo-black.png')).to be(:raw)
expect(commit.uri_type('files/images/logo-black.png')).to be(:raw) expect(project.commit('video').uri_type('files/videos/intro.mp4')).to be(:raw)
expect(project.commit('video').uri_type('files/videos/intro.mp4')).to be(:raw) expect(commit.uri_type('files/js/application.js')).to be(:blob)
expect(commit.uri_type('files/js/application.js')).to be(:blob)
end
it "returns nil if the path doesn't exists" do
expect(commit.uri_type('this/path/doesnt/exist')).to be_nil
end
it 'is nil if the path is nil or empty' do
expect(commit.uri_type(nil)).to be_nil
expect(commit.uri_type("")).to be_nil
end
end end
context 'when Gitaly commit_tree_entry feature is enabled' do it "returns nil if the path doesn't exists" do
it_behaves_like 'URI type' expect(commit.uri_type('this/path/doesnt/exist')).to be_nil
expect(commit.uri_type('../path/doesnt/exist')).to be_nil
end end
context 'when Gitaly commit_tree_entry feature is disabled', :disable_gitaly do it 'is nil if the path is nil or empty' do
it_behaves_like 'URI type' expect(commit.uri_type(nil)).to be_nil
expect(commit.uri_type("")).to be_nil
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