all repos — flounder @ sftp

A small site builder for the Gemini protocol

config.go (view raw)

 1package main
 2
 3import (
 4	"github.com/BurntSushi/toml"
 5	"path/filepath"
 6)
 7
 8const HiddenFolder = ".hidden"
 9const GemlogFolder = "gemlog"
10
11type Config struct {
12	FilesDirectory     string
13	TemplatesDirectory string
14	Host               string
15	HttpPort           int
16	SiteTitle          string
17	Debug              bool
18	SecretKey          string
19	DBFile             string
20	AnalyticsDBFile    string
21	LogFile            string
22	GeminiCertStore    string
23	CookieStoreKey     string
24	OkExtensions       []string
25	MaxFileBytes       int
26	MaxFilesPerUser    int
27	MaxUserBytes       int64
28	SMTPServer         string
29	SMTPUsername       string
30	SMTPPassword       string
31	EnableSFTP         bool
32	HostKeyPath        string
33}
34
35func getConfig(filename string) (Config, error) {
36	var config Config
37	// Attempt to overwrite defaults from file
38	_, err := toml.DecodeFile(filename, &config)
39	if err != nil {
40		return config, err
41	}
42	// Workaround for how some of my path fns are written
43	config.FilesDirectory, _ = filepath.Abs(config.FilesDirectory)
44	return config, nil
45}