micro/util/http/roundtripper.go
Asim Aslam 50ec6c748f
cleanup client/selector/lookup (#1937)
* cleanup client/selector/lookup

* add mdns router, remove registry from client

* fix roundtripper

* remove comment

* fix compile issue

* fix mucp test

* fix api router
2020-08-17 22:44:45 +01:00

35 lines
633 B
Go

package http
import (
"errors"
"net/http"
"github.com/micro/go-micro/v3/router"
"github.com/micro/go-micro/v3/selector"
)
type roundTripper struct {
rt http.RoundTripper
st selector.Selector
opts Options
}
func (r *roundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
routes, err := r.opts.Router.Lookup(router.QueryService(req.URL.Host))
if err != nil {
return nil, err
}
// rudimentary retry 3 times
for _, route := range routes {
req.URL.Host = route.Address
w, err := r.rt.RoundTrip(req)
if err != nil {
continue
}
return w, nil
}
return nil, errors.New("failed request")
}