mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
26a09e6ec0
- Move data_navigator, json_converter, merge, and path_parser to pkg/yqlib - Extract yamlToString from yq to pkg/yqlib/yaml_converter - Move utils_test to test/utils
45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
package yqlib
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"strconv"
|
|
|
|
yaml "github.com/mikefarah/yaml/v2"
|
|
)
|
|
|
|
func JsonToString(context interface{}) (string, error) {
|
|
out, err := json.Marshal(toJSON(context))
|
|
if err != nil {
|
|
return "", fmt.Errorf("error printing yaml as json: %v", err)
|
|
}
|
|
return string(out), nil
|
|
}
|
|
|
|
func toJSON(context interface{}) interface{} {
|
|
switch context := context.(type) {
|
|
case []interface{}:
|
|
oldArray := context
|
|
newArray := make([]interface{}, len(oldArray))
|
|
for index, value := range oldArray {
|
|
newArray[index] = toJSON(value)
|
|
}
|
|
return newArray
|
|
case yaml.MapSlice:
|
|
oldMap := context
|
|
newMap := make(map[string]interface{})
|
|
for _, entry := range oldMap {
|
|
if str, ok := entry.Key.(string); ok {
|
|
newMap[str] = toJSON(entry.Value)
|
|
} else if i, ok := entry.Key.(int); ok {
|
|
newMap[strconv.Itoa(i)] = toJSON(entry.Value)
|
|
} else if b, ok := entry.Key.(bool); ok {
|
|
newMap[strconv.FormatBool(b)] = toJSON(entry.Value)
|
|
}
|
|
}
|
|
return newMap
|
|
default:
|
|
return context
|
|
}
|
|
}
|