lockserver/config/config.go

53 lines
891 B
Go
Raw Normal View History

package config
import (
"encoding/json"
"errors"
"os"
"github.com/sirupsen/logrus"
)
type Config struct {
2024-04-24 02:05:37 +00:00
ZWaveJSServer string `json:"zwave-js-server"`
SqliteDatabase string `json:"sqlite-database"`
HTTPBind string `json:"http-bind"`
}
var C = Config{
ZWaveJSServer: "ws://home-assistant:3000",
2024-04-24 02:16:40 +00:00
SqliteDatabase: "/data/lockserver.db",
HTTPBind: ":8080",
}
2024-04-24 00:53:17 +00:00
var configFiles = []string{"lockserver.json", "/etc/lockserver.json"}
func Load() error {
2024-04-24 00:53:17 +00:00
for _, path := range configFiles {
err := load(path)
if err != nil {
if errors.Is(err, os.ErrNotExist) {
continue
}
return err
}
logrus.WithField("file", path).Info("loaded config")
}
return nil
}
func load(path string) error {
f, err := os.Open(path)
if err != nil {
return err
}
defer f.Close()
if err := json.NewDecoder(f).Decode(&C); err != nil {
return err
}
return nil
}