Files
podman/pkg/api/server/handler_logging.go
Chris Evich d968f3fe09 Replace deprecated ioutil
Package `io/ioutil` was deprecated in golang 1.16, preventing podman from
building under Fedora 37.  Fortunately, functionality identical
replacements are provided by the packages `io` and `os`.  Replace all
usage of all `io/ioutil` symbols with appropriate substitutions
according to the golang docs.

Signed-off-by: Chris Evich <cevich@redhat.com>
2022-09-20 15:34:27 -04:00

51 lines
1.2 KiB
Go

package server
import (
"io"
"net/http"
"time"
"github.com/gorilla/mux"
"github.com/sirupsen/logrus"
)
type responseWriter struct {
http.ResponseWriter
}
var apiLogger = &logrus.Logger{
Formatter: &logrus.TextFormatter{
DisableColors: true,
DisableLevelTruncation: true,
FullTimestamp: true,
QuoteEmptyFields: true,
TimestampFormat: time.RFC3339,
},
Level: logrus.TraceLevel,
Out: logrus.StandardLogger().Out,
}
func (l responseWriter) Write(b []byte) (int, error) {
apiLogger.WithFields(logrus.Fields{
"API": "response",
"X-Reference-Id": l.Header().Get("X-Reference-Id"),
}).Trace(string(b))
return l.ResponseWriter.Write(b)
}
func loggingHandler() mux.MiddlewareFunc {
return func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
annotated := apiLogger.WithFields(logrus.Fields{
"API": "request",
"X-Reference-Id": r.Header.Get("X-Reference-Id"),
})
r.Body = io.NopCloser(
io.TeeReader(r.Body, annotated.WriterLevel(logrus.TraceLevel)))
w = responseWriter{ResponseWriter: w}
h.ServeHTTP(w, r)
})
}
}