-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.go
42 lines (37 loc) · 867 Bytes
/
helpers.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
package main
import (
"fmt"
"os"
"strconv"
"strings"
)
// Check if the value is empty
func IsSettingEmpty(ev string) string {
s := os.Getenv(ev)
// Fail if there is no value for that environment variable
if !DoesValueExists(s) {
Fatalf("Mandatory parameter \"%s\" is missing from the environment variable or its empty", ev)
}
return s
}
// Trim spaces and provide the value
func DoesValueExists(s string) bool {
if strings.TrimSpace(s) == "" {
return false
}
return true
}
// Print the error in the stdout & and also return error
func PrintErrorAndReturn(s string, e error) error {
err := fmt.Sprintf(s, e)
Errorf(err)
return e
}
// Convert the string and to number
func ConvertStringToNumber(s string) int {
i, err := strconv.Atoi(s)
if err != nil {
Fatalf("Failed to convert the string \"%s\" to integer, err: %v", s, err)
}
return i
}