mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-21 20:45:33 +03:00
0e5e8e4dde
Squashed commit of the following: commit 9dc0d489601764003adc2d7c4ae73c45c9d07bba Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Jul 3 14:23:03 2024 +0300 client: fix some locales commit a130e205509cbd423c9c9793824a84b550cee0e5 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Jul 3 14:09:09 2024 +0300 client: upd translations commit aeccb20b6172fb019cee8820a9087a573a4fbacf Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Jul 3 14:04:12 2024 +0300 all: upd services, trackers commit f6a7f34e17b89f22fcfaed5001c256f12653663b Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Jul 3 13:32:55 2024 +0300 all: imp fmt commit e8b561175c0bfd6415dcb97c98400543906fb097 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Jul 3 13:27:47 2024 +0300 all: add linebreak commit 2b28fa107bf43eb3b7a1878716fb5cc0ec2204d2 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Jul 3 13:17:30 2024 +0300 all: upd go |
||
---|---|---|
.. | ||
hashprefix | ||
rewrite | ||
rulelist | ||
safesearch | ||
tests | ||
blocked.go | ||
dnsrewrite.go | ||
dnsrewrite_test.go | ||
filter.go | ||
filter_test.go | ||
filtering.go | ||
filtering_test.go | ||
hosts.go | ||
hosts_test.go | ||
http.go | ||
http_test.go | ||
idgenerator.go | ||
idgenerator_internal_test.go | ||
README.md | ||
rewritehttp.go | ||
rewritehttp_test.go | ||
rewrites.go | ||
rewrites_test.go | ||
safesearch.go | ||
safesearchhttp.go | ||
servicelist.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)
}
}