2019-06-03 20:44:43 +03:00
|
|
|
// Package grpc resolves a grpc service like /greeter.Say/Hello to greeter service
|
|
|
|
package grpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"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
|
|
|
)
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// Resolver struct
|
2020-06-26 16:28:18 +03:00
|
|
|
type Resolver struct {
|
|
|
|
opts resolver.Options
|
|
|
|
}
|
2019-06-03 20:44:43 +03:00
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// Resolve func to resolve enndpoint
|
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
|
|
|
// /foo.Bar/Service
|
|
|
|
if req.URL.Path == "/" {
|
|
|
|
return nil, errors.New("unknown name")
|
|
|
|
}
|
|
|
|
// [foo.Bar, Service]
|
|
|
|
parts := strings.Split(req.URL.Path[1:], "/")
|
|
|
|
// [foo, Bar]
|
|
|
|
name := strings.Split(parts[0], ".")
|
|
|
|
// foo
|
|
|
|
return &resolver.Endpoint{
|
|
|
|
Name: strings.Join(name[:len(name)-1], "."),
|
|
|
|
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 "grpc"
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// NewResolver is used to create new Resolver
|
2019-06-03 20:44:43 +03:00
|
|
|
func NewResolver(opts ...resolver.Option) resolver.Resolver {
|
2020-06-26 16:28:18 +03:00
|
|
|
return &Resolver{opts: resolver.NewOptions(opts...)}
|
2019-06-03 20:44:43 +03:00
|
|
|
}
|