2013-07-19 14:59:04 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2013-07-19 15:09:13 -04:00
|
|
|
"fmt"
|
2013-07-29 02:51:21 -04:00
|
|
|
"os"
|
2013-07-29 03:09:48 -04:00
|
|
|
"path/filepath"
|
2013-07-19 15:09:13 -04:00
|
|
|
"strings"
|
2017-01-14 20:56:04 -05:00
|
|
|
"time"
|
2016-04-05 17:51:17 -04:00
|
|
|
"net/url"
|
2013-07-19 14:59:04 -04:00
|
|
|
)
|
|
|
|
|
2017-01-14 20:56:04 -05:00
|
|
|
// PackerKeyEnv is used to specify the key interval (delay) between keystrokes
|
|
|
|
// sent to the VM, typically in boot commands. This is to prevent host CPU
|
|
|
|
// utilization from causing key presses to be skipped or repeated incorrectly.
|
|
|
|
const PackerKeyEnv = "PACKER_KEY_INTERVAL"
|
|
|
|
|
|
|
|
// PackerKeyDefault 100ms is appropriate for shared build infrastructure while a
|
|
|
|
// shorter delay (e.g. 10ms) can be used on a workstation. See PackerKeyEnv.
|
|
|
|
const PackerKeyDefault = 100 * time.Millisecond
|
|
|
|
|
2013-10-11 06:50:08 -04:00
|
|
|
// ScrubConfig is a helper that returns a string representation of
|
|
|
|
// any struct with the given values stripped out.
|
|
|
|
func ScrubConfig(target interface{}, values ...string) string {
|
|
|
|
conf := fmt.Sprintf("Config: %+v", target)
|
|
|
|
for _, value := range values {
|
2015-05-18 18:13:01 -04:00
|
|
|
if value == "" {
|
|
|
|
continue
|
|
|
|
}
|
2013-10-11 06:50:08 -04:00
|
|
|
conf = strings.Replace(conf, value, "<Filtered>", -1)
|
|
|
|
}
|
|
|
|
return conf
|
|
|
|
}
|
|
|
|
|
2014-04-22 00:30:49 -04:00
|
|
|
// ChooseString returns the first non-empty value.
|
|
|
|
func ChooseString(vals ...string) string {
|
2014-04-26 14:12:43 -04:00
|
|
|
for _, el := range vals {
|
|
|
|
if el != "" {
|
|
|
|
return el
|
|
|
|
}
|
|
|
|
}
|
2014-04-22 00:30:49 -04:00
|
|
|
|
2014-04-26 14:12:43 -04:00
|
|
|
return ""
|
2014-04-22 00:30:49 -04:00
|
|
|
}
|
|
|
|
|
2013-07-29 02:51:21 -04:00
|
|
|
// DownloadableURL processes a URL that may also be a file path and returns
|
|
|
|
// a completely valid URL. For example, the original URL might be "local/file.iso"
|
|
|
|
// which isn't a valid URL. DownloadableURL will return "file:///local/file.iso"
|
|
|
|
func DownloadableURL(original string) (string, error) {
|
|
|
|
|
|
|
|
// Verify that the scheme is something we support in our common downloader.
|
2016-04-05 16:01:06 -04:00
|
|
|
supported := []string{"file", "http", "https", "ftp", "smb"}
|
2013-07-29 02:51:21 -04:00
|
|
|
found := false
|
|
|
|
for _, s := range supported {
|
2016-04-05 17:51:17 -04:00
|
|
|
if strings.HasPrefix(strings.ToLower(original), s + "://") {
|
2013-07-29 02:51:21 -04:00
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 16:01:06 -04:00
|
|
|
// If it's properly prefixed with something we support, then we don't need
|
|
|
|
// to make it a uri.
|
|
|
|
if found {
|
2016-04-05 17:51:17 -04:00
|
|
|
original = filepath.ToSlash(original)
|
|
|
|
|
|
|
|
// make sure that it can be parsed though..
|
|
|
|
uri,err := url.Parse(original)
|
|
|
|
if err != nil { return "", err }
|
|
|
|
|
|
|
|
uri.Scheme = strings.ToLower(uri.Scheme)
|
|
|
|
|
|
|
|
return uri.String(), nil
|
2015-11-01 22:46:14 -05:00
|
|
|
}
|
|
|
|
|
2016-04-05 16:01:06 -04:00
|
|
|
// If the file exists, then make it an absolute path
|
|
|
|
_,err := os.Stat(original)
|
|
|
|
if err == nil {
|
|
|
|
original, err = filepath.Abs(filepath.FromSlash(original))
|
|
|
|
if err != nil { return "", err }
|
|
|
|
|
|
|
|
original, err = filepath.EvalSymlinks(original)
|
|
|
|
if err != nil { return "", err }
|
|
|
|
|
|
|
|
original = filepath.Clean(original)
|
|
|
|
original = filepath.ToSlash(original)
|
2013-07-29 02:51:21 -04:00
|
|
|
}
|
2016-04-05 16:01:06 -04:00
|
|
|
|
|
|
|
// Since it wasn't properly prefixed, let's make it into a well-formed
|
|
|
|
// file:// uri.
|
|
|
|
|
|
|
|
return "file://" + original, nil
|
2013-07-29 02:51:21 -04:00
|
|
|
}
|
2018-01-03 19:53:47 -05:00
|
|
|
|
|
|
|
// FileExistsLocally takes the URL output from DownloadableURL, and determines
|
|
|
|
// whether it is present on the file system.
|
|
|
|
// example usage:
|
|
|
|
//
|
|
|
|
// myFile, err = common.DownloadableURL(c.SourcePath)
|
|
|
|
// ...
|
2018-01-10 19:11:17 -05:00
|
|
|
// fileExists := common.StatURL(myFile)
|
2018-01-03 19:53:47 -05:00
|
|
|
// possible output:
|
2018-01-10 19:11:17 -05:00
|
|
|
// true -- should occur if the file is present, or if the file is not present,
|
|
|
|
// but is not supposed to be (e.g. the schema is http://, not file://)
|
|
|
|
// false -- should occur if there was an error stating the file, so the
|
2018-01-03 19:53:47 -05:00
|
|
|
// file is not present when it should be.
|
|
|
|
|
2018-01-10 19:11:17 -05:00
|
|
|
func FileExistsLocally(original string) bool {
|
2018-01-04 13:51:59 -05:00
|
|
|
// original should be something like file://C:/my/path.iso
|
2018-01-09 17:27:09 -05:00
|
|
|
|
|
|
|
fileURL, _ := url.Parse(original)
|
|
|
|
fileExists := false
|
2018-01-03 19:53:47 -05:00
|
|
|
|
|
|
|
if fileURL.Scheme == "file" {
|
2018-01-09 17:27:09 -05:00
|
|
|
// on windows, correct URI is file:///c:/blah/blah.iso.
|
|
|
|
// url.Parse will pull out the scheme "file://" and leave the path as
|
|
|
|
// "/c:/blah/blah/iso". Here we remove this forward slash on absolute
|
|
|
|
// Windows file URLs before processing
|
|
|
|
// see https://blogs.msdn.microsoft.com/ie/2006/12/06/file-uris-in-windows/
|
|
|
|
// for more info about valid windows URIs
|
|
|
|
filePath := fileURL.Path
|
|
|
|
if runtime.GOOS == "windows" && len(filePath) > 0 && filePath[0] == '/' {
|
|
|
|
filePath = filePath[1:]
|
|
|
|
}
|
2018-01-04 13:51:59 -05:00
|
|
|
_, err := os.Stat(filePath)
|
|
|
|
if err != nil {
|
2018-01-10 19:11:17 -05:00
|
|
|
return fileExists
|
2018-01-03 19:53:47 -05:00
|
|
|
} else {
|
|
|
|
fileExists = true
|
|
|
|
}
|
|
|
|
}
|
2018-01-10 19:11:17 -05:00
|
|
|
return fileExists
|
2018-01-03 19:53:47 -05:00
|
|
|
}
|