mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-19 21:22:19 +00:00
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
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 error has contextual error types.
|
|
package error
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// YamlFormatError represents error with yaml file name where json/yaml format error happens.
|
|
type YamlFormatError struct {
|
|
Path string
|
|
ErrorMsg string
|
|
}
|
|
|
|
func (e YamlFormatError) Error() string {
|
|
return fmt.Sprintf("YAML file [%s] encounters a format error.\n%s\n", e.Path, e.ErrorMsg)
|
|
}
|
|
|
|
// Handler handles YamlFormatError
|
|
func Handler(e error, path string) error {
|
|
if isYAMLSyntaxError(e) {
|
|
return YamlFormatError{
|
|
Path: path,
|
|
ErrorMsg: e.Error(),
|
|
}
|
|
}
|
|
return e
|
|
}
|
|
|
|
func isYAMLSyntaxError(e error) bool {
|
|
return strings.Contains(e.Error(), "error converting YAML to JSON") || strings.Contains(e.Error(), "error unmarshaling JSON")
|
|
}
|