k3s/pkg/kubectl/cmd/config/set.go

209 lines
5.3 KiB
Go
Raw Normal View History

2014-12-17 13:03:03 +00:00
/*
Copyright 2014 The Kubernetes Authors All rights reserved.
2014-12-17 13:03:03 +00:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package config
import (
"errors"
"fmt"
"io"
"reflect"
"strings"
"github.com/spf13/cobra"
)
const (
cannotHaveStepsAfterError = "Cannot have steps after %v. %v are remaining"
additionStepRequiredUnlessUnsettingError = "Must have additional steps after %v unless you are unsetting it"
)
type setOptions struct {
2015-04-10 12:54:22 +00:00
configAccess ConfigAccess
2014-12-17 13:03:03 +00:00
propertyName string
propertyValue string
}
const set_long = `Sets an individual value in a kubeconfig file
PROPERTY_NAME is a dot delimited name where each token represents either a attribute name or a map key. Map keys may not contain dots.
PROPERTY_VALUE is the new value you wish to set.`
2015-04-10 12:54:22 +00:00
func NewCmdConfigSet(out io.Writer, configAccess ConfigAccess) *cobra.Command {
options := &setOptions{configAccess: configAccess}
2014-12-17 13:03:03 +00:00
cmd := &cobra.Command{
Use: "set PROPERTY_NAME PROPERTY_VALUE",
Short: "Sets an individual value in a kubeconfig file",
Long: set_long,
2014-12-17 13:03:03 +00:00
Run: func(cmd *cobra.Command, args []string) {
if !options.complete(cmd) {
return
}
err := options.run()
if err != nil {
fmt.Fprintf(out, "%v\n", err)
} else {
fmt.Fprintf(out, "property %q set.\n", options.propertyName)
2014-12-17 13:03:03 +00:00
}
},
}
return cmd
}
func (o setOptions) run() error {
err := o.validate()
if err != nil {
return err
}
2015-04-10 12:54:22 +00:00
config, err := o.configAccess.GetStartingConfig()
2014-12-17 13:03:03 +00:00
if err != nil {
return err
}
2015-02-10 15:00:24 +00:00
steps, err := newNavigationSteps(o.propertyName)
if err != nil {
return err
}
err = modifyConfig(reflect.ValueOf(config), steps, o.propertyValue, false)
2014-12-17 13:03:03 +00:00
if err != nil {
return err
}
2015-06-29 20:27:31 +00:00
if err := ModifyConfig(o.configAccess, *config, false); err != nil {
2014-12-17 13:03:03 +00:00
return err
}
return nil
}
func (o *setOptions) complete(cmd *cobra.Command) bool {
endingArgs := cmd.Flags().Args()
if len(endingArgs) != 2 {
cmd.Help()
return false
}
o.propertyValue = endingArgs[1]
o.propertyName = endingArgs[0]
return true
}
func (o setOptions) validate() error {
if len(o.propertyValue) == 0 {
return errors.New("you cannot use set to unset a property")
2014-12-17 13:03:03 +00:00
}
if len(o.propertyName) == 0 {
return errors.New("you must specify a property")
2014-12-17 13:03:03 +00:00
}
2015-04-10 12:54:22 +00:00
return nil
2014-12-17 13:03:03 +00:00
}
2015-02-10 15:00:24 +00:00
func modifyConfig(curr reflect.Value, steps *navigationSteps, propertyValue string, unset bool) error {
currStep := steps.pop()
2014-12-17 13:03:03 +00:00
actualCurrValue := curr
if curr.Kind() == reflect.Ptr {
actualCurrValue = curr.Elem()
}
switch actualCurrValue.Kind() {
case reflect.Map:
2015-02-10 15:00:24 +00:00
if !steps.moreStepsRemaining() && !unset {
return fmt.Errorf("can't set a map to a value: %v", actualCurrValue)
2014-12-17 13:03:03 +00:00
}
2015-02-10 15:00:24 +00:00
mapKey := reflect.ValueOf(currStep.stepValue)
2014-12-17 13:03:03 +00:00
mapValueType := curr.Type().Elem().Elem()
2015-02-10 15:00:24 +00:00
if !steps.moreStepsRemaining() && unset {
2014-12-17 13:03:03 +00:00
actualCurrValue.SetMapIndex(mapKey, reflect.Value{})
return nil
}
currMapValue := actualCurrValue.MapIndex(mapKey)
needToSetNewMapValue := currMapValue.Kind() == reflect.Invalid
if needToSetNewMapValue {
currMapValue = reflect.New(mapValueType.Elem()).Elem().Addr()
2014-12-17 13:03:03 +00:00
actualCurrValue.SetMapIndex(mapKey, currMapValue)
}
err := modifyConfig(currMapValue, steps, propertyValue, unset)
2014-12-17 13:03:03 +00:00
if err != nil {
return err
}
return nil
case reflect.String:
if steps.moreStepsRemaining() {
return fmt.Errorf("can't have more steps after a string. %v", steps)
2014-12-17 13:03:03 +00:00
}
actualCurrValue.SetString(propertyValue)
return nil
case reflect.Bool:
if steps.moreStepsRemaining() {
return fmt.Errorf("can't have more steps after a bool. %v", steps)
2014-12-17 13:03:03 +00:00
}
boolValue, err := toBool(propertyValue)
if err != nil {
return err
}
actualCurrValue.SetBool(boolValue)
return nil
case reflect.Struct:
for fieldIndex := 0; fieldIndex < actualCurrValue.NumField(); fieldIndex++ {
currFieldValue := actualCurrValue.Field(fieldIndex)
currFieldType := actualCurrValue.Type().Field(fieldIndex)
currYamlTag := currFieldType.Tag.Get("json")
currFieldTypeYamlName := strings.Split(currYamlTag, ",")[0]
2015-02-10 15:00:24 +00:00
if currFieldTypeYamlName == currStep.stepValue {
2014-12-17 13:03:03 +00:00
thisMapHasNoValue := (currFieldValue.Kind() == reflect.Map && currFieldValue.IsNil())
if thisMapHasNoValue {
newValue := reflect.MakeMap(currFieldValue.Type())
currFieldValue.Set(newValue)
2015-02-10 15:00:24 +00:00
if !steps.moreStepsRemaining() && unset {
2014-12-17 13:03:03 +00:00
return nil
}
}
2015-02-10 15:00:24 +00:00
if !steps.moreStepsRemaining() && unset {
2014-12-17 13:03:03 +00:00
// if we're supposed to unset the value or if the value is a map that doesn't exist, create a new value and overwrite
newValue := reflect.New(currFieldValue.Type()).Elem()
currFieldValue.Set(newValue)
return nil
}
2015-02-10 15:00:24 +00:00
return modifyConfig(currFieldValue.Addr(), steps, propertyValue, unset)
2014-12-17 13:03:03 +00:00
}
}
return fmt.Errorf("unable to locate path %#v under %v", currStep, actualCurrValue)
2014-12-17 13:03:03 +00:00
}
panic(fmt.Errorf("unrecognized type: %v", actualCurrValue))
2014-12-17 13:03:03 +00:00
}