lfs: do not require auth for public repositories

LFS has the `authenticated` field in the response for downloads of
objects to indicate that the object does not need authentication to
access it.

Spec: https://github.com/git-lfs/git-lfs/blob/master/docs/api/batch.md#successful-responses

Fixes #23360.
This commit is contained in:
Ben Boeckel 2017-01-26 13:58:05 -05:00
parent d391f74384
commit 5c20e50f46
3 changed files with 9 additions and 0 deletions

View File

@ -48,6 +48,10 @@ class Projects::LfsApiController < Projects::GitHttpClientController
objects.each do |object|
if existing_oids.include?(object[:oid])
object[:actions] = download_actions(object)
if Guest.can?(:download_code, project)
object[:authenticated] = true
end
else
object[:error] = {
code: 404,

View File

@ -0,0 +1,4 @@
---
title: Support unauthenticated LFS object downloads for public projects
merge_request: 8824
author: Ben Boeckel

View File

@ -600,6 +600,7 @@ describe 'Git LFS API and storage' do
expect(json_response).to eq('objects' => [
{ 'oid' => sample_oid,
'size' => sample_size,
'authenticated' => true,
'actions' => {
'download' => {
'href' => "#{project.http_url_to_repo}/gitlab-lfs/objects/#{sample_oid}",