Merge pull request #97 from matrix-org/rob/util-logging-context-fix

Update github.com/matrix-org/util for request context fix for logging
main
Robert Swain 2017-05-10 15:56:49 +02:00 committed by GitHub
commit cdd2617f8e
2 changed files with 23 additions and 14 deletions

2
vendor/manifest vendored
View File

@ -98,7 +98,7 @@
{ {
"importpath": "github.com/matrix-org/util", "importpath": "github.com/matrix-org/util",
"repository": "https://github.com/matrix-org/util", "repository": "https://github.com/matrix-org/util",
"revision": "bc9d5e2d2f68a2ca279fce0fa2f28a91ecf301ed", "revision": "53326ed5598b226681112cbd441f59f3cffc9c82",
"branch": "master" "branch": "master"
}, },
{ {

View File

@ -93,11 +93,10 @@ func Protect(handler http.HandlerFunc) http.HandlerFunc {
} }
} }
// MakeJSONAPI creates an HTTP handler which always responds to incoming requests with JSON responses. // RequestWithLogging sets up standard logging for http.Requests.
// Incoming http.Requests will have a logger (with a request ID/method/path logged) attached to the Context. // http.Requests will have a logger (with a request ID/method/path logged) attached to the Context.
// This can be accessed via GetLogger(Context). // This can be accessed via GetLogger(Context).
func MakeJSONAPI(handler JSONRequestHandler) http.HandlerFunc { func RequestWithLogging(req *http.Request) *http.Request {
return Protect(func(w http.ResponseWriter, req *http.Request) {
reqID := RandomString(12) reqID := RandomString(12)
// Set a Logger and request ID on the context // Set a Logger and request ID on the context
ctx := context.WithValue(req.Context(), ctxValueLogger, log.WithFields(log.Fields{ ctx := context.WithValue(req.Context(), ctxValueLogger, log.WithFields(log.Fields{
@ -111,6 +110,16 @@ func MakeJSONAPI(handler JSONRequestHandler) http.HandlerFunc {
logger := GetLogger(req.Context()) logger := GetLogger(req.Context())
logger.Print("Incoming request") logger.Print("Incoming request")
return req
}
// MakeJSONAPI creates an HTTP handler which always responds to incoming requests with JSON responses.
// Incoming http.Requests will have a logger (with a request ID/method/path logged) attached to the Context.
// This can be accessed via GetLogger(Context).
func MakeJSONAPI(handler JSONRequestHandler) http.HandlerFunc {
return Protect(func(w http.ResponseWriter, req *http.Request) {
req = RequestWithLogging(req)
if req.Method == "OPTIONS" { if req.Method == "OPTIONS" {
SetCORSHeaders(w) SetCORSHeaders(w)
w.WriteHeader(200) w.WriteHeader(200)