mirror of
https://github.com/TECHNOFAB11/jsonnet-bundler.git
synced 2025-12-11 23:50:05 +01:00
251 lines
6.4 KiB
Go
251 lines
6.4 KiB
Go
// Copyright 2018 jsonnet-bundler 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 pkg
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"crypto/sha256"
|
|
"encoding/hex"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/jsonnet-bundler/jsonnet-bundler/spec/v1/deps"
|
|
)
|
|
|
|
type GitPackage struct {
|
|
Source *deps.Git
|
|
}
|
|
|
|
func NewGitPackage(source *deps.Git) Interface {
|
|
return &GitPackage{
|
|
Source: source,
|
|
}
|
|
}
|
|
|
|
var GitQuiet = false
|
|
|
|
func downloadGitHubArchive(filepath string, url string) error {
|
|
// Get the data
|
|
resp, err := http.Get(url)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !GitQuiet {
|
|
color.Cyan("GET %s %d", url, resp.StatusCode)
|
|
}
|
|
if resp.StatusCode != 200 {
|
|
return fmt.Errorf("unexpected status code %d", resp.StatusCode)
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
// Create the file
|
|
out, err := os.Create(filepath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer out.Close()
|
|
|
|
// Write the body to file
|
|
_, err = io.Copy(out, resp.Body)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func remoteResolveRef(ctx context.Context, remote string, ref string) (string, error) {
|
|
b := &bytes.Buffer{}
|
|
cmd := exec.CommandContext(ctx, "git", "ls-remote", "--heads", "--tags", "--refs", "--quiet", remote, ref)
|
|
cmd.Stdin = os.Stdin
|
|
cmd.Stdout = b
|
|
cmd.Stderr = os.Stderr
|
|
err := cmd.Run()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
commitShaPattern := regexp.MustCompile("^([0-9a-f]{40,})\\b")
|
|
commitSha := commitShaPattern.FindString(b.String())
|
|
return commitSha, nil
|
|
}
|
|
|
|
func (p *GitPackage) Install(ctx context.Context, name, dir, version string) (string, error) {
|
|
destPath := path.Join(dir, name)
|
|
|
|
pkgh := sha256.Sum256([]byte(fmt.Sprintf("jsonnetpkg-%s-%s", strings.Replace(name, "/", "-", -1), strings.Replace(version, "/", "-", -1))))
|
|
// using 16 bytes should be a good middle ground between length and collision resistance
|
|
tmpDir, err := ioutil.TempDir(filepath.Join(dir, ".tmp"), hex.EncodeToString(pkgh[:16]))
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "failed to create tmp dir")
|
|
}
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
// Optimization for GitHub sources: download a tarball archive of the requested
|
|
// version instead of cloning the entire
|
|
isGitHubRemote, err := regexp.MatchString(`^(https|ssh)://github\.com/.+$`, p.Source.Remote())
|
|
if isGitHubRemote {
|
|
// Let git ls-remote decide if "version" is a ref or a commit SHA in the unlikely
|
|
// but possible event that a ref is comprised of 40 or more hex characters
|
|
commitSha, err := remoteResolveRef(ctx, p.Source.Remote(), version)
|
|
|
|
// If the ref resolution failed and "version" looks like a SHA,
|
|
// assume it is one and proceed.
|
|
commitShaPattern := regexp.MustCompile("^([0-9a-f]{40,})$")
|
|
if commitSha == "" && commitShaPattern.MatchString(version) {
|
|
commitSha = version
|
|
}
|
|
|
|
archiveUrl := fmt.Sprintf("%s/archive/%s.tar.gz", strings.TrimSuffix(p.Source.Remote(), ".git"), commitSha)
|
|
archiveFilepath := fmt.Sprintf("%s.tar.gz", tmpDir)
|
|
|
|
defer os.Remove(archiveFilepath)
|
|
err = downloadGitHubArchive(archiveFilepath, archiveUrl)
|
|
if err == nil {
|
|
var ar *os.File
|
|
ar, err = os.Open(archiveFilepath)
|
|
defer ar.Close()
|
|
if err == nil {
|
|
// Extract the sub-directory (if any) from the archive
|
|
// If none specified, the entire archive is unpacked
|
|
err = GzipUntar(tmpDir, ar, p.Source.Subdir)
|
|
|
|
// Move the extracted directory to its final destination
|
|
if err == nil {
|
|
if err := os.MkdirAll(filepath.Dir(destPath), os.ModePerm); err != nil {
|
|
panic(err)
|
|
}
|
|
if err := os.Rename(path.Join(tmpDir, p.Source.Subdir), destPath); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if err == nil {
|
|
return commitSha, nil
|
|
}
|
|
|
|
// The repository may be private or the archive download may not work
|
|
// for other reasons. In any case, fall back to the slower git-based installation.
|
|
color.Yellow("archive install failed: %s", err)
|
|
color.Yellow("retrying with git...")
|
|
}
|
|
|
|
gitCmd := func(args ...string) *exec.Cmd {
|
|
cmd := exec.CommandContext(ctx, "git", args...)
|
|
cmd.Stdin = os.Stdin
|
|
if GitQuiet {
|
|
cmd.Stdout = nil
|
|
cmd.Stderr = nil
|
|
} else {
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stderr = os.Stderr
|
|
}
|
|
cmd.Dir = tmpDir
|
|
return cmd
|
|
}
|
|
|
|
cmd := gitCmd("init")
|
|
err = cmd.Run()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
cmd = gitCmd("remote", "add", "origin", p.Source.Remote())
|
|
err = cmd.Run()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Attempt shallow fetch at specific revision
|
|
cmd = gitCmd("fetch", "--tags", "--depth", "1", "origin", version)
|
|
err = cmd.Run()
|
|
if err != nil {
|
|
// Fall back to normal fetch (all revisions)
|
|
cmd = gitCmd("fetch", "origin")
|
|
err = cmd.Run()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
}
|
|
|
|
// Sparse checkout optimization: if a Subdir is specified,
|
|
// there is no need to do a full checkout
|
|
if p.Source.Subdir != "" {
|
|
cmd = gitCmd("config", "core.sparsecheckout", "true")
|
|
err = cmd.Run()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
glob := []byte(p.Source.Subdir + "/*\n")
|
|
err = ioutil.WriteFile(filepath.Join(tmpDir, ".git", "info", "sparse-checkout"), glob, 0644)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
}
|
|
|
|
cmd = gitCmd("-c", "advice.detachedHead=false", "checkout", version)
|
|
err = cmd.Run()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
b := bytes.NewBuffer(nil)
|
|
cmd = exec.CommandContext(ctx, "git", "rev-parse", "HEAD")
|
|
cmd.Stdout = b
|
|
cmd.Dir = tmpDir
|
|
err = cmd.Run()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
commitHash := strings.TrimSpace(b.String())
|
|
|
|
err = os.RemoveAll(path.Join(tmpDir, ".git"))
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
err = os.MkdirAll(path.Dir(destPath), os.ModePerm)
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "failed to create parent path")
|
|
}
|
|
|
|
err = os.RemoveAll(destPath)
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "failed to clean previous destination path")
|
|
}
|
|
|
|
err = os.Rename(path.Join(tmpDir, p.Source.Subdir), destPath)
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "failed to move package")
|
|
}
|
|
|
|
return commitHash, nil
|
|
}
|