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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
package config
import (
"os"
"strconv"
"strings"
"github.com/hashicorp/go-multierror"
"github.com/homemade/scl"
"github.com/nsheridan/cashier/server/helpers/vault"
"github.com/pkg/errors"
)
// Config holds the final server configuration.
type Config struct {
Server *Server `hcl:"server"`
Auth *Auth `hcl:"auth"`
SSH *SSH `hcl:"ssh"`
AWS *AWS `hcl:"aws"`
Vault *Vault `hcl:"vault"`
}
// Database holds database configuration.
type Database map[string]string
// Server holds the configuration specific to the web server and sessions.
type Server struct {
UseTLS bool `hcl:"use_tls"`
TLSKey string `hcl:"tls_key"`
TLSCert string `hcl:"tls_cert"`
LetsEncryptServername string `hcl:"letsencrypt_servername"`
LetsEncryptCache string `hcl:"letsencrypt_cachedir"`
Addr string `hcl:"address"`
Port int `hcl:"port"`
User string `hcl:"user"`
CookieSecret string `hcl:"cookie_secret"`
CSRFSecret string `hcl:"csrf_secret"`
HTTPLogFile string `hcl:"http_logfile"`
Database Database `hcl:"database"`
RequireReason bool `hcl:"require_reason"`
}
// Auth holds the configuration specific to the OAuth provider.
type Auth struct {
OauthClientID string `hcl:"oauth_client_id"`
OauthClientSecret string `hcl:"oauth_client_secret"`
OauthCallbackURL string `hcl:"oauth_callback_url"`
Provider string `hcl:"provider"`
ProviderOpts map[string]string `hcl:"provider_opts"`
UsersWhitelist []string `hcl:"users_whitelist"`
}
// SSH holds the configuration specific to signing ssh keys.
type SSH struct {
SigningKey string `hcl:"signing_key"`
AdditionalPrincipals []string `hcl:"additional_principals"`
MaxAge string `hcl:"max_age"`
Permissions []string `hcl:"permissions"`
}
// AWS holds Amazon AWS configuration.
// AWS can also be configured using SDK methods.
type AWS struct {
Region string `hcl:"region"`
AccessKey string `hcl:"access_key"`
SecretKey string `hcl:"secret_key"`
}
// Vault holds Hashicorp Vault configuration.
type Vault struct {
Address string `hcl:"address"`
Token string `hcl:"token"`
}
func verifyConfig(c *Config) error {
var err error
if c.SSH == nil {
err = multierror.Append(err, errors.New("missing ssh config section"))
}
if c.Auth == nil {
err = multierror.Append(err, errors.New("missing auth config section"))
}
if c.Server == nil {
err = multierror.Append(err, errors.New("missing server config section"))
}
return err
}
func setFromEnvironment(c *Config) {
port, err := strconv.Atoi(os.Getenv("PORT"))
if err == nil {
c.Server.Port = port
}
if os.Getenv("OAUTH_CLIENT_ID") != "" {
c.Auth.OauthClientID = os.Getenv("OAUTH_CLIENT_ID")
}
if os.Getenv("OAUTH_CLIENT_SECRET") != "" {
c.Auth.OauthClientSecret = os.Getenv("OAUTH_CLIENT_SECRET")
}
if os.Getenv("CSRF_SECRET") != "" {
c.Server.CSRFSecret = os.Getenv("CSRF_SECRET")
}
if os.Getenv("COOKIE_SECRET") != "" {
c.Server.CookieSecret = os.Getenv("COOKIE_SECRET")
}
}
func setFromVault(c *Config) error {
if c.Vault == nil || c.Vault.Token == "" || c.Vault.Address == "" {
return nil
}
v, err := vault.NewClient(c.Vault.Address, c.Vault.Token)
if err != nil {
return errors.Wrap(err, "vault error")
}
var errs error
get := func(value string) string {
if strings.HasPrefix(value, "/vault/") {
s, err := v.Read(value)
if err != nil {
errs = multierror.Append(errs, err)
}
return s
}
return value
}
c.Auth.OauthClientID = get(c.Auth.OauthClientID)
c.Auth.OauthClientSecret = get(c.Auth.OauthClientSecret)
c.Server.CSRFSecret = get(c.Server.CSRFSecret)
c.Server.CookieSecret = get(c.Server.CookieSecret)
if len(c.Server.Database) != 0 {
c.Server.Database["password"] = get(c.Server.Database["password"])
}
if c.AWS != nil {
c.AWS.AccessKey = get(c.AWS.AccessKey)
c.AWS.SecretKey = get(c.AWS.SecretKey)
}
return errors.Wrap(errs, "errors reading from vault")
}
// ReadConfig parses a hcl configuration file into a Config struct.
func ReadConfig(f string) (*Config, error) {
config := &Config{}
if err := scl.DecodeFile(config, f); err != nil {
return nil, errors.Wrapf(err, "unable to load config from file %s", f)
}
if err := setFromVault(config); err != nil {
return nil, err
}
setFromEnvironment(config)
if err := verifyConfig(config); err != nil {
return nil, errors.Wrap(err, "unable to verify config")
}
return config, nil
}
|