mirror of https://github.com/databricks/cli.git
73 lines
1.7 KiB
Go
73 lines
1.7 KiB
Go
|
package git
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"context"
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
"os/exec"
|
||
|
"regexp"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
// source: https://stackoverflow.com/questions/59081778/rules-for-special-characters-in-github-repository-name
|
||
|
var githubRepoRegex = regexp.MustCompile(`^[\w-\.]+$`)
|
||
|
|
||
|
const githubUrl = "https://github.com"
|
||
|
const databricksOrg = "databricks"
|
||
|
|
||
|
type cloneOptions struct {
|
||
|
// Branch or tag to clone
|
||
|
Reference string
|
||
|
|
||
|
// URL for the repository
|
||
|
RepositoryUrl string
|
||
|
|
||
|
// Local path to clone repository at
|
||
|
TargetPath string
|
||
|
}
|
||
|
|
||
|
func (opts cloneOptions) args() []string {
|
||
|
args := []string{"clone", opts.RepositoryUrl, opts.TargetPath, "--depth=1", "--no-tags"}
|
||
|
if opts.Reference != "" {
|
||
|
args = append(args, "--branch", opts.Reference)
|
||
|
}
|
||
|
return args
|
||
|
}
|
||
|
|
||
|
func Clone(ctx context.Context, url, reference, targetPath string) error {
|
||
|
// We assume only the repository name has been if input does not contain any
|
||
|
// `/` characters and the url is only made up of alphanumeric characters and
|
||
|
// ".", "_" and "-". This repository is resolved again databricks github account.
|
||
|
fullUrl := url
|
||
|
if githubRepoRegex.MatchString(url) {
|
||
|
fullUrl = strings.Join([]string{githubUrl, databricksOrg, url}, "/")
|
||
|
}
|
||
|
|
||
|
opts := cloneOptions{
|
||
|
Reference: reference,
|
||
|
RepositoryUrl: fullUrl,
|
||
|
TargetPath: targetPath,
|
||
|
}
|
||
|
|
||
|
cmd := exec.CommandContext(ctx, "git", opts.args()...)
|
||
|
var cmdErr bytes.Buffer
|
||
|
cmd.Stderr = &cmdErr
|
||
|
|
||
|
// start git clone
|
||
|
err := cmd.Start()
|
||
|
if errors.Is(err, exec.ErrNotFound) {
|
||
|
return fmt.Errorf("please install git CLI to clone a repository: %w", err)
|
||
|
}
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
// wait for git clone to complete
|
||
|
err = cmd.Wait()
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("git clone failed: %w. %s", err, cmdErr.String())
|
||
|
}
|
||
|
return nil
|
||
|
}
|