Clash.Meta/constant/path.go

148 lines
2.7 KiB
Go
Raw Normal View History

2018-10-14 21:22:58 +08:00
package constant
import (
"os"
P "path"
"path/filepath"
2022-02-06 01:59:35 +08:00
"strings"
2018-10-14 21:22:58 +08:00
)
const Name = "clash"
2022-02-06 01:59:35 +08:00
var (
GeositeName = "GeoSite.dat"
GeoipName = "GeoIP.dat"
)
2018-10-14 21:22:58 +08:00
// Path is used to get the configuration path
var Path = func() *path {
homeDir, err := os.UserHomeDir()
2018-10-14 21:22:58 +08:00
if err != nil {
homeDir, _ = os.Getwd()
2018-10-14 21:22:58 +08:00
}
2019-02-27 01:02:43 +08:00
homeDir = P.Join(homeDir, ".config", Name)
return &path{homeDir: homeDir, configFile: "config.yaml"}
}()
type path struct {
homeDir string
configFile string
2018-10-14 21:22:58 +08:00
}
// SetHomeDir is used to set the configuration path
func SetHomeDir(root string) {
Path.homeDir = root
}
// SetConfig is used to set the configuration file
func SetConfig(file string) {
Path.configFile = file
2018-10-14 21:22:58 +08:00
}
func (p *path) HomeDir() string {
return p.homeDir
2018-10-14 21:22:58 +08:00
}
func (p *path) Config() string {
return p.configFile
2018-10-14 21:22:58 +08:00
}
2020-01-30 17:03:11 +08:00
// Resolve return a absolute path or a relative path with homedir
func (p *path) Resolve(path string) string {
if !filepath.IsAbs(path) {
return filepath.Join(p.HomeDir(), path)
}
return path
}
// IsSubPath return true if path is a subpath of homedir
func (p *path) IsSubPath(path string) bool {
homedir := p.HomeDir()
path = p.Resolve(path)
rel, err := filepath.Rel(homedir, path)
if err != nil {
return false
}
return !strings.Contains(rel, "..")
}
2018-10-14 21:22:58 +08:00
func (p *path) MMDB() string {
2022-08-11 23:56:50 +08:00
files, err := os.ReadDir(p.homeDir)
2022-03-15 01:30:17 +08:00
if err != nil {
return ""
}
for _, fi := range files {
if fi.IsDir() {
// 目录则直接跳过
continue
} else {
2023-03-29 14:03:13 +08:00
if strings.EqualFold(fi.Name(), "Country.mmdb") {
2022-03-15 01:30:17 +08:00
GeoipName = fi.Name()
return P.Join(p.homeDir, fi.Name())
}
}
}
return P.Join(p.homeDir, "Country.mmdb")
2018-10-14 21:22:58 +08:00
}
2021-10-04 19:20:11 +08:00
func (p *path) OldCache() string {
return P.Join(p.homeDir, ".cache")
}
2021-10-04 19:20:11 +08:00
func (p *path) Cache() string {
return P.Join(p.homeDir, "cache.db")
}
2021-11-17 16:03:47 +08:00
func (p *path) GeoIP() string {
2022-08-11 23:56:50 +08:00
files, err := os.ReadDir(p.homeDir)
2022-02-06 01:59:35 +08:00
if err != nil {
return ""
}
for _, fi := range files {
if fi.IsDir() {
// 目录则直接跳过
continue
} else {
2023-03-29 14:03:13 +08:00
if strings.EqualFold(fi.Name(), "GeoIP.dat") {
2022-02-06 01:59:35 +08:00
GeoipName = fi.Name()
return P.Join(p.homeDir, fi.Name())
}
}
}
return P.Join(p.homeDir, "GeoIP.dat")
2021-11-17 16:03:47 +08:00
}
func (p *path) GeoSite() string {
2022-08-11 23:56:50 +08:00
files, err := os.ReadDir(p.homeDir)
2022-02-06 01:59:35 +08:00
if err != nil {
return ""
}
for _, fi := range files {
if fi.IsDir() {
// 目录则直接跳过
continue
} else {
2023-03-29 14:03:13 +08:00
if strings.EqualFold(fi.Name(), "GeoSite.dat") {
2022-02-06 01:59:35 +08:00
GeositeName = fi.Name()
return P.Join(p.homeDir, fi.Name())
}
}
}
return P.Join(p.homeDir, "GeoSite.dat")
2021-11-17 16:03:47 +08:00
}
func (p *path) GetAssetLocation(file string) string {
return P.Join(p.homeDir, file)
}
func (p *path) GetExecutableFullPath() string {
exePath, err := os.Executable()
if err != nil {
return "clash"
}
res, _ := filepath.EvalSymlinks(exePath)
return res
}