package http import ( "context" "crypto/tls" "net/http" "github.com/micro/cli/v2" "github.com/owncloud/ocis/ocis-pkg/log" ) // Option defines a single option function. type Option func(o *Options) // Options defines the available options for this package. type Options struct { Logger log.Logger TLSConfig *tls.Config Namespace string Name string Version string Address string Handler http.Handler Context context.Context Flags []cli.Flag } // newOptions initializes the available default options. func newOptions(opts ...Option) Options { opt := Options{ Namespace: "go.micro.web", } for _, o := range opts { o(&opt) } return opt } // Logger provides a function to set the logger option. func Logger(l log.Logger) Option { return func(o *Options) { o.Logger = l } } // Namespace provides a function to set the namespace option. func Namespace(n string) Option { return func(o *Options) { o.Namespace = n } } // Name provides a function to set the name option. func Name(n string) Option { return func(o *Options) { o.Name = n } } // Version provides a function to set the version option. func Version(v string) Option { return func(o *Options) { o.Version = v } } // Address provides a function to set the address option. func Address(a string) Option { return func(o *Options) { o.Address = a } } // Context provides a function to set the context option. func Context(ctx context.Context) Option { return func(o *Options) { o.Context = ctx } } // Flags provides a function to set the flags option. func Flags(flags ...cli.Flag) Option { return func(o *Options) { o.Flags = append(o.Flags, flags...) } } // TLSConfig provides a function to set the TLSConfig option. func TLSConfig(config *tls.Config) Option { return func(o *Options) { o.TLSConfig = config } } // Handler sets the http handler for the service func Handler(h http.Handler) Option { return func(o *Options) { o.Handler = h } }