2018-04-04 19:25:51 +00:00
|
|
|
/*
|
|
|
|
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 printers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type NoCompatiblePrinterError struct {
|
2018-04-24 19:38:38 +00:00
|
|
|
OutputFormat *string
|
|
|
|
Options interface{}
|
2018-04-04 19:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (e NoCompatiblePrinterError) Error() string {
|
2018-04-24 19:38:38 +00:00
|
|
|
output := ""
|
|
|
|
if e.OutputFormat != nil {
|
|
|
|
output = *e.OutputFormat
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("unable to match a printer suitable for the output format %q and the options specified: %#v", output, e.Options)
|
2018-04-04 19:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func IsNoCompatiblePrinterError(err error) bool {
|
2018-04-05 22:39:17 +00:00
|
|
|
if err == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-04-04 19:25:51 +00:00
|
|
|
_, ok := err.(NoCompatiblePrinterError)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// PrintFlags composes common printer flag structs
|
|
|
|
// used across all commands, and provides a method
|
|
|
|
// of retrieving a known printer based on flag values provided.
|
|
|
|
type PrintFlags struct {
|
|
|
|
JSONYamlPrintFlags *JSONYamlPrintFlags
|
|
|
|
NamePrintFlags *NamePrintFlags
|
|
|
|
|
|
|
|
OutputFormat *string
|
|
|
|
}
|
|
|
|
|
2018-04-05 22:39:17 +00:00
|
|
|
func (f *PrintFlags) Complete(successTemplate string) error {
|
|
|
|
return f.NamePrintFlags.Complete(successTemplate)
|
2018-04-04 19:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *PrintFlags) ToPrinter() (ResourcePrinter, error) {
|
|
|
|
outputFormat := ""
|
|
|
|
if f.OutputFormat != nil {
|
|
|
|
outputFormat = *f.OutputFormat
|
|
|
|
}
|
|
|
|
|
2018-04-05 22:39:17 +00:00
|
|
|
if p, err := f.JSONYamlPrintFlags.ToPrinter(outputFormat); !IsNoCompatiblePrinterError(err) {
|
|
|
|
return p, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if p, err := f.NamePrintFlags.ToPrinter(outputFormat); !IsNoCompatiblePrinterError(err) {
|
|
|
|
return p, err
|
2018-04-04 19:25:51 +00:00
|
|
|
}
|
|
|
|
|
2018-04-24 19:38:38 +00:00
|
|
|
return nil, NoCompatiblePrinterError{Options: f, OutputFormat: f.OutputFormat}
|
2018-04-04 19:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *PrintFlags) AddFlags(cmd *cobra.Command) {
|
|
|
|
f.JSONYamlPrintFlags.AddFlags(cmd)
|
|
|
|
f.NamePrintFlags.AddFlags(cmd)
|
|
|
|
|
|
|
|
if f.OutputFormat != nil {
|
|
|
|
cmd.Flags().StringVarP(f.OutputFormat, "output", "o", *f.OutputFormat, "Output format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 00:02:37 +00:00
|
|
|
// WithDefaultOutput sets a default output format if one is not provided through a flag value
|
|
|
|
func (f *PrintFlags) WithDefaultOutput(output string) *PrintFlags {
|
|
|
|
existingFormat := ""
|
|
|
|
if f.OutputFormat != nil {
|
|
|
|
existingFormat = *f.OutputFormat
|
|
|
|
}
|
|
|
|
if len(existingFormat) == 0 {
|
|
|
|
existingFormat = output
|
|
|
|
}
|
|
|
|
f.OutputFormat = &existingFormat
|
|
|
|
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2018-04-04 19:25:51 +00:00
|
|
|
func NewPrintFlags(operation string) *PrintFlags {
|
|
|
|
outputFormat := ""
|
|
|
|
|
|
|
|
return &PrintFlags{
|
|
|
|
OutputFormat: &outputFormat,
|
|
|
|
|
|
|
|
JSONYamlPrintFlags: NewJSONYamlPrintFlags(),
|
2018-04-06 15:36:52 +00:00
|
|
|
NamePrintFlags: NewNamePrintFlags(operation),
|
2018-04-04 19:25:51 +00:00
|
|
|
}
|
|
|
|
}
|