-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.go
76 lines (60 loc) · 1.65 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package main
import (
"encoding/json"
"errors"
"io/ioutil"
"strings"
"github.com/leavengood/donation_tracker/paypal"
)
// Config is the main configuration for the whole program
type Config struct {
PayPal *paypal.Config `json:"paypal"`
// For getting the EUR to USD conversion rate
FixerIoAccessKey string `json:"fixer_io_access_key"`
// For updating the donations.json file on cdn.haiku-os.org
Minio struct {
AccessKeyID string `json:"access_key_id"`
SecretAccessKey string `json:"secret_access_key"`
} `json:"minio"`
}
func (c *Config) Validate() error {
errorList := []string{}
if c.PayPal.Endpoint == "" {
errorList = append(errorList, "no PayPal endpoint was provided")
}
if c.PayPal.User == "" {
errorList = append(errorList, "no PayPal user was provided")
}
if c.PayPal.Password == "" {
errorList = append(errorList, "no PayPal password was provided")
}
if c.PayPal.Signature == "" {
errorList = append(errorList, "no PayPal signature was provided")
}
if c.FixerIoAccessKey == "" {
errorList = append(errorList, "no Fixer.io access key was provided")
}
if c.Minio.AccessKeyID == "" {
errorList = append(errorList, "no Minio access key ID was provided")
}
if c.Minio.SecretAccessKey == "" {
errorList = append(errorList, "no Minio secret access key was provided")
}
if len(errorList) == 0 {
return nil
}
return errors.New(strings.Join(errorList, ", "))
}
const ConfigFile = "config.json"
var config Config
func LoadConfig() error {
content, err := ioutil.ReadFile(ConfigFile)
if err != nil {
return err
}
err = json.Unmarshal(content, &config)
if err != nil {
return err
}
return config.Validate()
}