2015-12-19 21:28:08 +03:00
|
|
|
package registry
|
|
|
|
|
|
|
|
import (
|
2018-03-03 14:53:52 +03:00
|
|
|
"context"
|
2016-01-17 02:39:47 +03:00
|
|
|
"crypto/tls"
|
2015-12-19 21:28:08 +03:00
|
|
|
"time"
|
2020-08-29 17:44:49 +03:00
|
|
|
|
|
|
|
"github.com/unistack-org/micro/v3/logger"
|
2015-12-19 21:28:08 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type Options struct {
|
2016-03-16 01:20:21 +03:00
|
|
|
Addrs []string
|
2016-01-17 02:39:47 +03:00
|
|
|
Timeout time.Duration
|
|
|
|
Secure bool
|
|
|
|
TLSConfig *tls.Config
|
2020-08-29 17:44:49 +03:00
|
|
|
Logger logger.Logger
|
2016-01-06 19:25:12 +03:00
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
|
|
|
Context context.Context
|
2015-12-19 21:28:08 +03:00
|
|
|
}
|
|
|
|
|
2020-09-05 02:11:29 +03:00
|
|
|
func NewOptions(opts ...Option) Options {
|
|
|
|
options := Options{
|
2020-09-03 15:11:05 +03:00
|
|
|
Logger: logger.DefaultLogger,
|
|
|
|
Context: context.Background(),
|
|
|
|
}
|
2020-09-05 02:11:29 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
2020-09-03 15:11:05 +03:00
|
|
|
}
|
|
|
|
|
2016-01-27 02:32:27 +03:00
|
|
|
type RegisterOptions struct {
|
|
|
|
TTL time.Duration
|
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
|
|
|
Context context.Context
|
2020-06-17 15:23:41 +03:00
|
|
|
// Domain to register the service in
|
|
|
|
Domain string
|
2016-01-27 02:32:27 +03:00
|
|
|
}
|
|
|
|
|
2018-02-19 20:12:37 +03:00
|
|
|
type WatchOptions struct {
|
|
|
|
// Specify a service to watch
|
|
|
|
// If blank, the watch is for all services
|
|
|
|
Service string
|
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
|
|
|
Context context.Context
|
2020-06-17 15:23:41 +03:00
|
|
|
// Domain to watch
|
|
|
|
Domain string
|
2018-02-19 20:12:37 +03:00
|
|
|
}
|
|
|
|
|
2020-04-14 14:32:59 +03:00
|
|
|
type DeregisterOptions struct {
|
|
|
|
Context context.Context
|
2020-06-17 15:23:41 +03:00
|
|
|
// Domain the service was registered in
|
|
|
|
Domain string
|
2020-04-14 14:32:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type GetOptions struct {
|
|
|
|
Context context.Context
|
2020-06-17 15:23:41 +03:00
|
|
|
// Domain to scope the request to
|
|
|
|
Domain string
|
2020-04-14 14:32:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type ListOptions struct {
|
|
|
|
Context context.Context
|
2020-06-17 15:23:41 +03:00
|
|
|
// Domain to scope the request to
|
|
|
|
Domain string
|
2020-04-14 14:32:59 +03:00
|
|
|
}
|
|
|
|
|
2016-03-16 01:20:21 +03:00
|
|
|
// Addrs is the registry addresses to use
|
|
|
|
func Addrs(addrs ...string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Addrs = addrs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-19 21:28:08 +03:00
|
|
|
func Timeout(t time.Duration) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Timeout = t
|
|
|
|
}
|
|
|
|
}
|
2016-01-16 23:25:18 +03:00
|
|
|
|
|
|
|
// Secure communication with the registry
|
|
|
|
func Secure(b bool) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Secure = b
|
|
|
|
}
|
|
|
|
}
|
2016-01-17 02:39:47 +03:00
|
|
|
|
2020-08-29 17:44:49 +03:00
|
|
|
// Logger sets the logger
|
|
|
|
func Logger(l logger.Logger) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Logger = l
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-17 02:39:47 +03:00
|
|
|
// Specify TLS Config
|
|
|
|
func TLSConfig(t *tls.Config) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.TLSConfig = t
|
|
|
|
}
|
|
|
|
}
|
2016-01-27 02:32:27 +03:00
|
|
|
|
2016-01-27 15:23:18 +03:00
|
|
|
func RegisterTTL(t time.Duration) RegisterOption {
|
2016-01-27 02:32:27 +03:00
|
|
|
return func(o *RegisterOptions) {
|
|
|
|
o.TTL = t
|
|
|
|
}
|
|
|
|
}
|
2018-02-19 20:12:37 +03:00
|
|
|
|
2020-04-14 14:32:59 +03:00
|
|
|
func RegisterContext(ctx context.Context) RegisterOption {
|
|
|
|
return func(o *RegisterOptions) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 15:23:41 +03:00
|
|
|
func RegisterDomain(d string) RegisterOption {
|
|
|
|
return func(o *RegisterOptions) {
|
|
|
|
o.Domain = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-19 20:12:37 +03:00
|
|
|
// Watch a service
|
|
|
|
func WatchService(name string) WatchOption {
|
|
|
|
return func(o *WatchOptions) {
|
|
|
|
o.Service = name
|
|
|
|
}
|
|
|
|
}
|
2020-04-14 14:32:59 +03:00
|
|
|
|
|
|
|
func WatchContext(ctx context.Context) WatchOption {
|
|
|
|
return func(o *WatchOptions) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 15:23:41 +03:00
|
|
|
func WatchDomain(d string) WatchOption {
|
|
|
|
return func(o *WatchOptions) {
|
|
|
|
o.Domain = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-14 14:32:59 +03:00
|
|
|
func DeregisterContext(ctx context.Context) DeregisterOption {
|
|
|
|
return func(o *DeregisterOptions) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 15:23:41 +03:00
|
|
|
func DeregisterDomain(d string) DeregisterOption {
|
|
|
|
return func(o *DeregisterOptions) {
|
|
|
|
o.Domain = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-14 14:32:59 +03:00
|
|
|
func GetContext(ctx context.Context) GetOption {
|
|
|
|
return func(o *GetOptions) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 15:23:41 +03:00
|
|
|
func GetDomain(d string) GetOption {
|
|
|
|
return func(o *GetOptions) {
|
|
|
|
o.Domain = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-14 14:32:59 +03:00
|
|
|
func ListContext(ctx context.Context) ListOption {
|
|
|
|
return func(o *ListOptions) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
2020-06-17 15:23:41 +03:00
|
|
|
|
|
|
|
func ListDomain(d string) ListOption {
|
|
|
|
return func(o *ListOptions) {
|
|
|
|
o.Domain = d
|
|
|
|
}
|
|
|
|
}
|