2021-09-20 16:00:55 +03:00
|
|
|
//go:build !windows
|
2020-11-25 13:01:53 +02:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package platform
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
|
|
|
func ExpandEnv(s string) string {
|
|
|
|
return os.ExpandEnv(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func LineSeparator() string {
|
|
|
|
return "\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetToolLocation(file string) string {
|
|
|
|
const name = "xray.location.tool"
|
|
|
|
toolPath := EnvFlag{Name: name, AltName: NormalizeEnvName(name)}.GetValue(getExecutableDir)
|
|
|
|
return filepath.Join(toolPath, file)
|
|
|
|
}
|
|
|
|
|
2022-01-13 04:51:47 +02:00
|
|
|
// GetAssetLocation searches for `file` in certain locations
|
2020-11-25 13:01:53 +02:00
|
|
|
func GetAssetLocation(file string) string {
|
|
|
|
const name = "xray.location.asset"
|
|
|
|
assetPath := NewEnvFlag(name).GetValue(getExecutableDir)
|
|
|
|
defPath := filepath.Join(assetPath, file)
|
|
|
|
for _, p := range []string{
|
|
|
|
defPath,
|
|
|
|
filepath.Join("/usr/local/share/xray/", file),
|
|
|
|
filepath.Join("/usr/share/xray/", file),
|
2021-02-27 17:09:44 +02:00
|
|
|
filepath.Join("/opt/share/xray/", file),
|
2020-11-25 13:01:53 +02:00
|
|
|
} {
|
|
|
|
if _, err := os.Stat(p); os.IsNotExist(err) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// asset found
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
// asset not found, let the caller throw out the error
|
|
|
|
return defPath
|
|
|
|
}
|