2022-07-21 22:43:42 +02:00
|
|
|
package controller
|
|
|
|
|
2022-08-09 17:34:00 +02:00
|
|
|
import (
|
|
|
|
"github.com/michaelquigley/cf"
|
|
|
|
"github.com/openziti-test-kitchen/zrok/controller/store"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
2022-07-22 19:53:39 +02:00
|
|
|
|
2022-07-21 22:43:42 +02:00
|
|
|
type Config struct {
|
2022-10-12 18:42:05 +02:00
|
|
|
Endpoint *EndpointConfig
|
|
|
|
Proxy *ProxyConfig
|
|
|
|
Email *EmailConfig
|
|
|
|
Registration *RegistrationConfig
|
|
|
|
Store *store.Config
|
|
|
|
Ziti *ZitiConfig
|
|
|
|
MetricsConfig *MetricsConfig
|
2022-08-09 17:18:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type EndpointConfig struct {
|
|
|
|
Host string
|
|
|
|
Port int
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProxyConfig struct {
|
|
|
|
UrlTemplate string
|
2022-08-10 17:56:00 +02:00
|
|
|
Identities []string
|
2022-07-21 22:43:42 +02:00
|
|
|
}
|
2022-08-09 17:34:00 +02:00
|
|
|
|
2022-09-09 16:23:14 +02:00
|
|
|
type EmailConfig struct {
|
|
|
|
Host string
|
2022-09-12 21:28:59 +02:00
|
|
|
Port int
|
2022-09-09 16:23:14 +02:00
|
|
|
Username string
|
|
|
|
Password string
|
|
|
|
}
|
|
|
|
|
2022-09-09 19:23:30 +02:00
|
|
|
type RegistrationConfig struct {
|
2022-09-12 20:35:11 +02:00
|
|
|
EmailFrom string
|
|
|
|
RegistrationUrlTemplate string
|
2022-09-09 19:23:30 +02:00
|
|
|
}
|
|
|
|
|
2022-08-12 17:03:15 +02:00
|
|
|
type ZitiConfig struct {
|
|
|
|
ApiEndpoint string
|
|
|
|
Username string
|
|
|
|
Password string
|
|
|
|
}
|
|
|
|
|
2022-08-09 17:34:00 +02:00
|
|
|
func LoadConfig(path string) (*Config, error) {
|
|
|
|
cfg := &Config{}
|
|
|
|
if err := cf.BindYaml(cfg, path, cf.DefaultOptions()); err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "error loading controller config '%v'", path)
|
|
|
|
}
|
|
|
|
return cfg, nil
|
|
|
|
}
|