2021-05-21 16:15:47 +03:00
|
|
|
package filtering
|
2018-08-30 17:25:33 +03:00
|
|
|
|
2024-10-09 16:31:03 +03:00
|
|
|
import "context"
|
|
|
|
|
2023-03-07 17:52:03 +03:00
|
|
|
// SafeSearch interface describes a service for search engines hosts rewrites.
|
|
|
|
type SafeSearch interface {
|
2023-04-06 14:12:50 +03:00
|
|
|
// CheckHost checks host with safe search filter. CheckHost must be safe
|
|
|
|
// for concurrent use. qtype must be either [dns.TypeA] or [dns.TypeAAAA].
|
2024-10-09 16:31:03 +03:00
|
|
|
CheckHost(ctx context.Context, host string, qtype uint16) (res Result, err error)
|
2023-04-06 14:12:50 +03:00
|
|
|
|
|
|
|
// Update updates the configuration of the safe search filter. Update must
|
|
|
|
// be safe for concurrent use. An implementation of Update may ignore some
|
|
|
|
// fields, but it must document which.
|
2024-10-09 16:31:03 +03:00
|
|
|
Update(ctx context.Context, conf SafeSearchConfig) (err error)
|
2023-03-07 17:52:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// SafeSearchConfig is a struct with safe search related settings.
|
|
|
|
type SafeSearchConfig struct {
|
|
|
|
// Enabled indicates if safe search is enabled entirely.
|
|
|
|
Enabled bool `yaml:"enabled" json:"enabled"`
|
|
|
|
|
|
|
|
// Services flags. Each flag indicates if the corresponding service is
|
|
|
|
// enabled or disabled.
|
|
|
|
|
|
|
|
Bing bool `yaml:"bing" json:"bing"`
|
|
|
|
DuckDuckGo bool `yaml:"duckduckgo" json:"duckduckgo"`
|
2024-08-02 09:10:19 +03:00
|
|
|
Ecosia bool `yaml:"ecosia" json:"ecosia"`
|
2023-03-07 17:52:03 +03:00
|
|
|
Google bool `yaml:"google" json:"google"`
|
|
|
|
Pixabay bool `yaml:"pixabay" json:"pixabay"`
|
|
|
|
Yandex bool `yaml:"yandex" json:"yandex"`
|
|
|
|
YouTube bool `yaml:"youtube" json:"youtube"`
|
|
|
|
}
|
|
|
|
|
2023-03-15 14:31:07 +03:00
|
|
|
// checkSafeSearch checks host with safe search engine. Matches
|
|
|
|
// [hostChecker.check].
|
2021-03-25 20:30:30 +03:00
|
|
|
func (d *DNSFilter) checkSafeSearch(
|
|
|
|
host string,
|
2023-04-06 14:12:50 +03:00
|
|
|
qtype uint16,
|
2021-05-21 16:15:47 +03:00
|
|
|
setts *Settings,
|
2021-03-25 20:30:30 +03:00
|
|
|
) (res Result, err error) {
|
2024-04-22 10:48:26 +03:00
|
|
|
if d.safeSearch == nil || !setts.ProtectionEnabled || !setts.SafeSearchEnabled {
|
2020-12-07 15:38:05 +03:00
|
|
|
return Result{}, nil
|
|
|
|
}
|
|
|
|
|
2024-10-09 16:31:03 +03:00
|
|
|
// TODO(s.chzhen): Pass context.
|
|
|
|
ctx := context.TODO()
|
|
|
|
|
2023-03-15 14:31:07 +03:00
|
|
|
clientSafeSearch := setts.ClientSafeSearch
|
|
|
|
if clientSafeSearch != nil {
|
2024-10-09 16:31:03 +03:00
|
|
|
return clientSafeSearch.CheckHost(ctx, host, qtype)
|
2020-12-07 15:38:05 +03:00
|
|
|
}
|
|
|
|
|
2024-10-09 16:31:03 +03:00
|
|
|
return d.safeSearch.CheckHost(ctx, host, qtype)
|
2018-08-30 17:25:33 +03:00
|
|
|
}
|