37 lines
874 B
Ruby
37 lines
874 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Resolvers
|
|
module Snippets
|
|
class BlobsResolver < BaseResolver
|
|
include Gitlab::Graphql::Authorize::AuthorizeResource
|
|
|
|
type Types::Snippets::BlobType.connection_type, null: true
|
|
authorize :read_snippet
|
|
calls_gitaly!
|
|
authorizes_object!
|
|
|
|
alias_method :snippet, :object
|
|
|
|
argument :paths, [GraphQL::Types::String],
|
|
required: false,
|
|
description: 'Paths of the blobs.'
|
|
|
|
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] }
|
|
end
|
|
end
|
|
end
|
|
end
|