mirror of
https://github.com/notherealmarco/WASAPhoto.git
synced 2025-03-13 13:35:23 +01:00
49 lines
1.5 KiB
Go
49 lines
1.5 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gofrs/uuid"
|
|
"github.com/julienschmidt/httprouter"
|
|
"github.com/notherealmarco/WASAPhoto/service/api/authorization"
|
|
"github.com/notherealmarco/WASAPhoto/service/api/reqcontext"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// httpRouterHandler is the signature for functions that accepts a reqcontext.RequestContext in addition to those
|
|
// required by the httprouter package.
|
|
type httpRouterHandler func(http.ResponseWriter, *http.Request, httprouter.Params, reqcontext.RequestContext)
|
|
|
|
// wrap parses the request and adds a reqcontext.RequestContext instance related to the request.
|
|
func (rt *_router) wrap(fn httpRouterHandler) func(http.ResponseWriter, *http.Request, httprouter.Params) {
|
|
return func(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
reqUUID, err := uuid.NewV4()
|
|
if err != nil {
|
|
rt.baseLogger.WithError(err).Error("can't generate a request UUID")
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
auth, err := authorization.BuildAuth(r.Header.Get("Authorization"))
|
|
|
|
if err != nil {
|
|
rt.baseLogger.WithError(err).Info("User not authorized")
|
|
w.WriteHeader(http.StatusUnauthorized)
|
|
return
|
|
}
|
|
|
|
var ctx = reqcontext.RequestContext{
|
|
ReqUUID: reqUUID,
|
|
Auth: auth,
|
|
}
|
|
|
|
// Create a request-specific logger
|
|
ctx.Logger = rt.baseLogger.WithFields(logrus.Fields{
|
|
"reqid": ctx.ReqUUID.String(),
|
|
"remote-ip": r.RemoteAddr,
|
|
})
|
|
|
|
// Call the next handler in chain (usually, the handler function for the path)
|
|
fn(w, r, ps, ctx)
|
|
}
|
|
}
|