mirror of https://github.com/databricks/cli.git
44 lines
965 B
Go
44 lines
965 B
Go
package root
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/databricks/cli/libs/cmdio"
|
|
"github.com/databricks/cli/libs/flags"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
const envOutputFormat = "DATABRICKS_OUTPUT_FORMAT"
|
|
|
|
var outputType flags.Output = flags.OutputText
|
|
|
|
func init() {
|
|
// Configure defaults from environment, if applicable.
|
|
// If the provided value is invalid it is ignored.
|
|
if v, ok := os.LookupEnv(envOutputFormat); ok {
|
|
outputType.Set(v)
|
|
}
|
|
|
|
RootCmd.PersistentFlags().VarP(&outputType, "output", "o", "output type: text or json")
|
|
}
|
|
|
|
func OutputType() flags.Output {
|
|
return outputType
|
|
}
|
|
|
|
func initializeIO(cmd *cobra.Command) error {
|
|
templates := make(map[string]string, 0)
|
|
for k, v := range cmd.Annotations {
|
|
if strings.Contains(k, "template") {
|
|
templates[k] = v
|
|
}
|
|
}
|
|
|
|
cmdIO := cmdio.NewIO(outputType, cmd.InOrStdin(), cmd.OutOrStdout(), cmd.ErrOrStderr(), templates)
|
|
ctx := cmdio.InContext(cmd.Context(), cmdIO)
|
|
cmd.SetContext(ctx)
|
|
|
|
return nil
|
|
}
|