spiegel/internal/config/toml.go
Ada 8f63ef0401
Some checks failed
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/lint Pipeline failed
🎉 First commit
2024-04-04 01:19:56 +02:00

46 lines
759 B
Go

package config
import (
"os"
"github.com/pelletier/go-toml/v2"
"golang.org/x/sys/unix"
)
func LoadToml(file string) (Config, error) {
var config Config
source, err := os.ReadFile(file)
if err != nil {
return config, errConfigFileNotReadable
}
err = toml.Unmarshal(source, &config)
if err != nil {
panic(err)
}
return config, nil
}
func VerifyConfig(config Config) error {
allowedValue := []string{"DEBUG", "INFO", "WARN", "ERROR", "FATAL"}
found := false
for _, v := range allowedValue {
if v == config.Log.Level {
found = true
}
}
if !found {
return errLogLevel
}
if unix.Access(config.CloneDirectory, unix.W_OK) != nil {
return errCloneDirectoryUnwritable
}
// TODO: verify RepoList not redundant
return nil
}