2018-12-11 09:51:20 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
|
|
"github.com/khlieng/dispatch/storage"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Address string
|
|
|
|
Port string
|
|
|
|
Dev bool
|
|
|
|
HexIP bool
|
|
|
|
VerifyCertificates bool `mapstructure:"verify_certificates"`
|
2018-12-20 10:51:31 +00:00
|
|
|
Headers map[string]string
|
2018-12-11 09:51:20 +00:00
|
|
|
Defaults *Defaults
|
|
|
|
HTTPS *HTTPS
|
|
|
|
LetsEncrypt *LetsEncrypt
|
|
|
|
}
|
|
|
|
|
|
|
|
type Defaults struct {
|
|
|
|
Name string
|
|
|
|
Host string
|
|
|
|
Port int
|
|
|
|
Channels []string
|
|
|
|
Password string
|
|
|
|
SSL bool
|
|
|
|
ReadOnly bool
|
|
|
|
ShowDetails bool `mapstructure:"show_details"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type HTTPS struct {
|
2018-12-16 11:19:16 +00:00
|
|
|
Enabled bool
|
|
|
|
Port string
|
|
|
|
Cert string
|
|
|
|
Key string
|
|
|
|
HSTS *HSTS
|
2018-12-11 09:51:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type HSTS struct {
|
|
|
|
Enabled bool
|
|
|
|
MaxAge string `mapstructure:"max_age"`
|
|
|
|
IncludeSubdomains bool `mapstructure:"include_subdomains"`
|
|
|
|
Preload bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type LetsEncrypt struct {
|
|
|
|
Domain string
|
|
|
|
Email string
|
|
|
|
}
|
|
|
|
|
|
|
|
func LoadConfig() (*Config, chan *Config) {
|
|
|
|
viper.SetConfigName("config")
|
|
|
|
viper.AddConfigPath(storage.Path.Root())
|
|
|
|
viper.ReadInConfig()
|
|
|
|
|
|
|
|
config := &Config{}
|
|
|
|
viper.Unmarshal(config)
|
|
|
|
|
|
|
|
viper.WatchConfig()
|
|
|
|
|
|
|
|
configCh := make(chan *Config, 1)
|
|
|
|
|
|
|
|
prev := time.Now()
|
|
|
|
viper.OnConfigChange(func(e fsnotify.Event) {
|
|
|
|
now := time.Now()
|
|
|
|
// fsnotify sometimes fires twice
|
|
|
|
if now.Sub(prev) > time.Second {
|
|
|
|
config := &Config{}
|
|
|
|
err := viper.Unmarshal(config)
|
|
|
|
if err == nil {
|
|
|
|
configCh <- config
|
|
|
|
}
|
|
|
|
|
|
|
|
prev = now
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return config, configCh
|
|
|
|
}
|