gostations/config.go

83 lines
1.5 KiB
Go
Raw Permalink Normal View History

2021-03-16 12:32:59 +00:00
package main
import (
"errors"
"log"
"os"
"strconv"
"github.com/alyu/configparser"
)
2021-03-17 19:11:18 +00:00
//str2int
2021-03-16 12:32:59 +00:00
func str2int(strnum string) int {
i, err := strconv.Atoi(strnum)
if err != nil {
2021-03-17 19:11:18 +00:00
return 9999
2021-03-16 12:32:59 +00:00
}
return i
}
func configStat(configFile string) string{
xdgConfigPath := os.Getenv("XDG_CONFIG_HOME")
if xdgConfigPath == "" {
xdgConfigPath = os.Getenv("HOME")+"/.config"
}
configFile = xdgConfigPath + "/gostations/" + configFile
if _, err := os.Stat(configFile); errors.Is(err, os.ErrNotExist) {
log.Printf("Your stations config file seems to be missing. A default will be generated.")
2021-03-17 13:45:54 +00:00
errs := createIniFile(configFile)
for _, err := range errs {
if err != nil {
log.Printf("Erorr: %s", err.Error())
log.Fatal("Cannot continue.")
}
}
}
return configFile
}
2021-03-16 12:32:59 +00:00
func Config(option string) (string, error) {
configparser.Delimiter = "="
configFile := configStat("radiostations.ini")
2021-03-16 12:32:59 +00:00
runtimeSection := "DEFAULT"
config, err := configparser.Read(configFile)
if err != nil {
log.Fatal(err)
}
section, err := config.Section(runtimeSection)
if err != nil {
log.Fatal(err)
}
optval := section.Options()[option]
if optval == "" {
return "", errors.New("no value for option '%s'")
}
return optval, nil
}
func api() string {
url, _ := Config("radio_browser.api")
return url
}
func player() string {
player, _ := Config("player.command")
return player
}
func options() string {
options, _ := Config("player.options")
return options
}
func maxitems() int {
items, _ := Config("menu_items.max")
return str2int(items)
}