mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
52 lines
868 B
Go
52 lines
868 B
Go
package rules
|
|
|
|
import (
|
|
"github.com/Dreamacro/clash/component/mmdb"
|
|
C "github.com/Dreamacro/clash/constant"
|
|
)
|
|
|
|
type GEOIP struct {
|
|
country string
|
|
adapter string
|
|
noResolveIP bool
|
|
}
|
|
|
|
func (g *GEOIP) RuleType() C.RuleType {
|
|
return C.GEOIP
|
|
}
|
|
|
|
func (g *GEOIP) Match(metadata *C.Metadata) bool {
|
|
ip := metadata.DstIP
|
|
if ip == nil {
|
|
return false
|
|
}
|
|
|
|
if g.country == "LAN" {
|
|
return ip.IsPrivate()
|
|
}
|
|
record, _ := mmdb.Instance().Country(ip)
|
|
return record.Country.IsoCode == g.country
|
|
}
|
|
|
|
func (g *GEOIP) Adapter() string {
|
|
return g.adapter
|
|
}
|
|
|
|
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,
|
|
}
|
|
|
|
return geoip
|
|
}
|