forked from justjanne/powerline-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
segment-goenv.go
100 lines (87 loc) · 2.46 KB
/
segment-goenv.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package main
import (
"fmt"
pwl "github.com/justjanne/powerline-go/powerline"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"strings"
)
const goenvVersionFileSuffix = "/.go-version"
const goenvVersionEnvVar = "GOENV_VERSION"
const goenvGlobalVersionFileSuffix = "/.goenv/version"
func runGoenvCommand(cmd string, args ...string) (string, error) {
command := exec.Command(cmd, args...)
out, err := command.Output()
return string(out), err
}
// check GOENV_VERSION variable
func checkEnvForGoenvVersion() (string, error) {
goenvVersion := os.Getenv(goenvVersionEnvVar)
if len(goenvVersion) > 0 {
return goenvVersion, nil
} else {
return "", fmt.Errorf("Not found in %s", goenvVersionEnvVar)
}
}
// check existence of .go-version in tree until root path
func checkForGoVersionFileInTree() (string, error) {
var (
workingDirectory string
err error
)
workingDirectory, err = os.Getwd()
if err == nil {
for workingDirectory != "/" {
goVersion, goVersionErr := ioutil.ReadFile(workingDirectory + goenvVersionFileSuffix)
if goVersionErr == nil {
return strings.TrimSpace(string(goVersion)), nil
}
workingDirectory = filepath.Dir(workingDirectory)
}
}
return "", fmt.Errorf("No %s file found in tree", goenvVersionFileSuffix)
}
// check for global version
func checkForGoenvGlobalVersion() (string, error) {
homeDir, _ := os.UserHomeDir()
globalGoVersion, err := ioutil.ReadFile(homeDir + goenvGlobalVersionFileSuffix)
if err == nil {
return strings.TrimSpace(string(globalGoVersion)), nil
} else {
return "", fmt.Errorf("No global go version file found in %s", homeDir+goenvGlobalVersionFileSuffix)
}
}
// retrieve goenv version output
func checkForGoenvOutput() (string, error) {
// spawn goenv and print out version
out, err := runGoenvCommand("goenv", "version")
if err == nil {
items := strings.Split(out, " ")
if len(items) > 1 {
return items[0], nil
}
}
return "", fmt.Errorf("Not found in goenv object")
}
func segmentGoenv(p *powerline) []pwl.Segment {
global, _ := checkForGoenvGlobalVersion()
segment, err := checkEnvForGoenvVersion()
if err != nil || segment == global {
segment, err = checkForGoVersionFileInTree()
}
if err != nil || segment == global {
segment, err = checkForGoenvOutput()
}
if err != nil || segment == global {
return []pwl.Segment{}
} else {
return []pwl.Segment{{
Name: "goenv",
Content: segment,
Foreground: p.theme.GoenvFg,
Background: p.theme.GoenvBg,
}}
}
}