summaryrefslogtreecommitdiffstats
path: root/utils/utils.go
blob: 381ebc53ece82e78c3f332c708763b057b4d8aad (plain)
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
package utils

import (
	"os"
	"strings"

	jww "github.com/spf13/jwalterweatherman"
)

func CheckErr(err error, s ...string) {
	if err != nil {
		if len(s) == 0 {
			jww.CRITICAL.Println(err)
		} else {
			for _, message := range s {
				jww.ERROR.Println(message)
			}
			jww.ERROR.Println(err)
		}
	}
}

func StopOnErr(err error, s ...string) {
	if err != nil {
		doStopOnErr(err, s...)
		os.Exit(-1)
	}
}

func doStopOnErr(err error, s ...string) {
	if len(s) == 0 {
		newMessage := cutUsageMessage(err.Error())
		// Printing an empty string results in a error with
		// no message, no bueno.
		if newMessage != "" {
			jww.CRITICAL.Println(newMessage)
		}
	} else {
		for _, message := range s {
			message := cutUsageMessage(message)

			if message != "" {
				jww.CRITICAL.Println(message)
			}
		}
	}
}

// cutUsageMessage splits the incoming string on the beginning of the usage
// message text. Anything in the first element of the returned slice, trimmed
// of its Unicode defined spaces, should be returned. The 2nd element of the
// slice will have the usage message  that we wish to elide.
//
// This is done because Cobra already prints Hugo's usage message; not eliding
// would result in the usage output being printed twice, which leads to bug
// reports, more specifically: https://github.com/spf13/hugo/issues/374
func cutUsageMessage(s string) string {
	pieces := strings.Split(s, "Usage of")
	return strings.TrimSpace(pieces[0])
}