* registry: add domain options * registry/mdns: implement domain options * registry/mdns: return node domain in metadata when querying using wildcard * Fix nil pointer exception * registry/mdns: return error from deregister * registy/mdns: rename tld => domain
		
			
				
	
	
		
			156 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			156 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package registry
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"crypto/tls"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| type Options struct {
 | |
| 	Addrs     []string
 | |
| 	Timeout   time.Duration
 | |
| 	Secure    bool
 | |
| 	TLSConfig *tls.Config
 | |
| 	// Other options for implementations of the interface
 | |
| 	// can be stored in a context
 | |
| 	Context context.Context
 | |
| }
 | |
| 
 | |
| type RegisterOptions struct {
 | |
| 	TTL time.Duration
 | |
| 	// Other options for implementations of the interface
 | |
| 	// can be stored in a context
 | |
| 	Context context.Context
 | |
| 	// Domain to register the service in
 | |
| 	Domain string
 | |
| }
 | |
| 
 | |
| 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
 | |
| 	// Domain to watch
 | |
| 	Domain string
 | |
| }
 | |
| 
 | |
| type DeregisterOptions struct {
 | |
| 	Context context.Context
 | |
| 	// Domain the service was registered in
 | |
| 	Domain string
 | |
| }
 | |
| 
 | |
| type GetOptions struct {
 | |
| 	Context context.Context
 | |
| 	// Domain to scope the request to
 | |
| 	Domain string
 | |
| }
 | |
| 
 | |
| type ListOptions struct {
 | |
| 	Context context.Context
 | |
| 	// Domain to scope the request to
 | |
| 	Domain string
 | |
| }
 | |
| 
 | |
| // Addrs is the registry addresses to use
 | |
| func Addrs(addrs ...string) Option {
 | |
| 	return func(o *Options) {
 | |
| 		o.Addrs = addrs
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func Timeout(t time.Duration) Option {
 | |
| 	return func(o *Options) {
 | |
| 		o.Timeout = t
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // Secure communication with the registry
 | |
| func Secure(b bool) Option {
 | |
| 	return func(o *Options) {
 | |
| 		o.Secure = b
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // Specify TLS Config
 | |
| func TLSConfig(t *tls.Config) Option {
 | |
| 	return func(o *Options) {
 | |
| 		o.TLSConfig = t
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func RegisterTTL(t time.Duration) RegisterOption {
 | |
| 	return func(o *RegisterOptions) {
 | |
| 		o.TTL = t
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func RegisterContext(ctx context.Context) RegisterOption {
 | |
| 	return func(o *RegisterOptions) {
 | |
| 		o.Context = ctx
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func RegisterDomain(d string) RegisterOption {
 | |
| 	return func(o *RegisterOptions) {
 | |
| 		o.Domain = d
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // Watch a service
 | |
| func WatchService(name string) WatchOption {
 | |
| 	return func(o *WatchOptions) {
 | |
| 		o.Service = name
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func WatchContext(ctx context.Context) WatchOption {
 | |
| 	return func(o *WatchOptions) {
 | |
| 		o.Context = ctx
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func WatchDomain(d string) WatchOption {
 | |
| 	return func(o *WatchOptions) {
 | |
| 		o.Domain = d
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func DeregisterContext(ctx context.Context) DeregisterOption {
 | |
| 	return func(o *DeregisterOptions) {
 | |
| 		o.Context = ctx
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func DeregisterDomain(d string) DeregisterOption {
 | |
| 	return func(o *DeregisterOptions) {
 | |
| 		o.Domain = d
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func GetContext(ctx context.Context) GetOption {
 | |
| 	return func(o *GetOptions) {
 | |
| 		o.Context = ctx
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func GetDomain(d string) GetOption {
 | |
| 	return func(o *GetOptions) {
 | |
| 		o.Domain = d
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func ListContext(ctx context.Context) ListOption {
 | |
| 	return func(o *ListOptions) {
 | |
| 		o.Context = ctx
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func ListDomain(d string) ListOption {
 | |
| 	return func(o *ListOptions) {
 | |
| 		o.Domain = d
 | |
| 	}
 | |
| }
 |