2020-01-13 09:11:56 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mikefarah/yq/v3/pkg/yqlib"
|
|
|
|
errors "github.com/pkg/errors"
|
|
|
|
"github.com/spf13/cobra"
|
2020-02-07 05:32:39 +00:00
|
|
|
yaml "gopkg.in/yaml.v3"
|
2020-01-13 09:11:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func createMergeCmd() *cobra.Command {
|
|
|
|
var cmdMerge = &cobra.Command{
|
|
|
|
Use: "merge [initial_yaml_file] [additional_yaml_file]...",
|
|
|
|
Aliases: []string{"m"},
|
2020-07-17 03:26:20 +00:00
|
|
|
Short: "yq m [--inplace/-i] [--doc/-d index] [--overwrite/-x] [--arrayMerge/-a strategy] sample.yaml sample2.yaml",
|
2020-01-13 09:11:56 +00:00
|
|
|
Example: `
|
|
|
|
yq merge things.yaml other.yaml
|
|
|
|
yq merge --inplace things.yaml other.yaml
|
|
|
|
yq m -i things.yaml other.yaml
|
|
|
|
yq m --overwrite things.yaml other.yaml
|
|
|
|
yq m -i -x things.yaml other.yaml
|
2020-07-17 03:26:20 +00:00
|
|
|
yq m -i -a=append things.yaml other.yaml
|
2020-01-13 09:11:56 +00:00
|
|
|
yq m -i --autocreate=false things.yaml other.yaml
|
|
|
|
`,
|
|
|
|
Long: `Updates the yaml file by adding/updating the path(s) and value(s) from additional yaml file(s).
|
|
|
|
Outputs to STDOUT unless the inplace flag is used, in which case the file is updated instead.
|
|
|
|
|
|
|
|
If overwrite flag is set then existing values will be overwritten using the values from each additional yaml file.
|
|
|
|
If append flag is set then existing arrays will be merged with the arrays from each additional yaml file.
|
|
|
|
`,
|
|
|
|
RunE: mergeProperties,
|
|
|
|
}
|
|
|
|
cmdMerge.PersistentFlags().BoolVarP(&writeInplace, "inplace", "i", false, "update the yaml file inplace")
|
|
|
|
cmdMerge.PersistentFlags().BoolVarP(&overwriteFlag, "overwrite", "x", false, "update the yaml file by overwriting existing values")
|
|
|
|
cmdMerge.PersistentFlags().BoolVarP(&autoCreateFlag, "autocreate", "c", true, "automatically create any missing entries")
|
2020-07-17 05:51:03 +00:00
|
|
|
cmdMerge.PersistentFlags().StringVarP(&arrayMergeStrategyFlag, "arrays", "a", "update", `array merge strategy (update/append/overwrite)
|
|
|
|
update: recursively update arrays by their index
|
|
|
|
append: concatenate arrays together
|
2020-09-13 01:04:48 +00:00
|
|
|
overwrite: replace arrays
|
|
|
|
`)
|
2020-07-17 05:51:03 +00:00
|
|
|
cmdMerge.PersistentFlags().StringVarP(&commentsMergeStrategyFlag, "comments", "", "setWhenBlank", `comments merge strategy (setWhenBlank/ignore/append/overwrite)
|
|
|
|
setWhenBlank: set comment if the original document has no comment at that node
|
|
|
|
ignore: leave comments as-is in the original
|
|
|
|
append: append comments together
|
2020-09-13 01:04:48 +00:00
|
|
|
overwrite: overwrite comments completely
|
|
|
|
`)
|
2020-01-13 09:11:56 +00:00
|
|
|
cmdMerge.PersistentFlags().StringVarP(&docIndex, "doc", "d", "0", "process document index number (0 based, * for all documents)")
|
|
|
|
return cmdMerge
|
|
|
|
}
|
|
|
|
|
2020-02-07 05:32:39 +00:00
|
|
|
/*
|
|
|
|
* We don't deeply traverse arrays when appending a merge, instead we want to
|
|
|
|
* append the entire array element.
|
|
|
|
*/
|
2020-07-17 03:26:20 +00:00
|
|
|
func createReadFunctionForMerge(arrayMergeStrategy yqlib.ArrayMergeStrategy) func(*yaml.Node) ([]*yqlib.NodeContext, error) {
|
2020-02-07 05:32:39 +00:00
|
|
|
return func(dataBucket *yaml.Node) ([]*yqlib.NodeContext, error) {
|
2020-07-17 03:26:20 +00:00
|
|
|
return lib.GetForMerge(dataBucket, "**", arrayMergeStrategy)
|
2020-02-07 05:32:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-13 09:11:56 +00:00
|
|
|
func mergeProperties(cmd *cobra.Command, args []string) error {
|
|
|
|
var updateCommands []yqlib.UpdateCommand = make([]yqlib.UpdateCommand, 0)
|
|
|
|
|
2020-02-04 03:33:35 +00:00
|
|
|
if len(args) < 1 {
|
|
|
|
return errors.New("Must provide at least 1 yaml file")
|
|
|
|
}
|
2020-07-17 03:26:20 +00:00
|
|
|
var arrayMergeStrategy yqlib.ArrayMergeStrategy
|
|
|
|
|
|
|
|
switch arrayMergeStrategyFlag {
|
|
|
|
case "update":
|
|
|
|
arrayMergeStrategy = yqlib.UpdateArrayMergeStrategy
|
|
|
|
case "append":
|
|
|
|
arrayMergeStrategy = yqlib.AppendArrayMergeStrategy
|
|
|
|
case "overwrite":
|
|
|
|
arrayMergeStrategy = yqlib.OverwriteArrayMergeStrategy
|
|
|
|
default:
|
|
|
|
return errors.New("Array merge strategy must be one of: update/append/overwrite")
|
|
|
|
}
|
2020-02-04 03:33:35 +00:00
|
|
|
|
2020-07-17 05:51:03 +00:00
|
|
|
var commentsMergeStrategy yqlib.CommentsMergeStrategy
|
|
|
|
|
|
|
|
switch commentsMergeStrategyFlag {
|
|
|
|
case "setWhenBlank":
|
|
|
|
commentsMergeStrategy = yqlib.SetWhenBlankCommentsMergeStrategy
|
|
|
|
case "ignore":
|
|
|
|
commentsMergeStrategy = yqlib.IgnoreCommentsMergeStrategy
|
|
|
|
case "append":
|
|
|
|
commentsMergeStrategy = yqlib.AppendCommentsMergeStrategy
|
|
|
|
case "overwrite":
|
|
|
|
commentsMergeStrategy = yqlib.OverwriteCommentsMergeStrategy
|
|
|
|
default:
|
|
|
|
return errors.New("Comments merge strategy must be one of: setWhenBlank/ignore/append/overwrite")
|
|
|
|
}
|
|
|
|
|
2020-02-04 03:33:35 +00:00
|
|
|
if len(args) > 1 {
|
|
|
|
// first generate update commands from the file
|
|
|
|
var filesToMerge = args[1:]
|
|
|
|
|
|
|
|
for _, fileToMerge := range filesToMerge {
|
2020-07-17 03:26:20 +00:00
|
|
|
matchingNodes, errorProcessingFile := doReadYamlFile(fileToMerge, createReadFunctionForMerge(arrayMergeStrategy), false, 0)
|
2020-02-04 03:39:32 +00:00
|
|
|
if errorProcessingFile != nil {
|
2020-02-04 03:33:35 +00:00
|
|
|
return errorProcessingFile
|
|
|
|
}
|
2020-06-17 23:20:26 +00:00
|
|
|
log.Debugf("finished reading for merge!")
|
|
|
|
for _, matchingNode := range matchingNodes {
|
|
|
|
log.Debugf("matched node %v", lib.PathStackToString(matchingNode.PathStack))
|
|
|
|
yqlib.DebugNode(matchingNode.Node)
|
|
|
|
}
|
2020-02-04 03:33:35 +00:00
|
|
|
for _, matchingNode := range matchingNodes {
|
2020-07-17 03:26:20 +00:00
|
|
|
mergePath := lib.MergePathStackToString(matchingNode.PathStack, arrayMergeStrategy)
|
2020-06-17 23:20:26 +00:00
|
|
|
updateCommands = append(updateCommands, yqlib.UpdateCommand{
|
2020-07-17 05:51:03 +00:00
|
|
|
Command: "merge",
|
|
|
|
Path: mergePath,
|
|
|
|
Value: matchingNode.Node,
|
|
|
|
Overwrite: overwriteFlag,
|
|
|
|
CommentsMergeStrategy: commentsMergeStrategy,
|
2020-06-17 23:20:26 +00:00
|
|
|
// dont update the content for nodes midway, only leaf nodes
|
2020-07-17 03:26:20 +00:00
|
|
|
DontUpdateNodeContent: matchingNode.IsMiddleNode && (arrayMergeStrategy != yqlib.OverwriteArrayMergeStrategy || matchingNode.Node.Kind != yaml.SequenceNode),
|
2020-06-17 23:20:26 +00:00
|
|
|
})
|
2020-02-04 03:33:35 +00:00
|
|
|
}
|
2020-01-13 09:11:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return updateDoc(args[0], updateCommands, cmd.OutOrStdout())
|
|
|
|
}
|