clash/rule/geoip.go

87 lines
1.8 KiB
Go
Raw Normal View History

2018-06-10 14:50:03 +00:00
package rules
import (
2021-07-01 14:49:29 +00:00
"fmt"
"strings"
2018-06-10 14:50:03 +00:00
C "github.com/Dreamacro/clash/constant"
2021-07-01 14:49:29 +00:00
"github.com/Dreamacro/clash/log"
"github.com/Dreamacro/clash/rule/geodata"
"github.com/Dreamacro/clash/rule/geodata/router"
_ "github.com/Dreamacro/clash/rule/geodata/standard"
2018-07-31 16:18:29 +00:00
)
2018-06-10 14:50:03 +00:00
type GEOIP struct {
2021-07-01 14:49:29 +00:00
country string
adapter string
noResolveIP bool
network C.NetWork
geoIPMatcher *router.GeoIPMatcher
2018-06-10 14:50:03 +00:00
}
func (g *GEOIP) RuleType() C.RuleType {
return C.GEOIP
}
func (g *GEOIP) Match(metadata *C.Metadata) bool {
ip := metadata.DstIP
if ip == nil {
2018-06-10 14:50:03 +00:00
return false
}
2021-07-01 14:49:29 +00:00
return g.geoIPMatcher.Match(ip)
2018-06-10 14:50:03 +00:00
}
func (g *GEOIP) Adapter() string {
return g.adapter
}
2018-06-20 14:41:02 +00:00
func (g *GEOIP) Payload() string {
return g.country
}
func (g *GEOIP) ShouldResolveIP() bool {
return !g.noResolveIP
}
2021-07-01 14:49:29 +00:00
func (g *GEOIP) NetWork() C.NetWork {
return g.network
}
func NewGEOIP(country string, adapter string, noResolveIP bool, network C.NetWork) (*GEOIP, error) {
geoLoaderName := "standard"
//geoLoaderName := "memconservative"
geoLoader, err := geodata.GetGeoDataLoader(geoLoaderName)
if err != nil {
return nil, fmt.Errorf("[GeoIP] %s", err.Error())
}
records, err := geoLoader.LoadGeoIP(strings.ReplaceAll(country, "!", ""))
if err != nil {
return nil, fmt.Errorf("[GeoIP] %s", err.Error())
}
geoIP := &router.GeoIP{
CountryCode: country,
Cidr: records,
ReverseMatch: strings.Contains(country, "!"),
}
geoIPMatcher, err := router.NewGeoIPMatcher(geoIP)
if err != nil {
return nil, fmt.Errorf("[GeoIP] %s", err.Error())
}
log.Infoln("Start initial GeoIP rule %s => %s, records: %d", country, adapter, len(records))
geoip := &GEOIP{
2021-07-01 14:49:29 +00:00
country: country,
adapter: adapter,
noResolveIP: noResolveIP,
network: network,
geoIPMatcher: geoIPMatcher,
2018-06-10 14:50:03 +00:00
}
2021-07-01 14:49:29 +00:00
return geoip, nil
2018-06-10 14:50:03 +00:00
}