micro/api/handler/options.go

66 lines
1.2 KiB
Go
Raw Normal View History

2019-06-03 20:44:43 +03:00
package handler
import (
"github.com/unistack-org/micro/v3/api/router"
"github.com/unistack-org/micro/v3/client"
2019-06-03 20:44:43 +03:00
)
var (
2020-03-26 19:57:31 +03:00
DefaultMaxRecvSize int64 = 1024 * 1024 * 100 // 10Mb
)
2019-06-03 20:44:43 +03:00
type Options struct {
MaxRecvSize int64
Namespace string
Router router.Router
2020-04-12 16:29:38 +03:00
Client client.Client
2019-06-03 20:44:43 +03:00
}
type Option func(o *Options)
// NewOptions fills in the blanks
func NewOptions(opts ...Option) Options {
var options Options
for _, o := range opts {
o(&options)
}
// set namespace if blank
if len(options.Namespace) == 0 {
WithNamespace("go.micro.api")(&options)
}
if options.MaxRecvSize == 0 {
options.MaxRecvSize = DefaultMaxRecvSize
}
2019-06-03 20:44:43 +03:00
return options
}
// WithNamespace specifies the namespace for the handler
func WithNamespace(s string) Option {
return func(o *Options) {
o.Namespace = s
}
}
// WithRouter specifies a router to be used by the handler
func WithRouter(r router.Router) Option {
return func(o *Options) {
o.Router = r
}
}
2020-04-12 16:29:38 +03:00
func WithClient(c client.Client) Option {
2019-06-03 20:44:43 +03:00
return func(o *Options) {
2020-04-12 16:29:38 +03:00
o.Client = c
2019-06-03 20:44:43 +03:00
}
}
// WithMaxRecvSize specifies max body size
func WithMaxRecvSize(size int64) Option {
return func(o *Options) {
o.MaxRecvSize = size
}
}