mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-07 20:31:41 +00:00
81 lines
2 KiB
Go
81 lines
2 KiB
Go
package standard
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"strings"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/Dreamacro/clash/rule/geodata"
|
|
"github.com/Dreamacro/clash/rule/geodata/router"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
func ReadFile(path string) ([]byte, error) {
|
|
reader, err := os.Open(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer reader.Close()
|
|
|
|
return ioutil.ReadAll(reader)
|
|
}
|
|
|
|
func ReadAsset(file string) ([]byte, error) {
|
|
return ReadFile(C.Path.GetAssetLocation(file))
|
|
}
|
|
|
|
func loadIP(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())
|
|
}
|
|
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
|
|
}
|
|
}
|
|
|
|
return nil, fmt.Errorf("country not found in %s%s%s", filename, ": ", country)
|
|
}
|
|
|
|
func loadSite(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())
|
|
}
|
|
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
|
|
}
|
|
}
|
|
|
|
return nil, fmt.Errorf("list not found in %s%s%s", filename, ": ", list)
|
|
}
|
|
|
|
type standardLoader struct{}
|
|
|
|
func (d standardLoader) LoadSite(filename, list string) ([]*router.Domain, error) {
|
|
return loadSite(filename, list)
|
|
}
|
|
|
|
func (d standardLoader) LoadIP(filename, country string) ([]*router.CIDR, error) {
|
|
return loadIP(filename, country)
|
|
}
|
|
|
|
func init() {
|
|
geodata.RegisterGeoDataLoaderImplementationCreator("standard", func() geodata.LoaderImplementation {
|
|
return standardLoader{}
|
|
})
|
|
}
|