clash/rules/geoip.go

48 lines
815 B
Go
Raw Normal View History

2018-06-10 14:50:03 +00:00
package rules
import (
2020-01-11 13:07:01 +00:00
"github.com/Dreamacro/clash/component/mmdb"
2018-06-10 14:50:03 +00:00
C "github.com/Dreamacro/clash/constant"
2018-07-31 16:18:29 +00:00
)
2018-06-10 14:50:03 +00:00
type GEOIP struct {
country string
adapter string
noResolveIP bool
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
}
2020-01-11 13:07:01 +00:00
record, _ := mmdb.Instance().Country(ip)
2018-06-10 14:50:03 +00:00
return record.Country.IsoCode == g.country
}
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
}
func NewGEOIP(country string, adapter string, noResolveIP bool) *GEOIP {
geoip := &GEOIP{
country: country,
adapter: adapter,
noResolveIP: noResolveIP,
2018-06-10 14:50:03 +00:00
}
return geoip
2018-06-10 14:50:03 +00:00
}