Skip to content

Commit 4d6ca2f

Browse files
rremerRoyce Remer
authored and
Royce Remer
committed
Support legacy _links LFS batch responses
Signed-off-by: Royce Remer <[email protected]>
1 parent d655ff1 commit 4d6ca2f

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

Diff for: modules/lfs/http_client.go

+9
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,17 @@ func (c *HTTPClient) performOperation(ctx context.Context, objects []Pointer, dc
179179
}
180180
}
181181
} else {
182+
var link *Link
182183
link, ok := object.Actions["download"]
183184
if !ok {
185+
// no actions block in response, try legacy response schema
186+
link, ok = object.Links["download"]
187+
if ok {
188+
log.Info("%+v is using a deprecated batch schema response!", object)
189+
}
190+
}
191+
if !ok {
192+
// do download action in modern or legacy schemas
184193
log.Debug("%+v", object)
185194
return errors.New("missing action 'download'")
186195
}

Diff for: modules/lfs/http_client_test.go

+16
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,17 @@ func lfsTestRoundtripHandler(req *http.Request) *http.Response {
5959
},
6060
},
6161
}
62+
} else if strings.Contains(url, "legacy-batch-request-download") {
63+
batchResponse = &BatchResponse{
64+
Transfer: "dummy",
65+
Objects: []*ObjectResponse{
66+
{
67+
Links: map[string]*Link{
68+
"download": {},
69+
},
70+
},
71+
},
72+
}
6273
} else if strings.Contains(url, "valid-batch-request-upload") {
6374
batchResponse = &BatchResponse{
6475
Transfer: "dummy",
@@ -229,6 +240,11 @@ func TestHTTPClientDownload(t *testing.T) {
229240
endpoint: "https://unknown-actions-map.io",
230241
expectederror: "missing action 'download'",
231242
},
243+
// case 11
244+
{
245+
endpoint: "https://legacy-batch-request-download.io",
246+
expectederror: "",
247+
},
232248
}
233249

234250
for n, c := range cases {

Diff for: modules/lfs/shared.go

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ type BatchResponse struct {
4747
type ObjectResponse struct {
4848
Pointer
4949
Actions map[string]*Link `json:"actions,omitempty"`
50+
Links map[string]*Link `json:"_links,omitempty"`
5051
Error *ObjectError `json:"error,omitempty"`
5152
}
5253

0 commit comments

Comments
 (0)