molly-brown/config.go

59 lines
1.2 KiB
Go
Raw Normal View History

2019-11-06 15:08:44 +00:00
package main
import (
"github.com/BurntSushi/toml"
)
type Config struct {
Port int
Hostname string
CertPath string
KeyPath string
DocBase string
HomeDocBase string
GeminiExt string
DefaultLang string
LogPath string
TempRedirects map[string]string
PermRedirects map[string]string
CGIPaths []string
SCGIPaths map[string]string
2019-11-06 15:08:44 +00:00
}
type MollyFile struct {
GeminiExt string
DefaultLang string
}
2019-11-06 15:08:44 +00:00
func getConfig(filename string) (Config, error) {
var config Config
// Defaults
2020-03-24 21:05:26 +00:00
config.Port = 1965
2019-11-06 15:08:44 +00:00
config.Hostname = "localhost"
config.CertPath = "cert.pem"
config.KeyPath = "key.pem"
config.DocBase = "/var/gemini/"
config.HomeDocBase = "users"
config.GeminiExt = "gmi"
config.DefaultLang = ""
2019-11-06 15:08:44 +00:00
config.LogPath = "molly.log"
config.TempRedirects = make(map[string]string)
config.PermRedirects = make(map[string]string)
2020-06-08 19:46:39 +00:00
config.CGIPaths = make([]string, 0)
2020-06-04 18:41:40 +00:00
config.SCGIPaths = make(map[string]string)
2019-11-06 15:08:44 +00:00
// Return defaults if no filename given
if filename == "" {
return config, nil
}
// Attempt to overwrite defaults from file
_, err := toml.DecodeFile(filename, &config)
if err != nil {
return config, err
}
return config, nil
}