GoBlog/config.go

87 lines
2.4 KiB
Go
Raw Normal View History

2020-07-28 19:17:07 +00:00
package main
import (
"github.com/spf13/viper"
)
type config struct {
2020-08-04 17:42:09 +00:00
Server *configServer `mapstructure:"server"`
Db *configDb `mapstructure:"database"`
Cache *configCache `mapstructure:"cache"`
Blog *configBlog `mapstructure:"blog"`
User *configUser `mapstructure:"user"`
2020-07-28 19:17:07 +00:00
}
type configServer struct {
2020-08-04 17:42:09 +00:00
Logging bool `mapstructure:"logging"`
Port int `mapstructure:"port"`
Domain string `mapstructure:"domain"`
PublicHttps bool `mapstructure:"publicHttps"`
LetsEncryptMail string `mapstructure:"letsEncryptMail"`
LocalHttps bool `mapstructure:"localHttps"`
2020-07-28 19:17:07 +00:00
}
type configDb struct {
2020-08-04 17:42:09 +00:00
File string `mapstructure:"file"`
2020-07-28 19:17:07 +00:00
}
2020-07-29 20:45:26 +00:00
type configCache struct {
2020-08-04 17:42:09 +00:00
Enable bool `mapstructure:"enable"`
Expiration int64 `mapstructure:"expiration"`
2020-07-29 20:45:26 +00:00
}
2020-07-31 13:48:01 +00:00
// exposed to templates via function "blog"
type configBlog struct {
// Language of the blog, e.g. "en" or "de"
2020-08-04 17:42:09 +00:00
Lang string `mapstructure:"lang"`
2020-07-31 13:48:01 +00:00
// Title of the blog, e.g. "My blog"
2020-08-04 17:42:09 +00:00
Title string `mapstructure:"title"`
2020-08-05 17:54:04 +00:00
// Number of posts per page
Pagination int `mapstructure:"pagination"`
2020-08-25 18:55:32 +00:00
// Sections
Sections []string `mapstructure:"sections"`
2020-08-31 19:12:43 +00:00
// Taxonomies
Taxonomies []string `mapstructure:"taxonomies"`
2020-07-31 13:48:01 +00:00
}
type configUser struct {
2020-08-04 17:42:09 +00:00
Nick string `mapstructure:"nick"`
Name string `mapstructure:"name"`
Password string `mapstructure:"password"`
}
2020-08-04 17:42:09 +00:00
var appConfig = &config{}
2020-07-28 19:17:07 +00:00
func initConfig() error {
viper.SetConfigName("config")
viper.AddConfigPath("./config/")
err := viper.ReadInConfig()
if err != nil {
return err
}
2020-08-04 17:42:09 +00:00
// Defaults
viper.SetDefault("server.logging", false)
viper.SetDefault("server.port", 8080)
viper.SetDefault("server.domain", "example.com")
viper.SetDefault("server.publicHttps", false)
viper.SetDefault("server.letsEncryptMail", "mail@example.com")
viper.SetDefault("server.localHttps", false)
viper.SetDefault("database.file", "data/db.sqlite")
viper.SetDefault("cache.enable", true)
viper.SetDefault("cache.expiration", 600)
viper.SetDefault("blog.lang", "en")
viper.SetDefault("blog.title", "My blog")
2020-08-05 17:54:04 +00:00
viper.SetDefault("blog.pagination", 10)
2020-08-25 18:55:32 +00:00
viper.SetDefault("blog.sections", []string{"posts"})
2020-08-31 19:12:43 +00:00
viper.SetDefault("blog.taxonomies", []string{"tags"})
2020-08-04 17:42:09 +00:00
viper.SetDefault("user.nick", "admin")
viper.SetDefault("user.name", "Admin")
viper.SetDefault("user.password", "secret")
// Unmarshal config
err = viper.Unmarshal(appConfig)
if err != nil {
return err
}
2020-07-28 19:17:07 +00:00
return nil
}