trufflehog/pkg/protoyaml/protoyaml.go

40 lines
1 KiB
Go
Raw Normal View History

package protoyaml
import (
"google.golang.org/protobuf/encoding/protojson"
"google.golang.org/protobuf/proto"
"sigs.k8s.io/yaml"
)
var nonStrict = protojson.UnmarshalOptions{DiscardUnknown: true}
var strict = protojson.UnmarshalOptions{DiscardUnknown: false}
// Marshal writes the given proto.Message in YAML format.
func Marshal(m proto.Message) ([]byte, error) {
json, err := protojson.Marshal(m)
if err != nil {
return nil, err
}
return yaml.JSONToYAML(json)
}
// Unmarshal reads the given []byte into the given proto.Message, discarding
// any unknown fields in the input.
func Unmarshal(b []byte, m proto.Message) error {
json, err := yaml.YAMLToJSON(b)
if err != nil {
return err
}
return nonStrict.Unmarshal(json, m)
}
// UnmarshalStrict reads the given []byte into the given proto.Message. If there
// are any unknown fields in the input, an error is returned.
func UnmarshalStrict(b []byte, m proto.Message) error {
json, err := yaml.YAMLToJSON(b)
if err != nil {
return err
}
return strict.Unmarshal(json, m)
}