mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-09 02:47:04 +00:00
* Feat: implement addon create command Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com> * Refactor: make global vars local Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com> * Style: fix typos Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com> * Test: create test for file utils Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com> * Feat: use -p flag to manually specify paths Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com> * Refactor: make changes according to comments Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com> * Feat: create empty scaffold if Chart-related paramaters are not provided Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com> * Refactor: fix golangci-lint warnings Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com> * Test: add cli tests Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com> * Feat: show URL in errors if an invalid URL is detected Signed-off-by: Charlie Chiang <charlie_c_0129@outlook.com>
106 lines
2.8 KiB
Go
106 lines
2.8 KiB
Go
/*
|
|
Copyright 2022 The KubeVela 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 utils
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"io/fs"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/oam-dev/kubevela/pkg/utils/common"
|
|
)
|
|
|
|
// FileData data of a file at the path
|
|
type FileData struct {
|
|
Path string
|
|
Data []byte
|
|
}
|
|
|
|
// LoadDataFromPath load FileData from path
|
|
// If path is an url, fetch the data from the url
|
|
// If path is a file, fetch the data from the file
|
|
// If path is a dir, fetch the data from all the files inside the dir that passes the pathFilter
|
|
func LoadDataFromPath(ctx context.Context, path string, pathFilter func(string) bool) ([]FileData, error) {
|
|
if IsValidURL(path) {
|
|
bs, err := common.HTTPGetWithOption(ctx, path, nil)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get data from %s: %w", path, err)
|
|
}
|
|
return []FileData{{Path: path, Data: bs}}, nil
|
|
}
|
|
fileInfo, err := os.Stat(path)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get file info for %s: %w", path, err)
|
|
}
|
|
if fileInfo.IsDir() {
|
|
var data []FileData
|
|
err = filepath.WalkDir(path, func(path string, d fs.DirEntry, err error) error {
|
|
if pathFilter == nil || pathFilter(path) {
|
|
bs, e := ioutil.ReadFile(filepath.Clean(path))
|
|
if e != nil {
|
|
return e
|
|
}
|
|
data = append(data, FileData{Path: path, Data: bs})
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to traverse directory %s: %w", path, err)
|
|
}
|
|
return data, nil
|
|
}
|
|
bs, e := ioutil.ReadFile(filepath.Clean(path))
|
|
if e != nil {
|
|
return nil, fmt.Errorf("failed to read file %s: %w", path, err)
|
|
}
|
|
return []FileData{{Path: path, Data: bs}}, nil
|
|
}
|
|
|
|
// IsJSONOrYAMLFile check if the path is a json or yaml file
|
|
func IsJSONOrYAMLFile(path string) bool {
|
|
return strings.HasSuffix(path, ".json") ||
|
|
strings.HasSuffix(path, ".yaml") ||
|
|
strings.HasSuffix(path, ".yml")
|
|
}
|
|
|
|
// IsEmptyDir checks if a given path is an empty directory
|
|
func IsEmptyDir(path string) (bool, error) {
|
|
f, err := os.Open(filepath.Clean(path))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
defer func(f *os.File) {
|
|
_ = f.Close()
|
|
}(f)
|
|
|
|
// Read just one file in the dir (just read names, which is faster)
|
|
_, err = f.Readdirnames(1)
|
|
// If the error is EOF, the dir is empty
|
|
if errors.Is(err, io.EOF) {
|
|
return true, nil
|
|
}
|
|
|
|
return false, err
|
|
}
|