Documentation
¶
Overview ¶
Package safesearch implements safesearch host matching.
Index ¶
Constants ¶
View Source
const ( LogPrefix = "safesearch" LogKeyClient = "client" )
Attribute keys and values for logging.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Default ¶ added in v0.107.28
type Default struct {
// contains filtered or unexported fields
}
Default is the default safe search filter that uses filtering rules with the dnsrewrite modifier.
func NewDefault ¶ added in v0.107.28
func NewDefault(ctx context.Context, conf *DefaultConfig) (ss *Default, err error)
NewDefault returns an initialized default safe search filter. ctx is used to log the initial refresh.
func (*Default) CheckHost ¶ added in v0.107.28
func (ss *Default) CheckHost( ctx context.Context, host string, qtype rules.RRType, ) (res filtering.Result, err error)
CheckHost implements the filtering.SafeSearch interface for *Default.
func (*Default) Update ¶ added in v0.107.28
Update implements the filtering.SafeSearch interface for *Default. Update ignores the CustomResolver and Enabled fields.
type DefaultConfig ¶ added in v0.107.54
type DefaultConfig struct {
// Logger is used for logging the operation of the safe search filter.
Logger *slog.Logger
// ClientName is the name of the persistent client associated with the safe
// search filter, if there is one.
ClientName string
// CacheSize is the size of the filter results cache.
CacheSize uint
// CacheTTL is the Time to Live duration for cached items.
CacheTTL time.Duration
// ServicesConfig contains safe search settings for services. It must not
// be nil.
ServicesConfig filtering.SafeSearchConfig
}
DefaultConfig is the configuration structure for Default.
Click to show internal directories.
Click to hide internal directories.