debian-mirror-gitlab/workhorse/internal/upstream/handlers.go

40 lines
813 B
Go
Raw Normal View History

2021-02-22 17:27:13 +05:30
package upstream
import (
"compress/gzip"
"fmt"
"io"
"net/http"
2023-03-04 22:38:38 +05:30
"gitlab.com/gitlab-org/gitlab/workhorse/internal/helper/fail"
2021-02-22 17:27:13 +05:30
)
func contentEncodingHandler(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
var body io.ReadCloser
var err error
// The client request body may have been gzipped.
contentEncoding := r.Header.Get("Content-Encoding")
switch contentEncoding {
case "":
body = r.Body
case "gzip":
body, err = gzip.NewReader(r.Body)
default:
err = fmt.Errorf("unsupported content encoding: %s", contentEncoding)
}
if err != nil {
2023-03-04 22:38:38 +05:30
fail.Request(w, r, fmt.Errorf("contentEncodingHandler: %v", err))
2021-02-22 17:27:13 +05:30
return
}
defer body.Close()
r.Body = body
r.Header.Del("Content-Encoding")
h.ServeHTTP(w, r)
})
}