-
Notifications
You must be signed in to change notification settings - Fork 810
/
Copy pathdownstream_roundtripper.go
41 lines (34 loc) · 1.06 KB
/
downstream_roundtripper.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package frontend
import (
"net/http"
"net/url"
"path"
"github.com/opentracing/opentracing-go"
)
// RoundTripper that forwards requests to downstream URL.
type downstreamRoundTripper struct {
downstreamURL *url.URL
transport http.RoundTripper
}
func NewDownstreamRoundTripper(downstreamURL string, transport http.RoundTripper) (http.RoundTripper, error) {
u, err := url.Parse(downstreamURL)
if err != nil {
return nil, err
}
return &downstreamRoundTripper{downstreamURL: u, transport: transport}, nil
}
func (d downstreamRoundTripper) RoundTrip(r *http.Request) (*http.Response, error) {
tracer, span := opentracing.GlobalTracer(), opentracing.SpanFromContext(r.Context())
if tracer != nil && span != nil {
carrier := opentracing.HTTPHeadersCarrier(r.Header)
err := tracer.Inject(span.Context(), opentracing.HTTPHeaders, carrier)
if err != nil {
return nil, err
}
}
r.URL.Scheme = d.downstreamURL.Scheme
r.URL.Host = d.downstreamURL.Host
r.URL.Path = path.Join(d.downstreamURL.Path, r.URL.Path)
r.Host = ""
return d.transport.RoundTrip(r)
}