1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/pkg/runtime/options.go

105 lines
2.0 KiB
Go
Raw Normal View History

2018-09-18 22:42:38 +02:00
package runtime
2018-09-28 06:28:33 +02:00
import (
"context"
2018-09-29 03:04:16 +02:00
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/env"
2018-09-28 06:28:33 +02:00
"github.com/MontFerret/ferret/pkg/runtime/logging"
2018-09-29 03:04:16 +02:00
"github.com/MontFerret/ferret/pkg/runtime/values"
2018-09-28 06:28:33 +02:00
"io"
"os"
)
2018-09-18 22:42:38 +02:00
type (
Options struct {
proxy string
cdp string
params map[string]core.Value
logging *logging.Options
userAgent string
2018-09-18 22:42:38 +02:00
}
Option func(*Options)
)
2018-10-18 04:57:36 +02:00
func NewOptions() *Options {
2018-09-18 22:42:38 +02:00
return &Options{
2018-09-29 03:04:16 +02:00
cdp: "http://0.0.0.0:9222",
params: make(map[string]core.Value),
logging: &logging.Options{
Writer: os.Stdout,
Level: logging.ErrorLevel,
},
2018-09-18 22:42:38 +02:00
}
}
func WithParam(name string, value interface{}) Option {
return func(options *Options) {
2018-09-29 03:04:16 +02:00
options.params[name] = values.Parse(value)
}
}
func WithParams(params map[string]interface{}) Option {
return func(options *Options) {
for name, value := range params {
options.params[name] = values.Parse(value)
}
2018-09-18 22:42:38 +02:00
}
}
func WithBrowser(address string) Option {
return func(options *Options) {
options.cdp = address
}
}
func WithProxy(address string) Option {
return func(options *Options) {
options.proxy = address
}
}
func WithUserAgent(value string) Option {
return func(options *Options) {
options.userAgent = value
}
}
func WithRandomUserAgent() Option {
return func(options *Options) {
options.userAgent = env.RandomUserAgent
}
}
2018-09-28 06:28:33 +02:00
func WithLog(writer io.Writer) Option {
return func(options *Options) {
2018-09-29 03:04:16 +02:00
options.logging.Writer = writer
2018-09-28 06:28:33 +02:00
}
}
func WithLogLevel(lvl logging.Level) Option {
return func(options *Options) {
2018-09-29 03:04:16 +02:00
options.logging.Level = lvl
2018-09-28 06:28:33 +02:00
}
}
2018-10-18 04:57:36 +02:00
func (opts *Options) Apply(setters ...Option) *Options {
for _, setter := range setters {
setter(opts)
}
return opts
}
func (opts *Options) WithContext(parent context.Context) context.Context {
2018-09-29 03:04:16 +02:00
ctx := core.ParamsWith(parent, opts.params)
ctx = logging.WithContext(ctx, opts.logging)
ctx = env.WithContext(ctx, env.Environment{
CDPAddress: opts.cdp,
ProxyAddress: opts.proxy,
UserAgent: opts.userAgent,
})
2018-09-28 06:28:33 +02:00
return ctx
2018-09-18 22:42:38 +02:00
}