164 lines
4.5 KiB
Go
164 lines
4.5 KiB
Go
/*
|
|
Copyright 2020 The Flux 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 helm
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/url"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/Masterminds/semver/v3"
|
|
securejoin "github.com/cyphar/filepath-securejoin"
|
|
"golang.org/x/sync/errgroup"
|
|
helmchart "helm.sh/helm/v3/pkg/chart"
|
|
"helm.sh/helm/v3/pkg/chart/loader"
|
|
)
|
|
|
|
// DependencyWithRepository is a container for a Helm chart dependency
|
|
// and its respective repository.
|
|
type DependencyWithRepository struct {
|
|
// Dependency holds the reference to a chart.Chart dependency.
|
|
Dependency *helmchart.Dependency
|
|
// Repository is the ChartRepository the dependency should be
|
|
// available at and can be downloaded from. If there is none,
|
|
// a local ('file://') dependency is assumed.
|
|
Repository *ChartRepository
|
|
}
|
|
|
|
// DependencyManager manages dependencies for a Helm chart.
|
|
type DependencyManager struct {
|
|
// WorkingDir is the chroot path for dependency manager operations,
|
|
// Dependencies that hold a local (relative) path reference are not
|
|
// allowed to traverse outside this directory.
|
|
WorkingDir string
|
|
// ChartPath is the path of the Chart relative to the WorkingDir,
|
|
// the combination of the WorkingDir and ChartPath is used to
|
|
// determine the absolute path of a local dependency.
|
|
ChartPath string
|
|
// Chart holds the loaded chart.Chart from the ChartPath.
|
|
Chart *helmchart.Chart
|
|
// Dependencies contains a list of dependencies, and the respective
|
|
// repository the dependency can be found at.
|
|
Dependencies []*DependencyWithRepository
|
|
}
|
|
|
|
// Build compiles and builds the dependencies of the Chart.
|
|
func (dm *DependencyManager) Build(ctx context.Context) error {
|
|
if len(dm.Dependencies) == 0 {
|
|
return nil
|
|
}
|
|
|
|
errs, ctx := errgroup.WithContext(ctx)
|
|
for _, item := range dm.Dependencies {
|
|
errs.Go(func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return ctx.Err()
|
|
default:
|
|
}
|
|
|
|
var err error
|
|
switch item.Repository {
|
|
case nil:
|
|
err = dm.addLocalDependency(item)
|
|
default:
|
|
err = dm.addRemoteDependency(item)
|
|
}
|
|
return err
|
|
})
|
|
}
|
|
|
|
return errs.Wait()
|
|
}
|
|
|
|
func (dm *DependencyManager) addLocalDependency(dpr *DependencyWithRepository) error {
|
|
sLocalChartPath, err := dm.secureLocalChartPath(dpr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := os.Stat(sLocalChartPath); err != nil {
|
|
if os.IsNotExist(err) {
|
|
return fmt.Errorf("no chart found at '%s' (reference '%s') for dependency '%s'",
|
|
strings.TrimPrefix(sLocalChartPath, dm.WorkingDir), dpr.Dependency.Repository, dpr.Dependency.Name)
|
|
}
|
|
return err
|
|
}
|
|
|
|
ch, err := loader.Load(sLocalChartPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
constraint, err := semver.NewConstraint(dpr.Dependency.Version)
|
|
if err != nil {
|
|
err := fmt.Errorf("dependency '%s' has an invalid version/constraint format: %w", dpr.Dependency.Name, err)
|
|
return err
|
|
}
|
|
|
|
v, err := semver.NewVersion(ch.Metadata.Version)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !constraint.Check(v) {
|
|
err = fmt.Errorf("can't get a valid version for dependency '%s'", dpr.Dependency.Name)
|
|
return err
|
|
}
|
|
|
|
dm.Chart.AddDependency(ch)
|
|
return nil
|
|
}
|
|
|
|
func (dm *DependencyManager) addRemoteDependency(dpr *DependencyWithRepository) error {
|
|
if dpr.Repository == nil {
|
|
return fmt.Errorf("no ChartRepository given for '%s' dependency", dpr.Dependency.Name)
|
|
}
|
|
|
|
chartVer, err := dpr.Repository.Get(dpr.Dependency.Name, dpr.Dependency.Version)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
res, err := dpr.Repository.DownloadChart(chartVer)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
ch, err := loader.LoadArchive(res)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
dm.Chart.AddDependency(ch)
|
|
return nil
|
|
}
|
|
|
|
func (dm *DependencyManager) secureLocalChartPath(dep *DependencyWithRepository) (string, error) {
|
|
localUrl, err := url.Parse(dep.Dependency.Repository)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to parse alleged local chart reference: %w", err)
|
|
}
|
|
if localUrl.Scheme != "" && localUrl.Scheme != "file" {
|
|
return "", fmt.Errorf("'%s' is not a local chart reference", dep.Dependency.Repository)
|
|
}
|
|
return securejoin.SecureJoin(dm.WorkingDir, filepath.Join(dm.ChartPath, localUrl.Host, localUrl.Path))
|
|
}
|