mirror of https://github.com/kubernetes/kops.git
94 lines
2.2 KiB
Go
94 lines
2.2 KiB
Go
/*
|
|
Copyright 2019 The Kubernetes 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 fi
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"os"
|
|
"path"
|
|
|
|
"k8s.io/klog"
|
|
"k8s.io/kops/util/pkg/hashing"
|
|
)
|
|
|
|
func DownloadURL(url string, dest string, hash *hashing.Hash) (*hashing.Hash, error) {
|
|
if hash != nil {
|
|
match, err := fileHasHash(dest, hash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if match {
|
|
return hash, nil
|
|
}
|
|
}
|
|
|
|
dirMode := os.FileMode(0755)
|
|
err := downloadURLAlways(url, dest, dirMode)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if hash != nil {
|
|
match, err := fileHasHash(dest, hash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if !match {
|
|
return nil, fmt.Errorf("downloaded from %q but hash did not match expected %q", url, hash)
|
|
}
|
|
} else {
|
|
hash, err = hashing.HashAlgorithmSHA256.HashFile(dest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return hash, nil
|
|
}
|
|
|
|
func downloadURLAlways(url string, destPath string, dirMode os.FileMode) error {
|
|
err := os.MkdirAll(path.Dir(destPath), dirMode)
|
|
if err != nil {
|
|
return fmt.Errorf("error creating directories for destination file %q: %v", destPath, err)
|
|
}
|
|
|
|
output, err := os.Create(destPath)
|
|
if err != nil {
|
|
return fmt.Errorf("error creating file for download %q: %v", destPath, err)
|
|
}
|
|
defer output.Close()
|
|
|
|
klog.Infof("Downloading %q", url)
|
|
|
|
response, err := http.Get(url)
|
|
if err != nil {
|
|
return fmt.Errorf("error doing HTTP fetch of %q: %v", url, err)
|
|
}
|
|
if response.StatusCode >= 400 {
|
|
return fmt.Errorf("error response from %q: HTTP %v", url, response.StatusCode)
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
_, err = io.Copy(output, response.Body)
|
|
if err != nil {
|
|
return fmt.Errorf("error downloading HTTP content from %q: %v", url, err)
|
|
}
|
|
return nil
|
|
}
|