open-nomad/client/getter/getter.go

126 lines
2.9 KiB
Go
Raw Normal View History

package getter
import (
2015-11-03 21:16:17 +00:00
"fmt"
"net/url"
2016-03-18 22:33:01 +00:00
"path/filepath"
"strings"
2016-02-18 02:48:13 +00:00
"sync"
2015-11-03 21:16:17 +00:00
gg "github.com/hashicorp/go-getter"
2016-04-12 01:46:16 +00:00
"github.com/hashicorp/nomad/client/driver/env"
2016-03-15 02:55:30 +00:00
"github.com/hashicorp/nomad/nomad/structs"
)
2016-02-18 02:48:13 +00:00
var (
// getters is the map of getters suitable for Nomad. It is initialized once
// and the lock is used to guard access to it.
getters map[string]gg.Getter
lock sync.Mutex
2016-02-23 18:33:58 +00:00
// supported is the set of download schemes supported by Nomad
supported = []string{"http", "https", "s3", "hg", "git"}
2016-02-18 02:48:13 +00:00
)
const (
// gitSSHPrefix is the prefix for dowwnloading via git using ssh
gitSSHPrefix = "git@github.com:"
)
2016-03-15 02:55:30 +00:00
// getClient returns a client that is suitable for Nomad downloading artifacts.
2016-02-18 02:48:13 +00:00
func getClient(src, dst string) *gg.Client {
lock.Lock()
defer lock.Unlock()
// Return the pre-initialized client
if getters == nil {
2016-02-23 18:33:58 +00:00
getters = make(map[string]gg.Getter, len(supported))
for _, getter := range supported {
if impl, ok := gg.Getters[getter]; ok {
getters[getter] = impl
}
2016-02-18 02:48:13 +00:00
}
}
return &gg.Client{
Src: src,
Dst: dst,
2016-03-15 02:55:30 +00:00
Mode: gg.ClientModeAny,
2016-02-18 02:48:13 +00:00
Getters: getters,
}
}
2016-03-15 02:55:30 +00:00
// getGetterUrl returns the go-getter URL to download the artifact.
2016-04-12 01:46:16 +00:00
func getGetterUrl(taskEnv *env.TaskEnvironment, artifact *structs.TaskArtifact) (string, error) {
taskEnv.Build()
source := taskEnv.ReplaceEnv(artifact.GetterSource)
// Handle an invalid URL when given a go-getter url such as
// git@github.com:hashicorp/nomad.git
gitSSH := false
if strings.HasPrefix(source, gitSSHPrefix) {
gitSSH = true
source = source[len(gitSSHPrefix):]
}
u, err := url.Parse(source)
2015-11-03 21:16:17 +00:00
if err != nil {
2016-03-15 02:55:30 +00:00
return "", fmt.Errorf("failed to parse source URL %q: %v", artifact.GetterSource, err)
2015-11-03 21:16:17 +00:00
}
2016-03-15 02:55:30 +00:00
// Build the url
q := u.Query()
for k, v := range artifact.GetterOptions {
2016-04-12 01:46:16 +00:00
q.Add(k, taskEnv.ReplaceEnv(v))
2015-11-03 21:16:17 +00:00
}
2016-03-15 02:55:30 +00:00
u.RawQuery = q.Encode()
// Add the prefix back
url := u.String()
if gitSSH {
url = fmt.Sprintf("%s%s", gitSSHPrefix, url)
}
return url, nil
2016-03-15 02:55:30 +00:00
}
2016-03-18 22:33:01 +00:00
// GetArtifact downloads an artifact into the specified task directory.
func GetArtifact(taskEnv *env.TaskEnvironment, artifact *structs.TaskArtifact, taskDir string) error {
2016-04-12 01:46:16 +00:00
url, err := getGetterUrl(taskEnv, artifact)
2016-03-15 02:55:30 +00:00
if err != nil {
return newGetError(artifact.GetterSource, err, false)
2015-11-03 21:16:17 +00:00
}
2016-03-15 02:55:30 +00:00
// Download the artifact
2016-03-18 22:33:01 +00:00
dest := filepath.Join(taskDir, artifact.RelativeDest)
if err := getClient(url, dest).Get(); err != nil {
return newGetError(url, err, true)
2015-11-03 21:16:17 +00:00
}
2016-03-15 02:55:30 +00:00
return nil
}
// GetError wraps the underlying artifact fetching error with the URL. It
// implements the RecoverableError interface.
type GetError struct {
URL string
Err error
recoverable bool
}
func newGetError(url string, err error, recoverable bool) *GetError {
return &GetError{
URL: url,
Err: err,
recoverable: recoverable,
}
}
func (g *GetError) Error() string {
return g.Err.Error()
}
func (g *GetError) IsRecoverable() bool {
return g.recoverable
}