2015-02-06 10:18:49 -08:00
|
|
|
package homedir
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"runtime"
|
2015-03-10 09:55:55 -04:00
|
|
|
|
2015-07-16 16:00:55 -07:00
|
|
|
"github.com/opencontainers/runc/libcontainer/user"
|
2015-02-06 10:18:49 -08:00
|
|
|
)
|
|
|
|
|
2015-02-06 14:17:34 -08:00
|
|
|
// Key returns the env var name for the user's home dir based on
|
|
|
|
// the platform being run on
|
|
|
|
func Key() string {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return "USERPROFILE"
|
|
|
|
}
|
|
|
|
return "HOME"
|
|
|
|
}
|
|
|
|
|
2015-02-06 10:18:49 -08:00
|
|
|
// Get returns the home directory of the current user with the help of
|
|
|
|
// environment variables depending on the target operating system.
|
|
|
|
// Returned path should be used with "path/filepath" to form new paths.
|
|
|
|
func Get() string {
|
2015-03-10 09:55:55 -04:00
|
|
|
home := os.Getenv(Key())
|
|
|
|
if home == "" && runtime.GOOS != "windows" {
|
|
|
|
if u, err := user.CurrentUser(); err == nil {
|
|
|
|
return u.Home
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return home
|
2015-02-06 10:18:49 -08:00
|
|
|
}
|
2015-02-18 22:53:04 -08:00
|
|
|
|
|
|
|
// GetShortcutString returns the string that is shortcut to user's home directory
|
|
|
|
// in the native shell of the platform running on.
|
|
|
|
func GetShortcutString() string {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return "%USERPROFILE%" // be careful while using in format functions
|
|
|
|
}
|
|
|
|
return "~"
|
|
|
|
}
|