1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
package config
import (
"io/fs"
"net/url"
"website/internal/log"
"github.com/BurntSushi/toml"
"github.com/pkg/errors"
)
type Taxonomy struct {
Name string
Feed bool
}
type MenuItem struct {
Name string
URL URL `toml:"url"`
}
type URL struct {
*url.URL
}
func (u *URL) UnmarshalText(text []byte) (err error) {
u.URL, err = url.Parse(string(text))
return errors.Wrapf(err, "could not parse URL %s", string(text))
}
type Config struct {
DefaultLanguage string `toml:"default_language"`
BaseURL URL `toml:"base_url"`
InjectLiveReload bool
Title string
Email string
Description string
DomainStartDate string `toml:"domain_start_date"`
OriginalDomain string `toml:"original_domain"`
Domains []string
OIDCHost URL `toml:"oidc_host"`
Taxonomies []Taxonomy
CSP *CSP `toml:"content-security-policy"`
Extra struct {
Headers map[string]string
}
Menus map[string][]MenuItem
}
func GetConfig() (*Config, error) {
config := Config{}
log.Debug("reading config.toml")
_, err := toml.DecodeFile("config.toml", &config)
if err != nil {
switch t := err.(type) {
case *fs.PathError:
return nil, errors.WithMessage(t, "could not read configuration")
case *toml.ParseError:
return nil, errors.WithMessage(t, t.ErrorWithUsage())
}
return nil, errors.Wrap(err, "config error")
}
return &config, nil
}
|