74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
package state
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"os"
 | 
						|
	"path/filepath"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	// current working directory
 | 
						|
	currentDirSymbol = "."
 | 
						|
	// parent directory
 | 
						|
	parentDirSymbol = ".."
 | 
						|
)
 | 
						|
 | 
						|
func isLocalChart(chart string) bool {
 | 
						|
	if strings.HasPrefix(chart, fmt.Sprintf("%s%c", currentDirSymbol, os.PathSeparator)) || strings.HasPrefix(chart, fmt.Sprintf("%s%c", parentDirSymbol, os.PathSeparator)) {
 | 
						|
		return true
 | 
						|
	}
 | 
						|
 | 
						|
	uriLike := strings.Contains(chart, "://")
 | 
						|
	if uriLike {
 | 
						|
		return false
 | 
						|
	}
 | 
						|
 | 
						|
	return chart == "" ||
 | 
						|
		filepath.IsAbs(chart) ||
 | 
						|
		!strings.Contains(chart, "/") ||
 | 
						|
		(len(strings.Split(chart, "/")) != 2 &&
 | 
						|
			len(strings.Split(chart, "/")) != 3)
 | 
						|
}
 | 
						|
 | 
						|
func resolveRemoteChart(repoAndChart string) (string, string, bool) {
 | 
						|
	if isLocalChart(repoAndChart) {
 | 
						|
		return "", "", false
 | 
						|
	}
 | 
						|
 | 
						|
	uriLike := strings.Contains(repoAndChart, "://")
 | 
						|
	if uriLike {
 | 
						|
		return "", "", false
 | 
						|
	}
 | 
						|
 | 
						|
	parts := strings.SplitN(repoAndChart, "/", 2)
 | 
						|
	if len(parts) < 2 {
 | 
						|
		return "", "", false
 | 
						|
	}
 | 
						|
 | 
						|
	repo := parts[0]
 | 
						|
	chart := parts[1]
 | 
						|
 | 
						|
	return repo, chart, true
 | 
						|
}
 | 
						|
 | 
						|
// normalizeChart allows for the distinction between a file path reference and repository references.
 | 
						|
// - Any single (or double character) followed by a `/` will be considered a local file reference and
 | 
						|
// be constructed relative to the `base path`.
 | 
						|
// - Everything else is assumed to be an absolute path or an actual <repository>/<chart> reference.
 | 
						|
func normalizeChart(basePath, chart string) string {
 | 
						|
	if !isLocalChart(chart) || filepath.IsAbs(chart) {
 | 
						|
		return chart
 | 
						|
	}
 | 
						|
	return filepath.Join(basePath, chart)
 | 
						|
}
 | 
						|
 | 
						|
func getBuildDepsFlags(cpr *chartPrepareResult) []string {
 | 
						|
	flags := []string{}
 | 
						|
	if cpr.skipRefresh {
 | 
						|
		flags = append(flags, "--skip-refresh")
 | 
						|
	}
 | 
						|
 | 
						|
	return flags
 | 
						|
}
 |