/* Copyright The Helm 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 action import ( "fmt" "io" "os" "path/filepath" "strings" "github.com/Masterminds/semver/v3" "github.com/gosuri/uitable" "helm.sh/helm/v3/pkg/chart" "helm.sh/helm/v3/pkg/chart/loader" ) // Dependency is the action for building a given chart's dependency tree. // // It provides the implementation of 'helm dependency' and its respective subcommands. type Dependency struct { Verify bool Keyring string SkipRefresh bool ColumnWidth uint } // NewDependency creates a new Dependency object with the given configuration. func NewDependency() *Dependency { return &Dependency{ ColumnWidth: 80, } } // List executes 'helm dependency list'. func (d *Dependency) List(chartpath string, out io.Writer) error { c, err := loader.Load(chartpath) if err != nil { return err } if c.Metadata.Dependencies == nil { fmt.Fprintf(out, "WARNING: no dependencies at %s\n", filepath.Join(chartpath, "charts")) return nil } d.printDependencies(chartpath, out, c) fmt.Fprintln(out) d.printMissing(chartpath, out, c.Metadata.Dependencies) return nil } // dependencyStatus returns a string describing the status of a dependency viz a viz the parent chart. func (d *Dependency) dependencyStatus(chartpath string, dep *chart.Dependency, parent *chart.Chart) string { filename := fmt.Sprintf("%s-%s.tgz", dep.Name, "*") // If a chart is unpacked, this will check the unpacked chart's `charts/` directory for tarballs. // Technically, this is COMPLETELY unnecessary, and should be removed in Helm 4. It is here // to preserved backward compatibility. In Helm 2/3, there is a "difference" between // the tgz version (which outputs "ok" if it unpacks) and the loaded version (which outputs // "unpacked"). Early in Helm 2's history, this would have made a difference. But it no // longer does. However, since this code shipped with Helm 3, the output must remain stable // until Helm 4. switch archives, err := filepath.Glob(filepath.Join(chartpath, "charts", filename)); { case err != nil: return "bad pattern" case len(archives) > 1: // See if the second part is a SemVer found := []string{} for _, arc := range archives { // we need to trip the prefix dirs and the extension off. filename = strings.TrimSuffix(filepath.Base(arc), ".tgz") maybeVersion := strings.TrimPrefix(filename, fmt.Sprintf("%s-", dep.Name)) if _, err := semver.StrictNewVersion(maybeVersion); err == nil { // If the version parsed without an error, it is possibly a valid // version. found = append(found, arc) } } if l := len(found); l == 1 { // If we get here, we do the same thing as in len(archives) == 1. if r := statArchiveForStatus(found[0], dep); r != "" { return r } // Fall through and look for directories } else if l > 1 { return "too many matches" } // The sanest thing to do here is to fall through and see if we have any directory // matches. case len(archives) == 1: archive := archives[0] if r := statArchiveForStatus(archive, dep); r != "" { return r } } // End unnecessary code. var depChart *chart.Chart for _, item := range parent.Dependencies() { if item.Name() == dep.Name { depChart = item } } if depChart == nil { return "missing" } if depChart.Metadata.Version != dep.Version { constraint, err := semver.NewConstraint(dep.Version) if err != nil { return "invalid version" } v, err := semver.NewVersion(depChart.Metadata.Version) if err != nil { return "invalid version" } if !constraint.Check(v) { return "wrong version" } } return "unpacked" } // stat an archive and return a message if the stat is successful // // This is a refactor of the code originally in dependencyStatus. It is here to // support legacy behavior, and should be removed in Helm 4. func statArchiveForStatus(archive string, dep *chart.Dependency) string { if _, err := os.Stat(archive); err == nil { c, err := loader.Load(archive) if err != nil { return "corrupt" } if c.Name() != dep.Name { return "misnamed" } if c.Metadata.Version != dep.Version { constraint, err := semver.NewConstraint(dep.Version) if err != nil { return "invalid version" } v, err := semver.NewVersion(c.Metadata.Version) if err != nil { return "invalid version" } if !constraint.Check(v) { return "wrong version" } } return "ok" } return "" } // printDependencies prints all of the dependencies in the yaml file. func (d *Dependency) printDependencies(chartpath string, out io.Writer, c *chart.Chart) { table := uitable.New() table.MaxColWidth = d.ColumnWidth table.AddRow("NAME", "VERSION", "REPOSITORY", "STATUS") for _, row := range c.Metadata.Dependencies { table.AddRow(row.Name, row.Version, row.Repository, d.dependencyStatus(chartpath, row, c)) } fmt.Fprintln(out, table) } // printMissing prints warnings about charts that are present on disk, but are // not in Chart.yaml. func (d *Dependency) printMissing(chartpath string, out io.Writer, reqs []*chart.Dependency) { folder := filepath.Join(chartpath, "charts/*") files, err := filepath.Glob(folder) if err != nil { fmt.Fprintln(out, err) return } for _, f := range files { fi, err := os.Stat(f) if err != nil { fmt.Fprintf(out, "Warning: %s\n", err) } // Skip anything that is not a directory and not a tgz file. if !fi.IsDir() && filepath.Ext(f) != ".tgz" { continue } c, err := loader.Load(f) if err != nil { fmt.Fprintf(out, "WARNING: %q is not a chart.\n", f) continue } found := false for _, d := range reqs { if d.Name == c.Name() { found = true break } } if !found { fmt.Fprintf(out, "WARNING: %q is not in Chart.yaml.\n", f) } } }