mirror of
https://github.com/helm/helm.git
synced 2026-08-11 01:26:35 +00:00
Pre-Go-modules import path comments (e.g. `// import "helm.sh/helm/v4/..."`) are obsolete since Go 1.11 where go.mod is the authoritative module path. These stale comments cause issues with downstream tooling such as Kythe. Removes the legacy import comments from 64 files across 20 packages: - cmd/helm - internal/chart/v3/lint and sub-packages - internal/plugin and sub-packages - internal/release/v2/util - pkg/chart/v2/lint and sub-packages - pkg/cmd, pkg/engine, pkg/ignore, pkg/provenance - pkg/registry - pkg/release/v1/util - pkg/repo/v1 - pkg/storage and pkg/storage/driver Follows up on #31931 and #31932 which addressed pkg/kube. Fixes #31846 Signed-off-by: abhay1999 <abhay.chaurasiya@example.com> Signed-off-by: abhay1999 <abhaychaurasiya19@gmail.com>
68 lines
1.7 KiB
Go
68 lines
1.7 KiB
Go
/*
|
|
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 cache provides a key generator for vcs urls.
|
|
package cache
|
|
|
|
import (
|
|
"net/url"
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
// Thanks glide!
|
|
|
|
// scpSyntaxRe matches the SCP-like addresses used to access repos over SSH.
|
|
var scpSyntaxRe = regexp.MustCompile(`^([a-zA-Z0-9_]+)@([a-zA-Z0-9._-]+):(.*)$`)
|
|
|
|
// Key generates a cache key based on a url or scp string. The key is file
|
|
// system safe.
|
|
func Key(repo string) (string, error) {
|
|
var (
|
|
u *url.URL
|
|
err error
|
|
)
|
|
if m := scpSyntaxRe.FindStringSubmatch(repo); m != nil {
|
|
// Match SCP-like syntax and convert it to a URL.
|
|
// Eg, "git@github.com:user/repo" becomes
|
|
// "ssh://git@github.com/user/repo".
|
|
u = &url.URL{
|
|
User: url.User(m[1]),
|
|
Host: m[2],
|
|
Path: "/" + m[3],
|
|
}
|
|
} else {
|
|
u, err = url.Parse(repo)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
}
|
|
|
|
var key strings.Builder
|
|
if u.Scheme != "" {
|
|
key.WriteString(u.Scheme)
|
|
key.WriteString("-")
|
|
}
|
|
if u.User != nil && u.User.Username() != "" {
|
|
key.WriteString(u.User.Username())
|
|
key.WriteString("-")
|
|
}
|
|
key.WriteString(u.Host)
|
|
if u.Path != "" {
|
|
key.WriteString(strings.ReplaceAll(u.Path, "/", "-"))
|
|
}
|
|
return strings.ReplaceAll(key.String(), ":", "-"), nil
|
|
}
|