2019-06-03 20:44:43 +03:00
|
|
|
// Package path resolves using http path
|
|
|
|
package path
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"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
|
|
|
)
|
|
|
|
|
2021-02-14 16:16:01 +03:00
|
|
|
// Resolver the path resolver
|
2020-04-09 12:28:38 +03:00
|
|
|
type Resolver struct {
|
|
|
|
opts resolver.Options
|
|
|
|
}
|
2019-06-03 20:44:43 +03:00
|
|
|
|
2021-02-14 16:16:01 +03:00
|
|
|
// Resolve resolves endpoint
|
2020-06-29 18:37:45 +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
|
|
|
if req.URL.Path == "/" {
|
2020-04-03 12:16:19 +03:00
|
|
|
return nil, resolver.ErrNotFound
|
2019-06-03 20:44:43 +03:00
|
|
|
}
|
2020-04-09 12:28:38 +03:00
|
|
|
|
2019-06-03 20:44:43 +03:00
|
|
|
parts := strings.Split(req.URL.Path[1:], "/")
|
2020-04-09 13:03:33 +03:00
|
|
|
|
2019-06-03 20:44:43 +03:00
|
|
|
return &resolver.Endpoint{
|
2020-06-26 16:28:18 +03:00
|
|
|
Name: r.opts.ServicePrefix + "." + 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
|
|
|
|
}
|
|
|
|
|
2021-02-14 16:16:01 +03:00
|
|
|
// String retruns the string representation
|
2019-06-03 20:44:43 +03:00
|
|
|
func (r *Resolver) String() string {
|
|
|
|
return "path"
|
|
|
|
}
|
|
|
|
|
2021-02-14 16:16:01 +03:00
|
|
|
// NewResolver returns new path resolver
|
2019-06-03 20:44:43 +03:00
|
|
|
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
|
|
|
}
|