Skip to content

Commit 267b14f

Browse files
aschmahmannhacdias
authored andcommitted
fix: handle _redirects for If-None-Match headers
1 parent f6b448b commit 267b14f

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

gateway/handler.go

+13-3
Original file line numberDiff line numberDiff line change
@@ -703,9 +703,19 @@ func (i *handler) handleIfNoneMatch(w http.ResponseWriter, r *http.Request, rq *
703703
if ifNoneMatch := r.Header.Get("If-None-Match"); ifNoneMatch != "" {
704704
pathMetadata, err := i.backend.ResolvePath(r.Context(), rq.immutablePath)
705705
if err != nil {
706-
err = fmt.Errorf("failed to resolve %s: %w", debugStr(rq.contentPath.String()), err)
707-
i.webError(w, r, err, http.StatusInternalServerError)
708-
return true
706+
var forwardedPath ImmutablePath
707+
var continueProcessing bool
708+
if isWebRequest(rq.responseFormat) {
709+
forwardedPath, continueProcessing = i.handleWebRequestErrors(w, r, rq.mostlyResolvedPath(), rq.immutablePath, rq.contentPath, err, rq.logger)
710+
if continueProcessing {
711+
pathMetadata, err = i.backend.ResolvePath(r.Context(), forwardedPath)
712+
}
713+
}
714+
if !continueProcessing || err != nil {
715+
err = fmt.Errorf("failed to resolve %s: %w", debugStr(rq.contentPath.String()), err)
716+
i.webError(w, r, err, http.StatusInternalServerError)
717+
return true
718+
}
709719
}
710720

711721
pathCid := pathMetadata.LastSegment.Cid()

0 commit comments

Comments
 (0)