95 lines
2.2 KiB
Go
95 lines
2.2 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
// Route all logging
|
|
func systemRouteAllLogging(logfile string) {
|
|
nullFile, err := os.OpenFile(logfile, os.O_WRONLY, 0666)
|
|
if err != nil {
|
|
fmt.Println("Error opening /dev/null:", err)
|
|
return
|
|
}
|
|
|
|
// Redirect stdout and stderr to /dev/null
|
|
os.Stdout = nullFile
|
|
os.Stderr = nullFile
|
|
|
|
// Redirect log facility to /dev/null
|
|
log.SetOutput(nullFile)
|
|
}
|
|
|
|
func systemGetAppDataPath() string {
|
|
return filepath.Join(os.Getenv("USERPROFILE"), "AppData")
|
|
}
|
|
|
|
// systemCheckDirExists checks if the directory at the given path exists.
|
|
func systemIsDirExisting(path string) bool {
|
|
// Get file info
|
|
info, err := os.Stat(path)
|
|
if err != nil {
|
|
// If the error is due to the file not existing, return false
|
|
if os.IsNotExist(err) {
|
|
return false
|
|
}
|
|
// For any other errors, you may want to handle them as needed
|
|
return false
|
|
}
|
|
|
|
// Check if the info corresponds to a directory
|
|
return info.IsDir()
|
|
}
|
|
|
|
func systemIsFileExisting(path string) bool {
|
|
// Get file info
|
|
info, err := os.Stat(path)
|
|
if err != nil {
|
|
// If the error is due to the file not existing, return false
|
|
if os.IsNotExist(err) {
|
|
return false
|
|
}
|
|
// For any other errors, you may want to handle them as needed
|
|
return false
|
|
}
|
|
|
|
// Check if the info corresponds to a regular file
|
|
return !info.IsDir()
|
|
}
|
|
|
|
func systemGetWellKnownBinaryPaths() []string {
|
|
var existingPaths []string
|
|
|
|
appDataPath := systemGetAppDataPath()
|
|
if ok := systemIsDirExisting(appDataPath); !ok {
|
|
log.Println("\t❌", appDataPath)
|
|
}
|
|
|
|
wellKnownPathsToCheck := []string{
|
|
filepath.Join(appDataPath, "Local", "Programs", "Python"), // TODO search python installations
|
|
filepath.Join(appDataPath, "Roaming", "npm", "node_modules", "bin"), // TODO search python installations
|
|
}
|
|
|
|
homeDirectory, err := os.UserHomeDir()
|
|
if err == nil {
|
|
homeDirPathsToCheck := []string{
|
|
filepath.Join(homeDirectory, "go", "bin"),
|
|
}
|
|
wellKnownPathsToCheck = append(wellKnownPathsToCheck, homeDirPathsToCheck...)
|
|
}
|
|
|
|
for _, path := range wellKnownPathsToCheck {
|
|
if ok := systemIsDirExisting(path); ok {
|
|
existingPaths = append(existingPaths, path)
|
|
log.Println("\t✅", path)
|
|
} else {
|
|
log.Println("\t❌", path)
|
|
}
|
|
}
|
|
|
|
return existingPaths
|
|
}
|