1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
package cliconfig
import (
"fmt"
"os"
"os/user"
"path"
"path/filepath"
"gopkg.in/yaml.v2"
"github.com/lxc/incus/v6/shared/api"
"github.com/lxc/incus/v6/shared/util"
)
func getConfigPaths() (string, string, error) {
// Figure out the config directory and config path
var configDir string
if os.Getenv("INCUS_CONF") != "" {
configDir = os.Getenv("INCUS_CONF")
} else if os.Getenv("HOME") != "" && util.PathExists(os.Getenv("HOME")) {
configDir = path.Join(os.Getenv("HOME"), ".config", "incus")
} else {
usr, err := user.Current()
if err != nil {
return "", "", err
}
if util.PathExists(usr.HomeDir) {
configDir = path.Join(usr.HomeDir, ".config", "incus")
}
}
if configDir == "" {
return "", "", nil
}
configPath := os.ExpandEnv(path.Join(configDir, "config.yml"))
return configPath, filepath.Dir(configPath), nil
}
// LoadConfig reads the configuration from the config path; if the path does
// not exist, it returns a default configuration; if the given path is empty
// it tries to determine automatically the configuration file to load.
func LoadConfig(path string) (*Config, error) {
configDir := filepath.Dir(path)
if path == "" {
var err error
path, configDir, err = getConfigPaths()
if err != nil {
return nil, err
}
}
if path == "" || !util.PathExists(path) {
return NewConfig(configDir, true), nil
}
// Open the config file
content, err := os.ReadFile(path)
if err != nil {
return nil, fmt.Errorf("Unable to read the configuration file: %w", err)
}
// Decode the YAML document
c := NewConfig(configDir, false)
err = yaml.Unmarshal(content, &c)
if err != nil {
return nil, fmt.Errorf("Unable to decode the configuration: %w", err)
}
for k, r := range c.Remotes {
if !r.Public && r.AuthType == "" {
r.AuthType = api.AuthenticationMethodTLS
c.Remotes[k] = r
}
}
// Apply the global (system-wide) remotes
globalConf := NewConfig("", false)
content, err = os.ReadFile(globalConf.GlobalConfigPath("config.yml"))
if err == nil {
err = yaml.Unmarshal(content, &globalConf)
if err != nil {
return nil, fmt.Errorf("Unable to decode the configuration: %w", err)
}
for k, r := range globalConf.Remotes {
_, ok := c.Remotes[k]
if !ok {
r.Global = true
c.Remotes[k] = r
}
}
}
// Set default values
if c.Remotes == nil {
c.Remotes = make(map[string]Remote)
}
// Apply the static remotes
for k, v := range StaticRemotes {
if c.Remotes[k].Project != "" {
v.Project = c.Remotes[k].Project
}
c.Remotes[k] = v
}
// Fill in defaults.
for k, r := range c.Remotes {
if r.Protocol == "" {
r.Protocol = "incus"
c.Remotes[k] = r
}
}
// If the environment specifies a remote this takes priority over what
// is defined in the configuration
envDefaultRemote := os.Getenv("INCUS_REMOTE")
if len(envDefaultRemote) > 0 {
c.DefaultRemote = envDefaultRemote
} else if c.DefaultRemote == "" {
c.DefaultRemote = DefaultConfig().DefaultRemote
}
return c, nil
}
// SaveConfig writes the provided configuration to the config file.
func (c *Config) SaveConfig(path string) error {
// Create a new copy for the config file
conf := Config{}
err := util.DeepCopy(c, &conf)
if err != nil {
return fmt.Errorf("Unable to copy the configuration: %w", err)
}
// Remove the global remotes
for k, v := range c.Remotes {
if v.Global {
delete(conf.Remotes, k)
}
}
defaultRemote := DefaultConfig().DefaultRemote
// Remove the static remotes
for k := range StaticRemotes {
if k == defaultRemote {
continue
}
delete(conf.Remotes, k)
}
// Create the config file (or truncate an existing one)
f, err := os.Create(path)
if err != nil {
return fmt.Errorf("Unable to create the configuration file: %w", err)
}
defer func() { _ = f.Close() }()
// Write the new config
data, err := yaml.Marshal(conf)
if err != nil {
return fmt.Errorf("Unable to marshal the configuration: %w", err)
}
_, err = f.Write(data)
if err != nil {
return fmt.Errorf("Unable to write the configuration: %w", err)
}
err = f.Close()
if err != nil {
return fmt.Errorf("Unable to close the configuration file: %w", err)
}
return nil
}
|