|
|
|
@ -18,6 +18,7 @@ import (
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var errRequiredSearchOptions = errors.New("repo is required")
|
|
|
|
|
var errInvalidRepoURL = errors.New("the request failed since either the Helm repository was not found or the index.yaml is not valid")
|
|
|
|
|
|
|
|
|
|
type File struct {
|
|
|
|
|
APIVersion string `yaml:"apiVersion" json:"apiVersion"`
|
|
|
|
@ -64,6 +65,11 @@ func (hbpm *helmBinaryPackageManager) SearchRepo(searchRepoOpts options.SearchRe
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Allow redirect behavior to be overriden if specified.
|
|
|
|
|
if client.CheckRedirect == nil {
|
|
|
|
|
client.CheckRedirect = defaultCheckRedirect
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
url, err := url.ParseRequestURI(searchRepoOpts.Repo)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, errors.Wrap(err, fmt.Sprintf("invalid helm chart URL: %s", searchRepoOpts.Repo))
|
|
|
|
@ -72,20 +78,42 @@ func (hbpm *helmBinaryPackageManager) SearchRepo(searchRepoOpts options.SearchRe
|
|
|
|
|
url.Path = path.Join(url.Path, "index.yaml")
|
|
|
|
|
resp, err := client.Get(url.String())
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, errors.Wrap(err, "failed to get index file")
|
|
|
|
|
return nil, errInvalidRepoURL
|
|
|
|
|
}
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
|
|
var file File
|
|
|
|
|
err = yaml.NewDecoder(resp.Body).Decode(&file)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, errors.Wrap(err, "failed to decode index file")
|
|
|
|
|
return nil, errInvalidRepoURL
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Validate index.yaml
|
|
|
|
|
if file.APIVersion == "" || file.Entries == nil {
|
|
|
|
|
return nil, errInvalidRepoURL
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result, err := json.Marshal(file)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, errors.Wrap(err, "failed to marshal index file")
|
|
|
|
|
return nil, errInvalidRepoURL
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// defaultCheckRedirect is a default CheckRedirect for helm
|
|
|
|
|
// We don't allow redirects to URLs not ending in index.yaml
|
|
|
|
|
// After that we follow the go http client behavior which is to stop
|
|
|
|
|
// after a maximum of 10 redirects
|
|
|
|
|
func defaultCheckRedirect(req *http.Request, via []*http.Request) error {
|
|
|
|
|
// The request url must end in index.yaml
|
|
|
|
|
if path.Base(req.URL.Path) != "index.yaml" {
|
|
|
|
|
return errors.New("the request URL must end in index.yaml")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// default behavior below
|
|
|
|
|
if len(via) >= 10 {
|
|
|
|
|
return errors.New("stopped after 10 redirects")
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|