57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
package config
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/gotify/configor"
|
|
)
|
|
|
|
// Configuration is stuff that can be configured externally per env variables or config file (config.yml).
|
|
type Configuration struct {
|
|
Server struct {
|
|
Port int `default:"80"`
|
|
SSL struct {
|
|
Enabled *bool `default:"false"`
|
|
RedirectToHTTPS *bool `default:"true"`
|
|
Port int `default:"443"`
|
|
CertFile string `default:""`
|
|
CertKey string `default:""`
|
|
LetsEncrypt struct {
|
|
Enabled *bool `default:"false"`
|
|
AcceptTOS *bool `default:"false"`
|
|
Cache string `default:"data/certs"`
|
|
Hosts []string
|
|
}
|
|
}
|
|
ResponseHeaders map[string]string
|
|
}
|
|
Database struct {
|
|
Dialect string `default:"sqlite3"`
|
|
Connection string `default:"data/gotify.db"`
|
|
}
|
|
DefaultUser struct {
|
|
Name string `default:"admin"`
|
|
Pass string `default:"admin"`
|
|
}
|
|
PassStrength int `default:"10"`
|
|
UploadedImagesDir string `default:"data/images"`
|
|
}
|
|
|
|
// Get returns the configuration extracted from env variables or config file.
|
|
func Get() *Configuration {
|
|
conf := new(Configuration)
|
|
err := configor.New(&configor.Config{EnvironmentPrefix: "GOTIFY"}).Load(conf, "config.yml", "/etc/gotify/config.yml")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
addTrailingSlashToPaths(conf)
|
|
return conf
|
|
}
|
|
|
|
func addTrailingSlashToPaths(conf *Configuration) {
|
|
if !strings.HasSuffix(conf.UploadedImagesDir, "/") && !strings.HasSuffix(conf.UploadedImagesDir, "\\") {
|
|
conf.UploadedImagesDir = conf.UploadedImagesDir + string(filepath.Separator)
|
|
}
|
|
}
|