2019-06-03 20:44:43 +03:00
|
|
|
// Package vpath resolves using http path and recognised versioned urls
|
|
|
|
package vpath
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
|
|
|
|
2020-08-19 17:47:17 +03:00
|
|
|
"github.com/unistack-org/micro/v3/api/resolver"
|
2019-06-03 20:44:43 +03:00
|
|
|
)
|
|
|
|
|
2020-04-09 12:28:38 +03:00
|
|
|
func NewResolver(opts ...resolver.Option) resolver.Resolver {
|
|
|
|
return &Resolver{opts: resolver.NewOptions(opts...)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Resolver struct {
|
|
|
|
opts resolver.Options
|
|
|
|
}
|
2019-06-03 20:44:43 +03:00
|
|
|
|
|
|
|
var (
|
|
|
|
re = regexp.MustCompile("^v[0-9]+$")
|
|
|
|
)
|
|
|
|
|
2020-06-29 18:37:45 +03:00
|
|
|
func (r *Resolver) Resolve(req *http.Request, opts ...resolver.ResolveOption) (*resolver.Endpoint, error) {
|
2019-06-03 20:44:43 +03:00
|
|
|
if req.URL.Path == "/" {
|
|
|
|
return nil, errors.New("unknown name")
|
|
|
|
}
|
|
|
|
|
2020-06-29 18:37:45 +03:00
|
|
|
options := resolver.NewResolveOptions(opts...)
|
|
|
|
|
2020-04-09 12:28:38 +03:00
|
|
|
parts := strings.Split(req.URL.Path[1:], "/")
|
2019-06-03 20:44:43 +03:00
|
|
|
if len(parts) == 1 {
|
|
|
|
return &resolver.Endpoint{
|
2020-06-26 16:28:18 +03:00
|
|
|
Name: r.withPrefix(parts...),
|
2019-06-03 20:44:43 +03:00
|
|
|
Host: req.Host,
|
|
|
|
Method: req.Method,
|
|
|
|
Path: req.URL.Path,
|
2020-06-29 18:37:45 +03:00
|
|
|
Domain: options.Domain,
|
2019-06-03 20:44:43 +03:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// /v1/foo
|
|
|
|
if re.MatchString(parts[0]) {
|
|
|
|
return &resolver.Endpoint{
|
2020-06-26 16:28:18 +03:00
|
|
|
Name: r.withPrefix(parts[0:2]...),
|
2019-06-03 20:44:43 +03:00
|
|
|
Host: req.Host,
|
|
|
|
Method: req.Method,
|
|
|
|
Path: req.URL.Path,
|
2020-06-29 18:37:45 +03:00
|
|
|
Domain: options.Domain,
|
2019-06-03 20:44:43 +03:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &resolver.Endpoint{
|
2020-06-26 16:28:18 +03:00
|
|
|
Name: r.withPrefix(parts[0]),
|
2019-06-03 20:44:43 +03:00
|
|
|
Host: req.Host,
|
|
|
|
Method: req.Method,
|
|
|
|
Path: req.URL.Path,
|
2020-06-29 18:37:45 +03:00
|
|
|
Domain: options.Domain,
|
2019-06-03 20:44:43 +03:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Resolver) String() string {
|
|
|
|
return "path"
|
|
|
|
}
|
|
|
|
|
2020-06-26 16:28:18 +03:00
|
|
|
// withPrefix transforms "foo" into "go.micro.api.foo"
|
|
|
|
func (r *Resolver) withPrefix(parts ...string) string {
|
|
|
|
p := r.opts.ServicePrefix
|
|
|
|
if len(p) > 0 {
|
|
|
|
parts = append([]string{p}, parts...)
|
2020-04-09 12:28:38 +03:00
|
|
|
}
|
2020-04-09 13:03:33 +03:00
|
|
|
|
2020-06-26 16:28:18 +03:00
|
|
|
return strings.Join(parts, ".")
|
2019-06-03 20:44:43 +03:00
|
|
|
}
|