clash/rule/common/geosite.go

72 lines
1.4 KiB
Go
Raw Normal View History

package common
2021-11-17 08:03:47 +00:00
import (
"fmt"
"github.com/Dreamacro/clash/component/geodata"
"github.com/Dreamacro/clash/component/geodata/router"
C "github.com/Dreamacro/clash/constant"
"github.com/Dreamacro/clash/log"
_ "github.com/Dreamacro/clash/component/geodata/memconservative"
2021-11-17 08:03:47 +00:00
_ "github.com/Dreamacro/clash/component/geodata/standard"
)
type GEOSITE struct {
2022-03-12 17:21:23 +00:00
*Base
2022-05-17 08:47:21 +00:00
country string
adapter string
matcher *router.DomainMatcher
recodeSize int
2021-11-17 08:03:47 +00:00
}
func (gs *GEOSITE) RuleType() C.RuleType {
return C.GEOSITE
}
func (gs *GEOSITE) Match(metadata *C.Metadata) bool {
if metadata.AddrType != C.AtypDomainName {
return false
}
domain := metadata.Host
return gs.matcher.ApplyDomain(domain)
}
func (gs *GEOSITE) Adapter() string {
return gs.adapter
}
func (gs *GEOSITE) Payload() string {
return gs.country
}
func (gs *GEOSITE) GetDomainMatcher() *router.DomainMatcher {
return gs.matcher
}
2022-05-17 08:47:21 +00:00
func (gs *GEOSITE) GetRecodeSize() int {
return gs.recodeSize
}
2022-03-17 15:24:07 +00:00
func NewGEOSITE(country string, adapter string) (*GEOSITE, error) {
2022-05-17 08:47:21 +00:00
matcher, size, err := geodata.LoadGeoSiteMatcher(country)
2021-11-17 08:03:47 +00:00
if err != nil {
return nil, fmt.Errorf("load GeoSite data error, %s", err.Error())
}
2022-05-17 08:47:21 +00:00
log.Infoln("Start initial GeoSite rule %s => %s, records: %d", country, adapter, size)
2021-11-17 08:03:47 +00:00
geoSite := &GEOSITE{
2022-05-17 08:47:21 +00:00
Base: &Base{},
country: country,
adapter: adapter,
matcher: matcher,
recodeSize: size,
2021-11-17 08:03:47 +00:00
}
return geoSite, nil
}
2022-03-12 17:21:23 +00:00
var _ C.Rule = (*GEOSITE)(nil)