micro/api/resolver/host/host.go

34 lines
677 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/unistack-org/micro/v3/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, opts ...resolver.ResolveOption) (*resolver.Endpoint, error) {
// parse options
options := resolver.NewResolveOptions(opts...)
2019-06-03 20:44:43 +03:00
return &resolver.Endpoint{
Name: req.Host,
Host: req.Host,
Method: req.Method,
Path: req.URL.Path,
Domain: options.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
}