nitter/src/config.nim

30 lines
915 B
Nim
Raw Normal View History

2019-07-31 02:23:16 +00:00
import parsecfg except Config
import types, strutils
2019-07-31 02:23:16 +00:00
proc get*[T](config: parseCfg.Config; s, v: string; default: T): T =
2019-07-31 02:23:16 +00:00
let val = config.getSectionValue(s, v)
if val.len == 0: return default
when T is int: parseInt(val)
elif T is bool: parseBool(val)
elif T is string: val
proc getConfig*(path: string): (Config, parseCfg.Config) =
2019-07-31 02:23:16 +00:00
var cfg = loadConfig(path)
let conf = Config(
2019-07-31 02:23:16 +00:00
address: cfg.get("Server", "address", "0.0.0.0"),
port: cfg.get("Server", "port", 8080),
useHttps: cfg.get("Server", "https", true),
2019-07-31 02:23:16 +00:00
staticDir: cfg.get("Server", "staticDir", "./public"),
title: cfg.get("Server", "title", "Nitter"),
hostname: cfg.get("Server", "hostname", "nitter.net"),
2019-07-31 02:23:16 +00:00
cacheDir: cfg.get("Cache", "directory", "/tmp/nitter"),
2019-10-23 12:06:47 +00:00
profileCacheTime: cfg.get("Cache", "profileMinutes", 10),
hmacKey: cfg.get("Config", "hmacKey", "secretkey")
2019-07-31 02:23:16 +00:00
)
return (conf, cfg)