-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.go
100 lines (86 loc) · 2.35 KB
/
settings.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
98
99
100
package grok
import (
"io/ioutil"
"path/filepath"
"gopkg.in/yaml.v2"
)
//Settings ...
type Settings struct {
API *APISettings `yaml:"api"`
Mongo *MongoSettings `yaml:"mongo"`
GCP *GCPSettings `yaml:"gcp"`
UserProvider *UserProvider `yaml:"user_provider"`
Mail *MailSettings `yaml:"mail"`
}
// APISettings ...
type APISettings struct {
Host string `yaml:"host"`
Swagger string `yaml:"swagger"`
Auth *APIAuth `yaml:"auth"`
}
// MongoSettings ...
type MongoSettings struct {
ConnectionString string `yaml:"connection_string"`
Database string `yaml:"database"`
}
// GCPSettings ...
type GCPSettings struct {
ProjectID string `yaml:"project_id"`
PubSub struct {
Fake bool `yaml:"fake"`
Endpoint string `yaml:"endpoint"`
} `yaml:"pubsub"`
Storage struct {
Fake bool `yaml:"fake"`
Bucket string `yaml:"bucket"`
Endpoint string `yaml:"endpoint"`
} `yaml:"storage"`
}
// APIAuth ...
type APIAuth struct {
Fake bool `yaml:"fake"`
FakeConfig *FakeAPIAuth `yaml:"fake_config"`
Tenant string `yaml:"tenant"`
JWKS string `yaml:"jwks"`
Audience []string `yaml:"audience"`
}
// FakeAPIAuth ...
type FakeAPIAuth struct {
Claims map[string]interface{} `yaml:"claims"`
Authenticated bool `yaml:"authenticated"`
}
// UserProvider ...
type UserProvider struct {
Kind string `yaml:"kind"`
Mock []map[string]interface{} `yaml:"users"`
Auth0 struct {
CacheTTL int64 `yaml:"cache_ttl"`
Domain string `yaml:"domain"`
ClientFrom string `yaml:"client_from"`
ClientID string `yaml:"client_id"`
ClientSecret string `yaml:"client_secret"`
ClientIDEnv string `yaml:"client_id_env"`
ClientSecretEnv string `yaml:"client_secret_env"`
}
}
// MailSettings ...
type MailSettings struct {
Provider string `yaml:"provider"`
Fake struct {
ShouldReturnError bool `yaml:"should_return_error"`
} `yaml:"fake"`
SendGrid struct {
APIKey string `yaml:"api_key"`
FromEnv bool `yaml:"from_env"`
APIKeyEnv string `yaml:"api_key_env"`
} `yaml:"send_grid"`
}
// FromYAML ...
func FromYAML(file string, dist interface{}) error {
filename, _ := filepath.Abs(file)
data, err := ioutil.ReadFile(filename)
if err != nil {
return err
}
return yaml.Unmarshal(data, dist)
}