Clash.Meta/rule/common/geosite.go

125 lines
2.7 KiB
Go
Raw Normal View History

package common
2021-11-17 16:03:47 +08:00
import (
"fmt"
2022-05-30 21:26:41 +08:00
"io"
"net/http"
"os"
2021-11-17 16:03:47 +08:00
"github.com/Dreamacro/clash/component/geodata"
"github.com/Dreamacro/clash/component/geodata/router"
C "github.com/Dreamacro/clash/constant"
"github.com/Dreamacro/clash/log"
_ "github.com/Dreamacro/clash/component/geodata/memconservative"
2021-11-17 16:03:47 +08:00
_ "github.com/Dreamacro/clash/component/geodata/standard"
)
type GEOSITE struct {
2022-03-13 01:21:23 +08:00
*Base
2022-05-17 16:47:21 +08:00
country string
adapter string
matcher *router.DomainMatcher
recodeSize int
2021-11-17 16:03:47 +08:00
}
func (gs *GEOSITE) RuleType() C.RuleType {
return C.GEOSITE
}
func (gs *GEOSITE) Match(metadata *C.Metadata) bool {
if metadata.AddrType != C.AtypDomainName {
return false
}
domain := metadata.Host
return gs.matcher.ApplyDomain(domain)
}
func (gs *GEOSITE) Adapter() string {
return gs.adapter
}
func (gs *GEOSITE) Payload() string {
return gs.country
}
func (gs *GEOSITE) GetDomainMatcher() *router.DomainMatcher {
return gs.matcher
}
2022-05-17 16:47:21 +08:00
func (gs *GEOSITE) GetRecodeSize() int {
return gs.recodeSize
}
2022-03-17 23:24:07 +08:00
func NewGEOSITE(country string, adapter string) (*GEOSITE, error) {
2022-05-30 21:26:41 +08:00
if !initFlag {
if err := initGeoSite(); err != nil {
log.Errorln("can't initial GeoSite: %s", err)
return nil, err
}
initFlag = true
}
2022-05-17 16:47:21 +08:00
matcher, size, err := geodata.LoadGeoSiteMatcher(country)
2021-11-17 16:03:47 +08:00
if err != nil {
return nil, fmt.Errorf("load GeoSite data error, %s", err.Error())
}
2022-05-17 16:47:21 +08:00
log.Infoln("Start initial GeoSite rule %s => %s, records: %d", country, adapter, size)
2021-11-17 16:03:47 +08:00
geoSite := &GEOSITE{
2022-05-17 16:47:21 +08:00
Base: &Base{},
country: country,
adapter: adapter,
matcher: matcher,
recodeSize: size,
2021-11-17 16:03:47 +08:00
}
return geoSite, nil
}
2022-03-13 01:21:23 +08:00
var _ C.Rule = (*GEOSITE)(nil)
2022-05-30 21:26:41 +08:00
func downloadGeoSite(path string) (err error) {
resp, err := http.Get(C.GeoSiteUrl)
if err != nil {
return
}
defer resp.Body.Close()
f, err := os.OpenFile(path, os.O_CREATE|os.O_WRONLY, 0o644)
if err != nil {
return err
}
defer f.Close()
_, err = io.Copy(f, resp.Body)
return err
}
func initGeoSite() error {
if _, err := os.Stat(C.Path.GeoSite()); os.IsNotExist(err) {
log.Infoln("Can't find GeoSite.dat, start download")
if err := downloadGeoSite(C.Path.GeoSite()); err != nil {
return fmt.Errorf("can't download GeoSite.dat: %s", err.Error())
}
log.Infoln("Download GeoSite.dat finish")
}
if !initFlag {
err := geodata.Verify(C.GeositeName)
if err != nil {
log.Warnln("GeoSite.dat invalid, remove and download: %s", err)
if err := os.Remove(C.Path.GeoSite()); err != nil {
return fmt.Errorf("can't remove invalid GeoSite.dat: %s", err.Error())
}
if err := downloadGeoSite(C.Path.GeoSite()); err != nil {
return fmt.Errorf("can't download GeoSite.dat: %s", err.Error())
}
} else {
initFlag = true
}
}
return nil
}