utils.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. Copyright 2019 The Kubernetes Authors.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package windows
  14. import (
  15. "io"
  16. "io/ioutil"
  17. "net/http"
  18. "github.com/pkg/errors"
  19. )
  20. // downloadFile saves a remote URL to a local temp file, and returns its path.
  21. // It's the caller's responsibility to clean up the temp file when done.
  22. func downloadFile(url string) (string, error) {
  23. response, err := http.Get(url)
  24. if err != nil {
  25. return "", errors.Wrapf(err, "unable to download from %q", url)
  26. }
  27. defer response.Body.Close()
  28. tempFile, err := ioutil.TempFile("", "")
  29. if err != nil {
  30. return "", errors.Wrapf(err, "unable to create temp file")
  31. }
  32. defer tempFile.Close()
  33. _, err = io.Copy(tempFile, response.Body)
  34. return tempFile.Name(), err
  35. }