move config file loading out of gemlog package

This commit is contained in:
Travis Shears 2025-10-05 16:42:26 +02:00
parent 6b8ba76018
commit dc635db758
6 changed files with 46 additions and 75 deletions

View file

@ -1,13 +1,5 @@
package gemlog
import (
"fmt"
"os"
"path/filepath"
"gopkg.in/yaml.v3"
)
// CouchDBConfig represents the CouchDB configuration section
type CouchDBConfig struct {
Host string `yaml:"host"`
@ -20,25 +12,3 @@ type CouchDBConfig struct {
type Config struct {
CouchDB CouchDBConfig `yaml:"couchdb"`
}
// LoadConfig reads and parses the YAML configuration file from ~/.config/gemlog-cli
func LoadConfig() (*Config, error) {
homeDir, err := os.UserHomeDir()
if err != nil {
return nil, fmt.Errorf("failed to get user home directory: %w", err)
}
configPath := filepath.Join(homeDir, ".config", "gemlog-cli", "config.yml")
data, err := os.ReadFile(configPath)
if err != nil {
return nil, fmt.Errorf("failed to read config file %s: %w", configPath, err)
}
var config Config
if err := yaml.Unmarshal(data, &config); err != nil {
return nil, fmt.Errorf("failed to parse YAML config: %w", err)
}
return &config, nil
}