mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 18:03:02 +00:00
Signed-off-by: joyceliu <joyceliu@yunify.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
101 lines
2.6 KiB
Go
101 lines
2.6 KiB
Go
/*
|
|
Copyright 2023 The KubeSphere 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 source
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
const (
|
|
prefixYAML = "# Generate by variable\n"
|
|
)
|
|
|
|
var _ Source = &fileSource{}
|
|
|
|
// NewFileSource returns a new fileSource.
|
|
func NewFileSource(path string) (Source, error) {
|
|
if _, err := os.Stat(path); err != nil {
|
|
if !os.IsNotExist(err) {
|
|
return nil, errors.Wrapf(err, "failed to stat source path %q", path)
|
|
}
|
|
if err := os.MkdirAll(path, os.ModePerm); err != nil {
|
|
return nil, errors.Wrapf(err, "failed to create source path %q", path)
|
|
}
|
|
}
|
|
|
|
return &fileSource{path: path}, nil
|
|
}
|
|
|
|
type fileSource struct {
|
|
path string
|
|
}
|
|
|
|
func (f *fileSource) Read() (map[string]map[string]any, error) {
|
|
de, err := os.ReadDir(f.path)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to read dir %s", f.path)
|
|
}
|
|
|
|
result := make(map[string]map[string]any)
|
|
for _, entry := range de {
|
|
if entry.IsDir() {
|
|
continue
|
|
}
|
|
// only read json data
|
|
if strings.HasSuffix(entry.Name(), ".yaml") {
|
|
fdata, err := os.ReadFile(filepath.Join(f.path, entry.Name()))
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to read file %q", entry.Name())
|
|
}
|
|
if bytes.HasPrefix(fdata, []byte(prefixYAML)) {
|
|
var data map[string]any
|
|
if err := yaml.Unmarshal(fdata, data); err != nil {
|
|
return nil, errors.Wrapf(err, "failed to unmarshal file %q", entry.Name())
|
|
}
|
|
result[strings.TrimSuffix(entry.Name(), ".yaml")] = data
|
|
}
|
|
}
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
func (f *fileSource) Write(data map[string]any, host string) error {
|
|
filename := host + ".yaml"
|
|
file, err := os.Create(filepath.Join(f.path, filename))
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to create file %q", filename)
|
|
}
|
|
defer file.Close()
|
|
// convert to yaml file
|
|
fdata, err := yaml.Marshal(data)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to marshal file %q", filename)
|
|
}
|
|
if _, err := file.Write(append([]byte(prefixYAML), fdata...)); err != nil {
|
|
return errors.Wrapf(err, "failed to write file %q", filename)
|
|
}
|
|
|
|
return nil
|
|
}
|