| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package template
- import (
- "strings"
- "sigs.k8s.io/yaml"
- )
- // toYAML takes an interface, marshals it to yaml, and returns a string. It will
- // always return a string, even on marshal error (empty string).
- //
- // This is designed to be called from a template.
- func toYAML(v interface{}) string {
- data, err := yaml.Marshal(v)
- if err != nil {
- // Swallow errors inside of a template.
- return ""
- }
- return strings.TrimSuffix(string(data), "\n")
- }
- // fromYAML converts a YAML document into a map[string]interface{}.
- //
- // This is not a general-purpose YAML parser, and will not parse all valid
- // YAML documents. Additionally, because its intended use is within templates
- // it tolerates errors. It will insert the returned error message string into
- // m["Error"] in the returned map.
- func fromYAML(str string) map[string]interface{} {
- m := map[string]interface{}{}
- if err := yaml.Unmarshal([]byte(str), &m); err != nil {
- m["Error"] = err.Error()
- }
- return m
- }
|