2019-06-03 20:44:43 +03:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
2020-11-03 02:02:32 +03:00
|
|
|
"context"
|
|
|
|
|
2020-08-19 17:47:17 +03:00
|
|
|
"github.com/unistack-org/micro/v3/api/resolver"
|
|
|
|
"github.com/unistack-org/micro/v3/api/resolver/vpath"
|
|
|
|
"github.com/unistack-org/micro/v3/registry"
|
2019-06-03 20:44:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type Options struct {
|
2020-04-08 17:39:01 +03:00
|
|
|
Handler string
|
|
|
|
Registry registry.Registry
|
|
|
|
Resolver resolver.Resolver
|
2020-11-03 02:02:32 +03:00
|
|
|
Context context.Context
|
2019-06-03 20:44:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type Option func(o *Options)
|
|
|
|
|
|
|
|
func NewOptions(opts ...Option) Options {
|
|
|
|
options := Options{
|
2020-11-03 02:02:32 +03:00
|
|
|
Context: context.Background(),
|
2020-08-25 13:44:41 +03:00
|
|
|
Handler: "meta",
|
2019-06-03 20:44:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
2020-04-09 12:34:21 +03:00
|
|
|
if options.Resolver == nil {
|
|
|
|
options.Resolver = vpath.NewResolver(
|
|
|
|
resolver.WithHandler(options.Handler),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-06-03 20:44:43 +03:00
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:02:32 +03:00
|
|
|
// WithContext sets the context
|
|
|
|
func WithContext(ctx context.Context) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithHandler sets the handler
|
2019-06-03 20:44:43 +03:00
|
|
|
func WithHandler(h string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Handler = h
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:02:32 +03:00
|
|
|
// WithRegistry sets the registry
|
2019-06-03 20:44:43 +03:00
|
|
|
func WithRegistry(r registry.Registry) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Registry = r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:02:32 +03:00
|
|
|
// WithResolver sets the resolver
|
2019-06-03 20:44:43 +03:00
|
|
|
func WithResolver(r resolver.Resolver) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Resolver = r
|
|
|
|
}
|
|
|
|
}
|