core/bypass/bypass.go
2023-10-20 19:12:49 +08:00

48 lines
901 B
Go

package bypass
import "context"
type Options struct {
Host string
Path string
}
type Option func(opts *Options)
func WithHostOpton(host string) Option {
return func(opts *Options) {
opts.Host = host
}
}
func WithPathOption(path string) Option {
return func(opts *Options) {
opts.Path = path
}
}
// Bypass is a filter of address (IP or domain).
type Bypass interface {
// Contains reports whether the bypass includes addr.
Contains(ctx context.Context, network, addr string, opts ...Option) bool
}
type bypassGroup struct {
bypasses []Bypass
}
func BypassGroup(bypasses ...Bypass) Bypass {
return &bypassGroup{
bypasses: bypasses,
}
}
func (p *bypassGroup) Contains(ctx context.Context, network, addr string, opts ...Option) bool {
for _, bypass := range p.bypasses {
if bypass != nil && bypass.Contains(ctx, network, addr, opts...) {
return true
}
}
return false
}