2023-01-23 14:00:11 +00:00
|
|
|
package bundle
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"reflect"
|
|
|
|
|
2023-05-16 16:35:39 +00:00
|
|
|
"github.com/databricks/cli/bundle/config"
|
|
|
|
"github.com/databricks/cli/bundle/schema"
|
2023-01-23 14:00:11 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2023-07-27 10:03:08 +00:00
|
|
|
func newSchemaCommand() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "schema",
|
|
|
|
Short: "Generate JSON Schema for bundle configuration",
|
2024-03-01 15:50:20 +00:00
|
|
|
Args: cobra.NoArgs,
|
2023-07-27 10:03:08 +00:00
|
|
|
}
|
2023-01-23 14:00:11 +00:00
|
|
|
|
2023-07-27 10:03:08 +00:00
|
|
|
cmd.RunE = func(cmd *cobra.Command, args []string) error {
|
2023-12-06 10:45:18 +00:00
|
|
|
// Load embedded schema descriptions.
|
|
|
|
docs, err := schema.LoadBundleDescriptions()
|
2023-01-23 14:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-12-06 10:45:18 +00:00
|
|
|
|
|
|
|
// Generate the JSON schema from the bundle configuration struct in Go.
|
2023-01-23 14:00:11 +00:00
|
|
|
schema, err := schema.New(reflect.TypeOf(config.Root{}), docs)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-12-06 10:45:18 +00:00
|
|
|
|
|
|
|
// Print the JSON schema to stdout.
|
2023-03-15 02:18:51 +00:00
|
|
|
result, err := json.MarshalIndent(schema, "", " ")
|
2023-01-23 14:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-03-15 02:18:51 +00:00
|
|
|
cmd.OutOrStdout().Write(result)
|
2023-01-23 14:00:11 +00:00
|
|
|
return nil
|
2023-07-27 10:03:08 +00:00
|
|
|
}
|
2023-03-15 02:18:51 +00:00
|
|
|
|
2023-07-27 10:03:08 +00:00
|
|
|
return cmd
|
2023-01-23 14:00:11 +00:00
|
|
|
}
|