-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
54 lines (50 loc) · 1.24 KB
/
config.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
package config
import (
"errors"
"os"
env "github.com/joho/godotenv"
"github.com/rwandaopensource/botx/helper"
)
// ErrEnv error returned when one the variables are missing
var ErrEnv error = errors.New("one or more of the environments are missing")
// Config load and validate missing variables
// if enforce is set to true it will exists the program when there is missing varibles
func Config(enforce bool) {
var (
mode string = os.Getenv("GO_ENV")
file = ".env"
)
// if you want to enforce the environment during tests don't run set GO_ENV=test
enforce = mode == "test"
switch mode {
case "development", "production", "test":
file += ("." + mode)
default:
break
}
if err := env.Load(); err != nil {
if errors.Is(err, os.ErrNotExist) {
helper.Verbose("environment file not found; using os environment")
} else {
helper.FatalError(err, "")
}
}
requiredEnv := []string{
"DATABASE_URL",
"DATABASE_NAME",
"SLACK_CLIENT_ID",
"SLACK_CLIENT_SECRET",
"PRIVATE_KEY",
"PUBLIC_KEY",
"SLACK_SIGNING_SECRET",
}
var missingEnv string
for _, key := range requiredEnv {
if os.Getenv(key) == "" {
missingEnv = missingEnv + ", " + key
}
}
if missingEnv != "" && enforce {
helper.FatalError(ErrEnv, missingEnv)
}
}