2019-06-03 19:44:43 +02:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
2021-10-12 13:55:53 +02:00
|
|
|
"go-micro.dev/v4/api/router"
|
|
|
|
"go-micro.dev/v4/client"
|
2022-09-29 16:44:53 +02:00
|
|
|
"go-micro.dev/v4/logger"
|
2019-06-03 19:44:43 +02:00
|
|
|
)
|
|
|
|
|
2020-03-26 13:29:28 +02:00
|
|
|
var (
|
2020-03-26 18:57:31 +02:00
|
|
|
DefaultMaxRecvSize int64 = 1024 * 1024 * 100 // 10Mb
|
2020-03-26 13:29:28 +02:00
|
|
|
)
|
|
|
|
|
2019-06-03 19:44:43 +02:00
|
|
|
type Options struct {
|
2020-03-26 13:29:28 +02:00
|
|
|
MaxRecvSize int64
|
|
|
|
Namespace string
|
|
|
|
Router router.Router
|
2020-04-12 15:29:38 +02:00
|
|
|
Client client.Client
|
2022-09-29 16:44:53 +02:00
|
|
|
Logger logger.Logger
|
2019-06-03 19:44:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type Option func(o *Options)
|
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// NewOptions fills in the blanks.
|
2019-06-03 19:44:43 +02:00
|
|
|
func NewOptions(opts ...Option) Options {
|
2022-09-29 16:44:53 +02:00
|
|
|
options := Options{
|
|
|
|
Logger: logger.DefaultLogger,
|
|
|
|
}
|
|
|
|
|
2019-06-03 19:44:43 +02:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
2020-04-12 15:29:38 +02:00
|
|
|
if options.Client == nil {
|
2022-07-02 13:11:59 +02:00
|
|
|
WithClient(client.DefaultClient)(&options)
|
2019-06-03 19:44:43 +02:00
|
|
|
}
|
|
|
|
|
2020-03-26 13:29:28 +02:00
|
|
|
if options.MaxRecvSize == 0 {
|
|
|
|
options.MaxRecvSize = DefaultMaxRecvSize
|
|
|
|
}
|
|
|
|
|
2022-09-29 16:44:53 +02:00
|
|
|
if options.Logger == nil {
|
|
|
|
options.Logger = logger.LoggerOrDefault(options.Logger)
|
|
|
|
}
|
|
|
|
|
2019-06-03 19:44:43 +02:00
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// WithNamespace specifies the namespace for the handler.
|
2019-06-03 19:44:43 +02:00
|
|
|
func WithNamespace(s string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Namespace = s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// WithRouter specifies a router to be used by the handler.
|
2019-06-03 19:44:43 +02:00
|
|
|
func WithRouter(r router.Router) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Router = r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-12 15:29:38 +02:00
|
|
|
func WithClient(c client.Client) Option {
|
2019-06-03 19:44:43 +02:00
|
|
|
return func(o *Options) {
|
2020-04-12 15:29:38 +02:00
|
|
|
o.Client = c
|
2019-06-03 19:44:43 +02:00
|
|
|
}
|
|
|
|
}
|
2020-03-26 13:29:28 +02:00
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// WithMaxRecvSize specifies max body size.
|
2020-03-26 13:29:28 +02:00
|
|
|
func WithMaxRecvSize(size int64) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.MaxRecvSize = size
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 16:44:53 +02:00
|
|
|
|
2022-09-30 16:27:07 +02:00
|
|
|
// WithLogger specifies the logger.
|
2022-09-29 16:44:53 +02:00
|
|
|
func WithLogger(l logger.Logger) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Logger = l
|
|
|
|
}
|
|
|
|
}
|