mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 04:54:03 -08:00
5844faa54d
New segment for .NET SDK version (or unsupported version) display. Includes update for handling command execution errors so segments can act differently based on exit codes. Using a custom error type to make it testable rather than passing the OS error directly to the segment.
187 lines
3.8 KiB
Go
Executable file
187 lines
3.8 KiB
Go
Executable file
package main
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strings"
|
|
|
|
"github.com/distatus/battery"
|
|
ps "github.com/mitchellh/go-ps"
|
|
)
|
|
|
|
type environmentInfo interface {
|
|
getenv(key string) string
|
|
getcwd() string
|
|
homeDir() string
|
|
hasFiles(pattern string) bool
|
|
hasFolder(folder string) bool
|
|
getFileContent(file string) string
|
|
getPathSeperator() string
|
|
getCurrentUser() string
|
|
isRunningAsRoot() bool
|
|
getHostName() (string, error)
|
|
getRuntimeGOOS() string
|
|
hasCommand(command string) bool
|
|
runCommand(command string, args ...string) (string, error)
|
|
runShellCommand(shell string, command string) string
|
|
lastErrorCode() int
|
|
getArgs() *args
|
|
getBatteryInfo() (*battery.Battery, error)
|
|
getShellName() string
|
|
}
|
|
|
|
type environment struct {
|
|
args *args
|
|
cwd string
|
|
}
|
|
|
|
type commandError struct {
|
|
exitCode int
|
|
}
|
|
|
|
func (e *commandError) Error() string {
|
|
return fmt.Sprintf("%d", e.exitCode)
|
|
}
|
|
|
|
func (env *environment) getenv(key string) string {
|
|
return os.Getenv(key)
|
|
}
|
|
|
|
func (env *environment) getcwd() string {
|
|
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)
|
|
}
|
|
if env.args != nil && *env.args.PWD != "" {
|
|
env.cwd = correctPath(*env.args.PWD)
|
|
return env.cwd
|
|
}
|
|
dir, err := os.Getwd()
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
env.cwd = correctPath(dir)
|
|
return env.cwd
|
|
}
|
|
|
|
func (env *environment) hasFiles(pattern string) bool {
|
|
cwd := env.getcwd()
|
|
pattern = cwd + env.getPathSeperator() + pattern
|
|
matches, err := filepath.Glob(pattern)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return len(matches) > 0
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (env *environment) runCommand(command string, args ...string) (string, error) {
|
|
out, err := exec.Command(command, args...).Output()
|
|
|
|
var exerr *exec.ExitError
|
|
if errors.As(err, &exerr) {
|
|
return "", &commandError{exitCode: exerr.ExitCode()}
|
|
}
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return strings.TrimSpace(string(out)), nil
|
|
}
|
|
|
|
func (env *environment) runShellCommand(shell string, command string) string {
|
|
out, err := exec.Command(shell, "-c", command).Output()
|
|
if err != nil {
|
|
log.Println(err)
|
|
return ""
|
|
}
|
|
return strings.TrimSpace(string(out))
|
|
}
|
|
|
|
func (env *environment) hasCommand(command string) bool {
|
|
_, err := exec.LookPath(command)
|
|
return err == nil
|
|
}
|
|
|
|
func (env *environment) lastErrorCode() int {
|
|
return *env.args.ErrorCode
|
|
}
|
|
|
|
func (env *environment) getArgs() *args {
|
|
return env.args
|
|
}
|
|
|
|
func (env *environment) getBatteryInfo() (*battery.Battery, error) {
|
|
return battery.Get(0)
|
|
}
|
|
|
|
func (env *environment) getShellName() string {
|
|
pid := os.Getppid()
|
|
p, err := ps.FindProcess(pid)
|
|
|
|
if err != nil {
|
|
return "unknown"
|
|
}
|
|
shell := strings.Replace(p.Executable(), ".exe", "", 1)
|
|
return strings.Trim(shell, " ")
|
|
}
|
|
|
|
func cleanHostName(hostName string) string {
|
|
garbage := []string{
|
|
".lan",
|
|
".local",
|
|
".localdomain",
|
|
}
|
|
for _, g := range garbage {
|
|
if strings.HasSuffix(hostName, g) {
|
|
hostName = strings.Replace(hostName, g, "", 1)
|
|
}
|
|
}
|
|
return hostName
|
|
}
|