Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-02-25 19:31:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-02-25 19:32:06 +0300
commite92c90758eb4126acc84962d37bb273d6d87b27b (patch)
tree6d5f4ca9731a6aa76b80372276c68ab39e0f4149 /app/graphql/resolvers
parentb485c8c3723dc5aaba15ab9fa258010d1ec66d61 (diff)
Add latest changes from gitlab-org/security/gitlab@14-8-stable-ee
Diffstat (limited to 'app/graphql/resolvers')
-rw-r--r--app/graphql/resolvers/snippets/blobs_resolver.rb24
1 files changed, 12 insertions, 12 deletions
diff --git a/app/graphql/resolvers/snippets/blobs_resolver.rb b/app/graphql/resolvers/snippets/blobs_resolver.rb
index cbbc65d7263..29716ce1394 100644
--- a/app/graphql/resolvers/snippets/blobs_resolver.rb
+++ b/app/graphql/resolvers/snippets/blobs_resolver.rb
@@ -19,18 +19,18 @@ module Resolvers
def resolve(paths: [])
return [snippet.blob] if snippet.empty_repo?
- if paths.empty?
- snippet.blobs
- else
- snippet.repository.blobs_at(transformed_blob_paths(paths))
- end
- end
-
- private
-
- def transformed_blob_paths(paths)
- ref = snippet.default_branch
- paths.map { |path| [ref, path] }
+ paths = snippet.all_files if paths.empty?
+ blobs = snippet.blobs(paths)
+
+ # TODO: Some blobs, e.g. those with non-utf8 filenames, are returned as nil from the
+ # repository. We need to provide a flag to notify the user of this until we come up with a
+ # way to retrieve and display these blobs. We will be exploring a more holistic solution for
+ # this general problem of making all blobs retrievable as part
+ # of https://gitlab.com/gitlab-org/gitlab/-/issues/323082, at which point this attribute may
+ # be removed.
+ context[:unretrievable_blobs?] = blobs.size < paths.size
+
+ blobs
end
end
end