cmd/routed: add twirp middleware
This commit is contained in:
parent
dd53921e77
commit
2f92dfbe46
|
@ -160,7 +160,7 @@ func New(cfg Config) (*Server, error) {
|
|||
hs := &http.Server{
|
||||
TLSConfig: tc,
|
||||
Addr: cfg.GRPCAddr,
|
||||
Handler: middleware.Trace("twirp-https")(mux),
|
||||
Handler: middleware.Twirp(middleware.Trace("twirp-https")(mux)),
|
||||
}
|
||||
|
||||
go hs.ListenAndServeTLS("", "")
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
package middleware
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/twitchtv/twirp"
|
||||
)
|
||||
|
||||
// Twirp adds the needed values to the request context for twirp services.
|
||||
func Twirp(next http.Handler) http.Handler {
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
ctx := r.Context()
|
||||
ctx, _ = twirp.WithHTTPRequestHeaders(ctx, r.Header)
|
||||
|
||||
next.ServeHTTP(w, r.WithContext(ctx))
|
||||
})
|
||||
}
|
Loading…
Reference in New Issue