mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 21:15:35 +03:00
eeda06f9b0
Updates #3564. Squashed commit of the following: commit dafb26d9c0a85f30fb06627411f653e160d38cc8 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Sep 8 12:13:43 2021 +0300 client: fix 9gag spelling commit a6aa44853061839e427836fe2daf69605cc90d33 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Sep 8 12:07:59 2021 +0300 all: chlog commit d46b17c079584946b857b63296a11acd6d524346 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Sep 8 12:01:41 2021 +0300 filtering: fix 9gag blocked service |
||
---|---|---|
.. | ||
tests | ||
blocked.go | ||
blocked_test.go | ||
dnsrewrite.go | ||
dnsrewrite_test.go | ||
filtering.go | ||
filtering_test.go | ||
README.md | ||
rewrites.go | ||
rewrites_test.go | ||
safebrowsing.go | ||
safebrowsing_test.go | ||
safesearch.go |
AdGuard Home's DNS filtering go library
Example use:
[ -z "$GOPATH" ] && export GOPATH=$HOME/go
go get -d github.com/AdguardTeam/AdGuardHome/filtering
Create file filter.go
package main
import (
"github.com/AdguardTeam/AdGuardHome/filtering"
"log"
)
func main() {
filter := filtering.New()
filter.AddRule("||dou*ck.net^")
host := "www.doubleclick.net"
res, err := filter.CheckHost(host)
if err != nil {
// temporary failure
log.Fatalf("Failed to check host %q: %s", host, err)
}
if res.IsFiltered {
log.Printf("Host %s is filtered, reason - %q, matched rule: %q", host, res.Reason, res.Rule)
} else {
log.Printf("Host %s is not filtered, reason - %q", host, res.Reason)
}
}
And then run it:
go run filter.go
You will get:
2000/01/01 00:00:00 Host www.doubleclick.net is filtered, reason - 'FilteredBlackList', matched rule: '||dou*ck.net^'
You can also enable checking against AdGuard's SafeBrowsing:
package main
import (
"github.com/AdguardTeam/AdGuardHome/filtering"
"log"
)
func main() {
filter := filtering.New()
filter.EnableSafeBrowsing()
host := "wmconvirus.narod.ru" // hostname for testing safebrowsing
res, err := filter.CheckHost(host)
if err != nil {
// temporary failure
log.Fatalf("Failed to check host %q: %s", host, err)
}
if res.IsFiltered {
log.Printf("Host %s is filtered, reason - %q, matched rule: %q", host, res.Reason, res.Rule)
} else {
log.Printf("Host %s is not filtered, reason - %q", host, res.Reason)
}
}