aboutsummaryrefslogtreecommitdiffstats
path: root/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go35
1 files changed, 27 insertions, 8 deletions
diff --git a/config/config.go b/config/config.go
index 91ffd87..f9dd386 100644
--- a/config/config.go
+++ b/config/config.go
@@ -1,28 +1,47 @@
package config
import (
- "encoding/json"
+ "gopkg.in/yaml.v2"
"io/ioutil"
"log"
)
type Settings struct {
- DBFile string `json:"db"`
- Port int `json:"web"`
- Username string `json:"username"`
- DigestPassword string `json:"password"`
- ProxyImages bool `json:"proxy_images"`
+ DBFile string `yaml:"database"`
+ Port int `yaml:"http"`
+ DigestPassword string `yaml:"password"`
+ CrawlMinutes int `yaml:"minutes"`
+ ProxyImages bool `yaml:"imageproxy"`
}
var Config Settings
-func Read(filename string) {
+func Init(filename string) {
+ if filename != "" {
+ readConfig(filename)
+ }
+ addDefaults()
+}
+
+func readConfig(filename string) {
file, e := ioutil.ReadFile(filename)
if e != nil {
log.Fatal("Can not read config file\n", e)
}
- e = json.Unmarshal(file, &Config)
+ e = yaml.Unmarshal(file, &Config)
if e != nil {
log.Fatal("Config read error\n", e)
}
}
+
+func addDefaults() {
+ if Config.DBFile == "" {
+ Config.DBFile = "neko.db"
+ }
+ if Config.Port == 0 {
+ Config.Port = 4994
+ }
+ if Config.CrawlMinutes == 0 {
+ Config.CrawlMinutes = 60
+ }
+}