mirror of https://github.com/databricks/cli.git
176 lines
5.0 KiB
Go
176 lines
5.0 KiB
Go
package bundle
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"slices"
|
|
"strings"
|
|
|
|
"github.com/databricks/cli/cmd/root"
|
|
"github.com/databricks/cli/libs/cmdio"
|
|
"github.com/databricks/cli/libs/git"
|
|
"github.com/databricks/cli/libs/template"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var gitUrlPrefixes = []string{
|
|
"https://",
|
|
"git@",
|
|
}
|
|
|
|
type nativeTemplate struct {
|
|
name string
|
|
gitUrl string
|
|
description string
|
|
aliases []string
|
|
}
|
|
|
|
var nativeTemplates = []nativeTemplate{
|
|
{
|
|
name: "default-python",
|
|
description: "The default Python template",
|
|
},
|
|
{
|
|
name: "mlops-stacks",
|
|
gitUrl: "https://github.com/databricks/mlops-stacks",
|
|
description: "The Databricks MLOps Stacks template (https://github.com/databricks/mlops-stacks)",
|
|
aliases: []string{"mlops-stack"},
|
|
},
|
|
}
|
|
|
|
func nativeTemplateDescriptions() string {
|
|
var lines []string
|
|
for _, template := range nativeTemplates {
|
|
lines = append(lines, fmt.Sprintf("- %s: %s", template.name, template.description))
|
|
}
|
|
return strings.Join(lines, "\n")
|
|
}
|
|
|
|
func nativeTemplateOptions() []string {
|
|
names := make([]string, 0, len(nativeTemplates))
|
|
for _, template := range nativeTemplates {
|
|
names = append(names, template.name)
|
|
}
|
|
return names
|
|
}
|
|
|
|
func getUrlForNativeTemplate(name string) string {
|
|
for _, template := range nativeTemplates {
|
|
if template.name == name {
|
|
return template.gitUrl
|
|
}
|
|
if slices.Contains(template.aliases, name) {
|
|
return template.gitUrl
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func isRepoUrl(url string) bool {
|
|
result := false
|
|
for _, prefix := range gitUrlPrefixes {
|
|
if strings.HasPrefix(url, prefix) {
|
|
result = true
|
|
break
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
// Computes the repo name from the repo URL. Treats the last non empty word
|
|
// when splitting at '/' as the repo name. For example: for url git@github.com:databricks/cli.git
|
|
// the name would be "cli.git"
|
|
func repoName(url string) string {
|
|
parts := strings.Split(strings.TrimRight(url, "/"), "/")
|
|
return parts[len(parts)-1]
|
|
}
|
|
|
|
func newInitCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "init [TEMPLATE_PATH]",
|
|
Short: "Initialize using a bundle template",
|
|
Args: cobra.MaximumNArgs(1),
|
|
Long: fmt.Sprintf(`Initialize using a bundle template.
|
|
|
|
TEMPLATE_PATH optionally specifies which template to use. It can be one of the following:
|
|
%s
|
|
- a local file system path with a template directory
|
|
- a Git repository URL, e.g. https://github.com/my/repository
|
|
|
|
See https://docs.databricks.com/en/dev-tools/bundles/templates.html for more information on templates.`, nativeTemplateDescriptions()),
|
|
}
|
|
|
|
var configFile string
|
|
var outputDir string
|
|
var templateDir string
|
|
var tag string
|
|
var branch string
|
|
cmd.Flags().StringVar(&configFile, "config-file", "", "File containing input parameters for template initialization.")
|
|
cmd.Flags().StringVar(&templateDir, "template-dir", "", "Directory path within a Git repository containing the template.")
|
|
cmd.Flags().StringVar(&outputDir, "output-dir", "", "Directory to write the initialized template to.")
|
|
cmd.Flags().StringVar(&branch, "tag", "", "Git tag to use for template initialization")
|
|
cmd.Flags().StringVar(&tag, "branch", "", "Git branch to use for template initialization")
|
|
|
|
cmd.PreRunE = root.MustWorkspaceClient
|
|
cmd.RunE = func(cmd *cobra.Command, args []string) error {
|
|
if tag != "" && branch != "" {
|
|
return errors.New("only one of --tag or --branch can be specified")
|
|
}
|
|
|
|
// Git ref to use for template initialization
|
|
ref := branch
|
|
if tag != "" {
|
|
ref = tag
|
|
}
|
|
|
|
ctx := cmd.Context()
|
|
var templatePath string
|
|
if len(args) > 0 {
|
|
templatePath = args[0]
|
|
} else {
|
|
var err error
|
|
if !cmdio.IsOutTTY(ctx) || !cmdio.IsInTTY(ctx) {
|
|
return errors.New("please specify a template")
|
|
}
|
|
templatePath, err = cmdio.AskSelect(ctx, "Template to use", nativeTemplateOptions())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
// Expand templatePath to a git URL if it's an alias for a known native template
|
|
// and we know it's git URL.
|
|
if gitUrl := getUrlForNativeTemplate(templatePath); gitUrl != "" {
|
|
templatePath = gitUrl
|
|
}
|
|
|
|
if !isRepoUrl(templatePath) {
|
|
if templateDir != "" {
|
|
return errors.New("--template-dir can only be used with a Git repository URL")
|
|
}
|
|
// skip downloading the repo because input arg is not a URL. We assume
|
|
// it's a path on the local file system in that case
|
|
return template.Materialize(ctx, configFile, templatePath, outputDir)
|
|
}
|
|
|
|
// Create a temporary directory with the name of the repository. The '*'
|
|
// character is replaced by a random string in the generated temporary directory.
|
|
repoDir, err := os.MkdirTemp("", repoName(templatePath)+"-*")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// TODO: Add automated test that the downloaded git repo is cleaned up.
|
|
// Clone the repository in the temporary directory
|
|
err = git.Clone(ctx, templatePath, ref, repoDir)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// Clean up downloaded repository once the template is materialized.
|
|
defer os.RemoveAll(repoDir)
|
|
return template.Materialize(ctx, configFile, filepath.Join(repoDir, templateDir), outputDir)
|
|
}
|
|
return cmd
|
|
}
|