mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
72fc9dc524
This seems to be left over from the older authorization system in Fleet. I couldn't find any other reference to the `request-id` in the code.
32 lines
853 B
Go
32 lines
853 B
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/fleetdm/fleet/v4/server/contexts/logging"
|
|
"github.com/fleetdm/fleet/v4/server/contexts/token"
|
|
"github.com/fleetdm/fleet/v4/server/contexts/viewer"
|
|
"github.com/fleetdm/fleet/v4/server/fleet"
|
|
|
|
kithttp "github.com/go-kit/kit/transport/http"
|
|
)
|
|
|
|
// setRequestsContexts updates the request with necessary context values for a request
|
|
func setRequestsContexts(svc fleet.Service) kithttp.RequestFunc {
|
|
return func(ctx context.Context, r *http.Request) context.Context {
|
|
bearer := token.FromHTTPRequest(r)
|
|
ctx = token.NewContext(ctx, bearer)
|
|
if bearer != "" {
|
|
v, err := authViewer(ctx, string(bearer), svc)
|
|
if err == nil {
|
|
ctx = viewer.NewContext(ctx, *v)
|
|
}
|
|
}
|
|
|
|
ctx = logging.NewContext(ctx, &logging.LoggingContext{})
|
|
ctx = logging.WithStartTime(ctx)
|
|
return ctx
|
|
}
|
|
}
|