micro/api/resolver/path/path.go

33 lines
611 B
Go
Raw Normal View History

2019-06-03 20:44:43 +03:00
// Package path resolves using http path
package path
import (
"net/http"
"strings"
"github.com/micro/go-micro/v2/api/resolver"
2019-06-03 20:44:43 +03:00
)
type Resolver struct{}
func (r *Resolver) Resolve(req *http.Request) (*resolver.Endpoint, error) {
if req.URL.Path == "/" {
2020-04-03 12:16:19 +03:00
return nil, resolver.ErrNotFound
2019-06-03 20:44:43 +03:00
}
parts := strings.Split(req.URL.Path[1:], "/")
return &resolver.Endpoint{
Name: parts[0],
Host: req.Host,
Method: req.Method,
Path: req.URL.Path,
}, nil
}
func (r *Resolver) String() string {
return "path"
}
func NewResolver(opts ...resolver.Option) resolver.Resolver {
return &Resolver{}
}