-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathutils.go
97 lines (87 loc) · 2.02 KB
/
utils.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
package main
import (
"bytes"
"encoding/json"
"fmt"
"log"
"os"
"regexp"
"strings"
)
func matchPattern(pattern string) func(name string) bool {
reg := regexp.MustCompile(pattern)
return func(name string) bool {
return reg.MatchString(name)
}
}
func filterStrings(list []string, pattern string) []string {
cleaned := []string{}
match := matchPattern(pattern)
for _, elm := range list {
if match(elm) {
cleaned = append(cleaned, elm)
}
}
return cleaned
}
func printStrings(list []string) {
for _, elm := range list {
fmt.Println(elm)
}
}
func perror(err error) {
if err != nil {
log.Fatal(err)
}
}
func shortname(hostname string) string {
if matchPattern(".")(hostname) {
hostname = strings.Split(hostname, ".")[0]
}
return hostname
}
func logmsg(message string) {
logfile := os.Getenv("HOME") + "/.vmpool.log"
if os.Getenv("VMPOOL_LOGFILE") != "" {
logfile = os.Getenv("VMPOOL_LOGFILE")
}
f, err := os.OpenFile(logfile, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0666)
if err != nil {
fmt.Printf("error opening file: %v", err)
}
defer f.Close()
log.SetOutput(f)
message = strings.TrimSpace(message)
log.Println(message)
}
func ldapsetup() string {
errmsg := ""
bombout := 0
if os.Getenv("LDAP_USERNAME") == "" {
errmsg = errmsg + "The environment variable LDAP_USERNAME must be set to request a token.\n"
bombout = 1
}
if os.Getenv("LDAP_PASSWORD") == "" {
errmsg = errmsg + "The environment variable LDAP_PASSWORD must be set to request a token.\n"
bombout = 1
}
if bombout == 1 {
log.Fatal(errmsg)
}
ldap_user := os.Getenv("LDAP_USERNAME")
ldap_pass := os.Getenv("LDAP_PASSWORD")
debug("LDAP_USERNAME " + ldap_user)
debug("LDAP_PASSWORD " + ldap_pass)
return ldap_user + "|" + ldap_pass
}
func pjson(contents []byte) {
var prettyJSON bytes.Buffer
error := json.Indent(&prettyJSON, contents, "", " ")
perror(error)
fmt.Println(string(prettyJSON.Bytes()))
}
func debug(message string) {
if os.Getenv("DEBUG") == "1" || os.Getenv("DEBUG") == "true" {
fmt.Printf("%v\n", message)
}
}