2015-10-10 23:00:22 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2017-09-22 19:58:12 +00:00
|
|
|
"fmt"
|
2017-09-21 16:01:03 +00:00
|
|
|
"strconv"
|
2017-09-20 23:40:33 +00:00
|
|
|
|
2018-06-18 01:12:52 +00:00
|
|
|
yaml "gopkg.in/mikefarah/yaml.v2"
|
2015-10-10 23:00:22 +00:00
|
|
|
)
|
|
|
|
|
2017-09-22 19:58:12 +00:00
|
|
|
func jsonToString(context interface{}) (string, error) {
|
2015-10-10 23:00:22 +00:00
|
|
|
out, err := json.Marshal(toJSON(context))
|
|
|
|
if err != nil {
|
2017-09-22 19:58:12 +00:00
|
|
|
return "", fmt.Errorf("error printing yaml as json: %v", err)
|
2015-10-10 23:00:22 +00:00
|
|
|
}
|
2017-09-22 19:58:12 +00:00
|
|
|
return string(out), nil
|
2015-10-10 23:00:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func toJSON(context interface{}) interface{} {
|
|
|
|
switch context.(type) {
|
|
|
|
case []interface{}:
|
|
|
|
oldArray := context.([]interface{})
|
|
|
|
newArray := make([]interface{}, len(oldArray))
|
|
|
|
for index, value := range oldArray {
|
|
|
|
newArray[index] = toJSON(value)
|
|
|
|
}
|
|
|
|
return newArray
|
2017-02-26 22:01:52 +00:00
|
|
|
case yaml.MapSlice:
|
|
|
|
oldMap := context.(yaml.MapSlice)
|
2015-10-10 23:00:22 +00:00
|
|
|
newMap := make(map[string]interface{})
|
2017-02-26 22:01:52 +00:00
|
|
|
for _, entry := range oldMap {
|
2017-09-21 16:01:03 +00:00
|
|
|
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)
|
|
|
|
}
|
2015-10-10 23:00:22 +00:00
|
|
|
}
|
|
|
|
return newMap
|
|
|
|
default:
|
|
|
|
return context
|
|
|
|
}
|
|
|
|
}
|