terraform-provider-gitea/vendor/github.com/hashicorp/hc-install/product/terraform.go
Malar Invention 00ebcd295e add vendor
2022-04-03 09:37:16 +05:30

56 lines
1.3 KiB
Go

package product
import (
"context"
"fmt"
"os/exec"
"regexp"
"runtime"
"strings"
"github.com/hashicorp/go-version"
"github.com/hashicorp/hc-install/internal/build"
)
var (
simpleVersionRe = `v?(?P<version>[0-9]+(?:\.[0-9]+)*(?:-[A-Za-z0-9\.]+)?)`
terraformVersionOutputRe = regexp.MustCompile(`Terraform ` + simpleVersionRe)
)
var Terraform = Product{
Name: "terraform",
BinaryName: func() string {
if runtime.GOOS == "windows" {
return "terraform.exe"
}
return "terraform"
},
GetVersion: func(ctx context.Context, path string) (*version.Version, error) {
cmd := exec.CommandContext(ctx, path, "version")
out, err := cmd.Output()
if err != nil {
return nil, err
}
stdout := strings.TrimSpace(string(out))
submatches := terraformVersionOutputRe.FindStringSubmatch(stdout)
if len(submatches) != 2 {
return nil, fmt.Errorf("unexpected number of version matches %d for %s", len(submatches), stdout)
}
v, err := version.NewVersion(submatches[1])
if err != nil {
return nil, fmt.Errorf("unable to parse version %q: %w", submatches[1], err)
}
return v, err
},
BuildInstructions: &BuildInstructions{
GitRepoURL: "https://github.com/hashicorp/terraform.git",
PreCloneCheck: &build.GoIsInstalled{},
Build: &build.GoBuild{DetectVendoring: true},
},
}