clash/rules/geoip.go

55 lines
872 B
Go
Raw Normal View History

2018-06-10 14:50:03 +00:00
package rules
import (
2018-07-31 16:18:29 +00:00
"sync"
2018-06-10 14:50:03 +00:00
C "github.com/Dreamacro/clash/constant"
"github.com/oschwald/geoip2-golang"
log "github.com/sirupsen/logrus"
)
2018-07-31 16:18:29 +00:00
var (
mmdb *geoip2.Reader
once sync.Once
)
2018-06-10 14:50:03 +00:00
type GEOIP struct {
country string
adapter string
}
func (g *GEOIP) RuleType() C.RuleType {
return C.GEOIP
}
2018-09-30 04:25:52 +00:00
func (g *GEOIP) IsMatch(metadata *C.Metadata) bool {
if metadata.IP == nil {
2018-06-10 14:50:03 +00:00
return false
}
2018-09-30 04:25:52 +00:00
record, _ := mmdb.Country(*metadata.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
}
2018-06-10 14:50:03 +00:00
func NewGEOIP(country string, adapter string) *GEOIP {
2018-07-31 16:18:29 +00:00
once.Do(func() {
var err error
2018-10-14 13:22:58 +00:00
mmdb, err = geoip2.Open(C.Path.MMDB())
2018-07-31 16:18:29 +00:00
if err != nil {
log.Fatalf("Can't load mmdb: %s", err.Error())
}
})
2018-06-10 14:50:03 +00:00
return &GEOIP{
country: country,
adapter: adapter,
}
}