micro/api/resolver/host/host.go

31 lines
573 B
Go
Raw Normal View History

2019-06-03 20:44:43 +03:00
// Package host resolves using http host
package host
import (
"net/http"
"github.com/micro/go-micro/v2/api/resolver"
2019-06-03 20:44:43 +03:00
)
2020-04-09 12:28:38 +03:00
type Resolver struct {
opts resolver.Options
}
2019-06-03 20:44:43 +03:00
func (r *Resolver) Resolve(req *http.Request) (*resolver.Endpoint, error) {
return &resolver.Endpoint{
Name: req.Host,
Host: req.Host,
Method: req.Method,
Path: req.URL.Path,
Domain: r.opts.Domain,
2019-06-03 20:44:43 +03:00
}, nil
}
func (r *Resolver) String() string {
return "host"
}
func NewResolver(opts ...resolver.Option) resolver.Resolver {
2020-04-09 12:28:38 +03:00
return &Resolver{opts: resolver.NewOptions(opts...)}
2019-06-03 20:44:43 +03:00
}