mirror of
https://github.com/ahmetb/kubectx.git
synced 2026-03-18 11:52:24 +00:00
Adds a new CacheDir() function that respects the XDG_CACHE_HOME environment variable, matching the bash scripts' behavior. kubectx and kubens now prefer XDG_CACHE_HOME when set, falling back to $HOME/.kube otherwise. This aligns the Go implementations with the bash scripts' cache directory logic. Includes comprehensive tests covering all scenarios: - XDG_CACHE_HOME set (returns the XDG value) - XDG_CACHE_HOME unset (falls back to $HOME/.kube) - Neither set (returns empty string)
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
// Copyright 2021 Google LLC
|
|
//
|
|
// 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 cmdutil
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
func HomeDir() string {
|
|
home := os.Getenv("HOME")
|
|
if home == "" {
|
|
home = os.Getenv("USERPROFILE") // windows
|
|
}
|
|
return home
|
|
}
|
|
|
|
// CacheDir returns XDG_CACHE_HOME if set, otherwise $HOME/.kube,
|
|
// matching the bash scripts' behavior: ${XDG_CACHE_HOME:-$HOME/.kube}.
|
|
func CacheDir() string {
|
|
if xdg := os.Getenv("XDG_CACHE_HOME"); xdg != "" {
|
|
return xdg
|
|
}
|
|
home := HomeDir()
|
|
if home == "" {
|
|
return ""
|
|
}
|
|
return filepath.Join(home, ".kube")
|
|
}
|
|
|
|
// IsNotFoundErr determines if the underlying error is os.IsNotExist.
|
|
func IsNotFoundErr(err error) bool {
|
|
for e := err; e != nil; e = errors.Unwrap(e) {
|
|
if os.IsNotExist(e) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|