mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
bd63aa3c6b
sed -i '1i/*\nCopyright (c) Edgeless Systems GmbH\n\nSPDX-License-Identifier: AGPL-3.0-only\n*/\n' `grep -rL --include='*.go' 'DO NOT EDIT'` gofumpt -w .
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/edgelesssys/constellation/internal/cloud/cloudprovider"
|
|
"github.com/edgelesssys/constellation/internal/config"
|
|
"github.com/edgelesssys/constellation/internal/file"
|
|
)
|
|
|
|
func readConfig(out io.Writer, fileHandler file.Handler, name string, provider cloudprovider.Provider) (*config.Config, error) {
|
|
if name == "" {
|
|
return config.Default(), nil
|
|
}
|
|
|
|
cnf, err := config.FromFile(fileHandler, name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := validateConfig(out, cnf, provider); err != nil {
|
|
return nil, err
|
|
}
|
|
return cnf, nil
|
|
}
|
|
|
|
func validateConfig(out io.Writer, cnf *config.Config, provider cloudprovider.Provider) error {
|
|
msgs, err := cnf.Validate()
|
|
if err != nil {
|
|
return fmt.Errorf("performing config validation: %w", err)
|
|
}
|
|
|
|
if len(msgs) > 0 {
|
|
fmt.Fprintln(out, "Invalid fields in config file:")
|
|
for _, m := range msgs {
|
|
fmt.Fprintln(out, "\t"+m)
|
|
}
|
|
fmt.Fprintln(out, "Fix the invalid entries or generate a new configuration using `constellation config generate`")
|
|
return errors.New("invalid configuration")
|
|
}
|
|
|
|
if provider != cloudprovider.Unknown && !cnf.HasProvider(provider) {
|
|
return fmt.Errorf("configuration doesn't contain provider: %v", provider)
|
|
}
|
|
|
|
return nil
|
|
}
|