oh-my-posh/src/environment.go

255 lines
5.3 KiB
Go
Raw Normal View History

2019-03-13 04:14:30 -07:00
package main
import (
"context"
2020-10-07 04:32:42 -07:00
"io/ioutil"
"net/http"
2019-03-13 04:14:30 -07:00
"os"
"os/exec"
2020-10-01 11:57:02 -07:00
"path/filepath"
2019-03-13 04:14:30 -07:00
"runtime"
"strings"
"time"
2019-03-13 04:14:30 -07:00
"github.com/distatus/battery"
2020-10-21 19:49:14 -07:00
"github.com/shirou/gopsutil/host"
2020-10-23 07:36:40 -07:00
"github.com/shirou/gopsutil/process"
2019-03-13 04:14:30 -07:00
)
const (
unknown = "unknown"
windowsPlatform = "windows"
)
type commandError struct {
err string
exitCode int
}
func (e *commandError) Error() string {
return e.err
}
2019-03-13 04:14:30 -07:00
type environmentInfo interface {
getenv(key string) string
getcwd() string
homeDir() string
2020-10-01 11:57:02 -07:00
hasFiles(pattern string) bool
hasFilesInDir(dir, pattern string) bool
2020-10-07 04:32:42 -07:00
hasFolder(folder string) bool
getFileContent(file string) string
2019-03-13 04:14:30 -07:00
getPathSeperator() string
getCurrentUser() string
2019-03-13 04:14:30 -07:00
isRunningAsRoot() bool
getHostName() (string, error)
getRuntimeGOOS() string
2020-10-21 19:49:14 -07:00
getPlatform() string
hasCommand(command string) bool
runCommand(command string, args ...string) (string, error)
runShellCommand(shell, command string) string
2019-03-13 04:14:30 -07:00
lastErrorCode() int
2020-12-06 13:03:40 -08:00
executionTime() float64
2019-03-13 04:14:30 -07:00
getArgs() *args
getBatteryInfo() (*battery.Battery, error)
2020-09-24 10:11:56 -07:00
getShellName() string
getWindowTitle(imageName, windowTitleRegex string) (string, error)
doGet(url string) ([]byte, error)
2019-03-13 04:14:30 -07:00
}
type environment struct {
args *args
cwd string
commands map[string]string
}
2019-03-13 04:14:30 -07:00
func (env *environment) getenv(key string) string {
return os.Getenv(key)
}
func (env *environment) getcwd() string {
2020-10-12 00:04:37 -07:00
if env.cwd != "" {
return env.cwd
}
correctPath := func(pwd string) string {
// on Windows, and being case sentisitive and not consistent and all, this gives silly issues
return strings.Replace(pwd, "c:", "C:", 1)
}
2020-10-10 10:16:58 -07:00
if env.args != nil && *env.args.PWD != "" {
2020-10-12 00:04:37 -07:00
env.cwd = correctPath(*env.args.PWD)
return env.cwd
}
dir, err := os.Getwd()
if err != nil {
return ""
}
2020-10-12 00:04:37 -07:00
env.cwd = correctPath(dir)
return env.cwd
}
2020-10-01 11:57:02 -07:00
func (env *environment) hasFiles(pattern string) bool {
cwd := env.getcwd()
2020-10-01 11:57:02 -07:00
pattern = cwd + env.getPathSeperator() + pattern
matches, err := filepath.Glob(pattern)
if err != nil {
return false
}
return len(matches) > 0
}
func (env *environment) hasFilesInDir(dir, pattern string) bool {
pattern = dir + env.getPathSeperator() + pattern
matches, err := filepath.Glob(pattern)
if err != nil {
return false
}
return len(matches) > 0
}
2020-10-07 04:32:42 -07:00
func (env *environment) hasFolder(folder string) bool {
_, err := os.Stat(folder)
return !os.IsNotExist(err)
}
func (env *environment) getFileContent(file string) string {
content, err := ioutil.ReadFile(file)
if err != nil {
return ""
}
return string(content)
}
2019-03-13 04:14:30 -07:00
func (env *environment) getPathSeperator() string {
return string(os.PathSeparator)
}
func (env *environment) getCurrentUser() string {
user := os.Getenv("USER")
if user == "" {
user = os.Getenv("USERNAME")
}
return user
2019-03-13 04:14:30 -07:00
}
func (env *environment) getHostName() (string, error) {
hostName, err := os.Hostname()
if err != nil {
return "", err
}
return cleanHostName(hostName), nil
}
func (env *environment) getRuntimeGOOS() string {
return runtime.GOOS
}
2020-10-21 19:49:14 -07:00
func (env *environment) getPlatform() string {
if runtime.GOOS == windowsPlatform {
return windowsPlatform
2020-10-21 19:49:14 -07:00
}
p, _, _, _ := host.PlatformInformation()
return p
}
func (env *environment) runCommand(command string, args ...string) (string, error) {
if cmd, ok := env.commands[command]; ok {
command = cmd
}
2021-01-05 03:24:25 -08:00
out, err := exec.Command(command, args...).Output()
if err != nil {
2021-01-05 03:24:25 -08:00
return "", err
2020-11-19 00:02:51 -08:00
}
2021-01-05 03:24:25 -08:00
return strings.TrimSpace(string(out)), nil
2019-03-13 04:14:30 -07:00
}
func (env *environment) runShellCommand(shell, command string) string {
out, _ := env.runCommand(shell, "-c", command)
return out
2019-03-13 04:14:30 -07:00
}
func (env *environment) hasCommand(command string) bool {
if _, ok := env.commands[command]; ok {
return true
}
path, err := exec.LookPath(command)
if err == nil {
env.commands[command] = path
return true
}
return false
2019-03-13 04:14:30 -07:00
}
func (env *environment) lastErrorCode() int {
return *env.args.ErrorCode
}
2020-12-06 13:03:40 -08:00
func (env *environment) executionTime() float64 {
if *env.args.ExecutionTime < 0 {
return 0
}
2020-12-06 13:03:40 -08:00
return *env.args.ExecutionTime
}
2019-03-13 04:14:30 -07:00
func (env *environment) getArgs() *args {
return env.args
}
func (env *environment) getBatteryInfo() (*battery.Battery, error) {
return battery.Get(0)
}
2020-09-24 10:11:56 -07:00
func (env *environment) getShellName() string {
2020-12-27 05:59:40 -08:00
if *env.args.Shell != "" {
return *env.args.Shell
}
2020-09-15 04:44:53 -07:00
pid := os.Getppid()
2020-10-23 07:36:40 -07:00
p, _ := process.NewProcess(int32(pid))
name, err := p.Name()
2020-09-24 10:11:56 -07:00
if err != nil {
return unknown
2020-09-24 10:11:56 -07:00
}
if name == "cmd.exe" {
p, _ = p.Parent()
name, err = p.Name()
}
if err != nil {
return unknown
}
// Cache the shell value to speed things up.
*env.args.Shell = strings.Trim(strings.Replace(name, ".exe", "", 1), " ")
return *env.args.Shell
2020-09-15 04:44:53 -07:00
}
func (env *environment) doGet(url string) ([]byte, error) {
ctx, cncl := context.WithTimeout(context.Background(), time.Millisecond*20)
defer cncl()
request, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
if err != nil {
return nil, err
}
response, err := client.Do(request)
if err != nil {
return nil, err
}
defer response.Body.Close()
body, err := ioutil.ReadAll(response.Body)
if err != nil {
return nil, err
}
return body, nil
}
2019-03-13 04:14:30 -07:00
func cleanHostName(hostName string) string {
garbage := []string{
".lan",
".local",
".localdomain",
2019-03-13 04:14:30 -07:00
}
for _, g := range garbage {
if strings.HasSuffix(hostName, g) {
hostName = strings.Replace(hostName, g, "", 1)
}
2019-03-13 04:14:30 -07:00
}
return hostName
}