Skip to content

Commit 97c8667

Browse files
committed
fix: handle _redirects for If-None-Match headers
1 parent cfad09d commit 97c8667

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
@@ -700,9 +700,19 @@ func (i *handler) handleIfNoneMatch(w http.ResponseWriter, r *http.Request, rq *
700700
if ifNoneMatch := r.Header.Get("If-None-Match"); ifNoneMatch != "" {
701701
pathMetadata, err := i.backend.ResolvePath(r.Context(), rq.immutablePath)
702702
if err != nil {
703-
err = fmt.Errorf("failed to resolve %s: %w", debugStr(rq.contentPath.String()), err)
704-
i.webError(w, r, err, http.StatusInternalServerError)
705-
return true
703+
var forwardedPath ImmutablePath
704+
var continueProcessing bool
705+
if isWebRequest(rq.responseFormat) {
706+
forwardedPath, continueProcessing = i.handleWebRequestErrors(w, r, rq.mostlyResolvedPath(), rq.immutablePath, rq.contentPath, err, rq.logger)
707+
if continueProcessing {
708+
pathMetadata, err = i.backend.ResolvePath(r.Context(), forwardedPath)
709+
}
710+
}
711+
if !continueProcessing || err != nil {
712+
err = fmt.Errorf("failed to resolve %s: %w", debugStr(rq.contentPath.String()), err)
713+
i.webError(w, r, err, http.StatusInternalServerError)
714+
return true
715+
}
706716
}
707717

708718
pathCid := pathMetadata.LastSegment.Cid()

0 commit comments

Comments
 (0)