Skip to content

Search for config file #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 39 additions & 3 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ package config
import (
"fmt"

"github.com/arduino/arduino-cloud-cli/arduino"
"github.com/arduino/go-paths-helper"
"github.com/spf13/viper"
)

Expand All @@ -33,16 +35,50 @@ type Config struct {
// Retrieve returns the actual parameters contained in the
// configuration file, if any. Returns error if no config file is found.
func Retrieve() (*Config, error) {
conf := &Config{}
configDir, err := searchConfigDir()
if err != nil {
return nil, fmt.Errorf("can't get config directory: %w", err)
}

v := viper.New()
v.SetConfigName(Filename)
v.AddConfigPath(".")
err := v.ReadInConfig()
v.AddConfigPath(configDir)
err = v.ReadInConfig()
if err != nil {
err = fmt.Errorf("%s: %w", "retrieving config file", err)
return nil, err
}

conf := &Config{}
v.Unmarshal(conf)
return conf, nil
}

func searchConfigDir() (string, error) {
// Search in current directory and its parents.
cwd, err := paths.Getwd()
if err != nil {
return "", err
}
// Don't let bad naming mislead you, cwd.Parents()[0] is cwd itself so
// we look in the current directory first and then on its parents.
for _, path := range cwd.Parents() {
if path.Join(Filename+".yaml").Exist() || path.Join(Filename+".json").Exist() {
return path.String(), nil
}
}

// Search in arduino's default data directory.
arduino15, err := arduino.DataDir()
if err != nil {
return "", err
}
if arduino15.Join(Filename+".yaml").Exist() || arduino15.Join(Filename+".json").Exist() {
return arduino15.String(), nil
}

return "", fmt.Errorf(
"didn't find config file in the current directory, its parents or in %s.",
arduino15.String(),
)
}