2018-06-10 22:50:03 +08:00
|
|
|
package rules
|
|
|
|
|
|
|
|
import (
|
2020-01-11 21:07:01 +08:00
|
|
|
"github.com/Dreamacro/clash/component/mmdb"
|
2018-06-10 22:50:03 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2018-08-01 00:18:29 +08:00
|
|
|
)
|
2018-06-10 22:50:03 +08:00
|
|
|
|
|
|
|
type GEOIP struct {
|
2019-10-28 00:02:23 +08:00
|
|
|
country string
|
|
|
|
adapter string
|
|
|
|
noResolveIP bool
|
2018-06-10 22:50:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GEOIP) RuleType() C.RuleType {
|
|
|
|
return C.GEOIP
|
|
|
|
}
|
|
|
|
|
2019-10-28 00:02:23 +08:00
|
|
|
func (g *GEOIP) Match(metadata *C.Metadata) bool {
|
|
|
|
ip := metadata.DstIP
|
|
|
|
if ip == nil {
|
2018-06-10 22:50:03 +08:00
|
|
|
return false
|
|
|
|
}
|
2020-01-11 21:07:01 +08:00
|
|
|
record, _ := mmdb.Instance().Country(ip)
|
2018-06-10 22:50:03 +08:00
|
|
|
return record.Country.IsoCode == g.country
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GEOIP) Adapter() string {
|
|
|
|
return g.adapter
|
|
|
|
}
|
|
|
|
|
2018-06-20 22:41:02 +08:00
|
|
|
func (g *GEOIP) Payload() string {
|
|
|
|
return g.country
|
|
|
|
}
|
|
|
|
|
2020-07-27 11:57:55 +08:00
|
|
|
func (g *GEOIP) ShouldResolveIP() bool {
|
|
|
|
return !g.noResolveIP
|
2019-10-28 00:02:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewGEOIP(country string, adapter string, noResolveIP bool) *GEOIP {
|
|
|
|
geoip := &GEOIP{
|
|
|
|
country: country,
|
|
|
|
adapter: adapter,
|
|
|
|
noResolveIP: noResolveIP,
|
2018-06-10 22:50:03 +08:00
|
|
|
}
|
2019-10-28 00:02:23 +08:00
|
|
|
|
|
|
|
return geoip
|
2018-06-10 22:50:03 +08:00
|
|
|
}
|