1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-05 10:20:53 +02:00
go-micro/api/resolver/path/path.go

36 lines
696 B
Go
Raw Normal View History

2019-06-03 19:44:43 +02:00
// Package path resolves using http path
package path
import (
"net/http"
"strings"
"github.com/micro/go-micro/v2/api/resolver"
2019-06-03 19:44:43 +02:00
)
2020-04-09 11:28:38 +02:00
type Resolver struct {
opts resolver.Options
}
2019-06-03 19:44:43 +02:00
func (r *Resolver) Resolve(req *http.Request) (*resolver.Endpoint, error) {
if req.URL.Path == "/" {
2020-04-03 11:16:19 +02:00
return nil, resolver.ErrNotFound
2019-06-03 19:44:43 +02:00
}
2020-04-09 11:28:38 +02:00
2019-06-03 19:44:43 +02:00
parts := strings.Split(req.URL.Path[1:], "/")
return &resolver.Endpoint{
2020-04-09 11:28:38 +02:00
Name: r.opts.Namespace + "." + parts[0],
2019-06-03 19:44:43 +02:00
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 {
2020-04-09 11:28:38 +02:00
return &Resolver{opts: resolver.NewOptions(opts...)}
2019-06-03 19:44:43 +02:00
}