matrix-pretix/internal/config/config.go

45 lines
798 B
Go

package config
import (
"encoding/json"
"os"
)
type Config struct {
DB DatabaseConfig
Matrix MatrixConfig
Server ServerConfig
}
type DatabaseConfig struct {
Filename string
}
type MatrixConfig struct {
AllowedRooms []string `json:"allowed_rooms"`
DisplayName string `json:"display_name"`
LogLevel uint `json:"log_level"`
HomeserverURL string `json:"homeserver_url"`
UserIdentifier string `json:"user_identififer"`
Password string
PickleKey string `json:"pickle_key"`
}
type ServerConfig struct {
ListenAddress string `json:"listen_address"`
}
func ParseFromFile(path string) (config *Config, err error) {
data, err := os.ReadFile(path)
if err != nil {
return nil, err
}
err = json.Unmarshal(data, config)
if err != nil {
return nil, err
}
return config, nil
}