clash/component/geodata/standard/standard.go

93 lines
2.3 KiB
Go
Raw Normal View History

2021-07-01 14:49:29 +00:00
package standard
import (
"fmt"
2021-10-27 16:06:55 +00:00
"io"
2021-07-01 14:49:29 +00:00
"os"
"strings"
"github.com/Dreamacro/clash/component/geodata"
"github.com/Dreamacro/clash/component/geodata/router"
2021-07-01 14:49:29 +00:00
C "github.com/Dreamacro/clash/constant"
2022-02-22 17:00:27 +00:00
2021-07-01 14:49:29 +00:00
"google.golang.org/protobuf/proto"
)
func ReadFile(path string) ([]byte, error) {
reader, err := os.Open(path)
if err != nil {
return nil, err
}
defer func(reader *os.File) {
_ = reader.Close()
}(reader)
2021-07-01 14:49:29 +00:00
2021-10-27 16:06:55 +00:00
return io.ReadAll(reader)
2021-07-01 14:49:29 +00:00
}
func ReadAsset(file string) ([]byte, error) {
return ReadFile(C.Path.GetAssetLocation(file))
}
2022-06-03 08:50:05 +00:00
func loadIP(geoipBytes []byte, country string) ([]*router.CIDR, error) {
2021-07-01 14:49:29 +00:00
var geoipList router.GeoIPList
if err := proto.Unmarshal(geoipBytes, &geoipList); err != nil {
return nil, err
}
for _, geoip := range geoipList.Entry {
if strings.EqualFold(geoip.CountryCode, country) {
return geoip.Cidr, nil
}
}
2022-06-03 08:50:05 +00:00
return nil, fmt.Errorf("country %s not found", country)
2021-07-01 14:49:29 +00:00
}
2022-06-03 08:50:05 +00:00
func loadSite(geositeBytes []byte, list string) ([]*router.Domain, error) {
2021-07-01 14:49:29 +00:00
var geositeList router.GeoSiteList
if err := proto.Unmarshal(geositeBytes, &geositeList); err != nil {
return nil, err
}
for _, site := range geositeList.Entry {
if strings.EqualFold(site.CountryCode, list) {
return site.Domain, nil
}
}
2022-06-03 08:50:05 +00:00
return nil, fmt.Errorf("list %s not found", list)
2021-07-01 14:49:29 +00:00
}
type standardLoader struct{}
2022-06-03 08:50:05 +00:00
func (d standardLoader) LoadSiteByPath(filename, list string) ([]*router.Domain, error) {
geositeBytes, err := ReadAsset(filename)
if err != nil {
return nil, fmt.Errorf("failed to open file: %s, base error: %s", filename, err.Error())
}
return loadSite(geositeBytes, list)
}
func (d standardLoader) LoadSiteByBytes(geositeBytes []byte, list string) ([]*router.Domain, error) {
return loadSite(geositeBytes, list)
}
func (d standardLoader) LoadIPByPath(filename, country string) ([]*router.CIDR, error) {
geoipBytes, err := ReadAsset(filename)
if err != nil {
return nil, fmt.Errorf("failed to open file: %s, base error: %s", filename, err.Error())
}
return loadIP(geoipBytes, country)
2021-07-01 14:49:29 +00:00
}
2022-06-03 08:50:05 +00:00
func (d standardLoader) LoadIPByBytes(geoipBytes []byte, country string) ([]*router.CIDR, error) {
return loadIP(geoipBytes, country)
2021-07-01 14:49:29 +00:00
}
func init() {
geodata.RegisterGeoDataLoaderImplementationCreator("standard", func() geodata.LoaderImplementation {
return standardLoader{}
})
}