micro/util/http/roundtripper.go

40 lines
642 B
Go
Raw Normal View History

2019-05-31 01:52:10 +03:00
package http
import (
"errors"
"net/http"
"github.com/micro/go-micro/v2/client/selector"
2019-05-31 01:52:10 +03:00
)
type roundTripper struct {
rt http.RoundTripper
st selector.Strategy
opts Options
}
func (r *roundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
s, err := r.opts.Registry.GetService(req.URL.Host)
if err != nil {
return nil, err
}
next := r.st(s)
// rudimentary retry 3 times
for i := 0; i < 3; i++ {
n, err := next()
if err != nil {
continue
}
2019-07-08 10:01:42 +03:00
req.URL.Host = n.Address
2019-05-31 01:52:10 +03:00
w, err := r.rt.RoundTrip(req)
if err != nil {
continue
}
return w, nil
}
return nil, errors.New("failed request")
}