2020-10-15 19:40:56 +00:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
// Package supervisor contains functionality to load/store Config's from/to
|
|
|
|
// some source.
|
|
|
|
package supervisor
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2020-10-28 18:56:50 +00:00
|
|
|
"strings"
|
2020-10-15 19:40:56 +00:00
|
|
|
|
|
|
|
"sigs.k8s.io/yaml"
|
2020-10-28 18:56:50 +00:00
|
|
|
|
|
|
|
"go.pinniped.dev/internal/constable"
|
2020-11-10 14:57:29 +00:00
|
|
|
"go.pinniped.dev/internal/plog"
|
2020-10-15 19:40:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// FromPath loads an Config from a provided local file path, inserts any
|
|
|
|
// defaults (from the Config documentation), and verifies that the config is
|
|
|
|
// valid (Config documentation).
|
|
|
|
func FromPath(path string) (*Config, error) {
|
|
|
|
data, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("read file: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var config Config
|
|
|
|
if err := yaml.Unmarshal(data, &config); err != nil {
|
|
|
|
return nil, fmt.Errorf("decode yaml: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Labels == nil {
|
|
|
|
config.Labels = make(map[string]string)
|
|
|
|
}
|
|
|
|
|
2020-10-28 18:56:50 +00:00
|
|
|
if err := validateNames(&config.NamesConfig); err != nil {
|
|
|
|
return nil, fmt.Errorf("validate names: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-11-10 14:57:29 +00:00
|
|
|
if err := plog.ValidateAndSetLogLevelGlobally(config.LogLevel); err != nil {
|
|
|
|
return nil, fmt.Errorf("validate log level: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-10-15 19:40:56 +00:00
|
|
|
return &config, nil
|
|
|
|
}
|
2020-10-28 18:56:50 +00:00
|
|
|
|
|
|
|
func validateNames(names *NamesConfigSpec) error {
|
|
|
|
missingNames := []string{}
|
|
|
|
if names.DefaultTLSCertificateSecret == "" {
|
|
|
|
missingNames = append(missingNames, "defaultTLSCertificateSecret")
|
|
|
|
}
|
|
|
|
if len(missingNames) > 0 {
|
|
|
|
return constable.Error("missing required names: " + strings.Join(missingNames, ", "))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|