mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
e347090571
* refactor: move from io/ioutil to io and os packages The io/ioutil package has been deprecated as of Go 1.16, see https://golang.org/doc/go1.16#ioutil. This commit replaces the existing io/ioutil functions with their new definitions in io and os packages. Signed-off-by: Eng Zer Jun <engzerjun@gmail.com> * build: update snapcraft `go-channel` to 1.17 Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
98 lines
2.6 KiB
Go
98 lines
2.6 KiB
Go
package yqlib
|
|
|
|
import (
|
|
"bufio"
|
|
"container/list"
|
|
"fmt"
|
|
"os"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
type loadPrefs struct {
|
|
loadAsString bool
|
|
decoder Decoder
|
|
}
|
|
|
|
func loadString(filename string) (*CandidateNode, error) {
|
|
// ignore CWE-22 gosec issue - that's more targeted for http based apps that run in a public directory,
|
|
// and ensuring that it's not possible to give a path to a file outside that directory.
|
|
|
|
filebytes, err := os.ReadFile(filename) // #nosec
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &CandidateNode{Node: &yaml.Node{Kind: yaml.ScalarNode, Tag: "!!str", Value: string(filebytes)}}, nil
|
|
}
|
|
|
|
func loadYaml(filename string, decoder Decoder) (*CandidateNode, error) {
|
|
|
|
file, err := os.Open(filename) // #nosec
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
reader := bufio.NewReader(file)
|
|
|
|
documents, err := readDocuments(reader, filename, 0, decoder)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if documents.Len() == 0 {
|
|
// return null candidate
|
|
return &CandidateNode{Node: &yaml.Node{Kind: yaml.ScalarNode, Tag: "!!null"}}, nil
|
|
} else if documents.Len() == 1 {
|
|
return documents.Front().Value.(*CandidateNode), nil
|
|
|
|
} else {
|
|
sequenceNode := &CandidateNode{Node: &yaml.Node{Kind: yaml.SequenceNode}}
|
|
for doc := documents.Front(); doc != nil; doc = doc.Next() {
|
|
sequenceNode.Node.Content = append(sequenceNode.Node.Content, doc.Value.(*CandidateNode).Node)
|
|
}
|
|
return sequenceNode, nil
|
|
}
|
|
}
|
|
|
|
func loadYamlOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
log.Debugf("loadYamlOperator")
|
|
|
|
loadPrefs := expressionNode.Operation.Preferences.(loadPrefs)
|
|
|
|
// need to evaluate the 1st parameter against the context
|
|
// and return the data accordingly.
|
|
|
|
var results = list.New()
|
|
|
|
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
candidate := el.Value.(*CandidateNode)
|
|
|
|
rhs, err := d.GetMatchingNodes(context.SingleReadonlyChildContext(candidate), expressionNode.Rhs)
|
|
if err != nil {
|
|
return Context{}, err
|
|
}
|
|
if rhs.MatchingNodes.Front() == nil {
|
|
return Context{}, fmt.Errorf("Filename expression returned nil")
|
|
}
|
|
nameCandidateNode := rhs.MatchingNodes.Front().Value.(*CandidateNode)
|
|
|
|
filename := nameCandidateNode.Node.Value
|
|
|
|
var contentsCandidate *CandidateNode
|
|
|
|
if loadPrefs.loadAsString {
|
|
contentsCandidate, err = loadString(filename)
|
|
} else {
|
|
contentsCandidate, err = loadYaml(filename, loadPrefs.decoder)
|
|
}
|
|
if err != nil {
|
|
return Context{}, fmt.Errorf("Failed to load %v: %w", filename, err)
|
|
}
|
|
|
|
results.PushBack(contentsCandidate)
|
|
|
|
}
|
|
|
|
return context.ChildContext(results), nil
|
|
}
|