kubekey/pkg/core/util/file.go
Leo Li 0e8c52cee3 fix: CreateClusterPipeline support use the artifact
Signed-off-by: Leo Li <jacksama@foxmail.com>
2021-12-23 17:30:13 +08:00

244 lines
4.6 KiB
Go

/*
Copyright 2021 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 util
import (
"archive/tar"
"compress/gzip"
"crypto/md5"
"fmt"
"github.com/kubesphere/kubekey/pkg/core/common"
"github.com/kubesphere/kubekey/pkg/core/logger"
"io"
"io/fs"
"io/ioutil"
"os"
"path/filepath"
"strings"
)
func IsExist(path string) bool {
_, err := os.Stat(path)
if err != nil {
if os.IsExist(err) {
return true
}
if os.IsNotExist(err) {
return false
}
return false
}
return true
}
func CreateDir(path string) error {
if IsExist(path) == false {
err := os.MkdirAll(path, os.ModePerm)
if err != nil {
return err
}
}
return nil
}
func IsDir(path string) bool {
s, err := os.Stat(path)
if err != nil {
return false
}
return s.IsDir()
}
func CountDirFiles(dirName string) int {
if !IsDir(dirName) {
return 0
}
var count int
err := filepath.Walk(dirName, func(path string, info os.FileInfo, err error) error {
if info.IsDir() {
return nil
}
count++
return nil
})
if err != nil {
logger.Log.Fatalln("count dir files failed %v", err)
return 0
}
return count
}
//FileMD5 count file md5
func FileMD5(path string) (string, error) {
file, err := os.Open(path)
if err != nil {
return "", err
}
m := md5.New()
if _, err := io.Copy(m, file); err != nil {
return "", err
}
fileMd5 := fmt.Sprintf("%x", m.Sum(nil))
return fileMd5, nil
}
func LocalMd5Sum(src string) string {
md5Str, err := FileMD5(src)
if err != nil {
logger.Log.Fatalf("get file md5 failed %v", err)
return ""
}
return md5Str
}
// MkFileFullPathDir is used to file create the full path.
// eg. there is a file "./aa/bb/xxx.txt", and dir ./aa/bb is not exist, and will create the full path dir.
func MkFileFullPathDir(fileName string) error {
localDir := filepath.Dir(fileName)
err := Mkdir(localDir)
if err != nil {
return fmt.Errorf("create local dir %s failed: %v", localDir, err)
}
return nil
}
func Mkdir(dirName string) error {
return os.MkdirAll(dirName, os.ModePerm)
}
func WriteFile(fileName string, content []byte) error {
dir := filepath.Dir(fileName)
if _, err := os.Stat(dir); os.IsNotExist(err) {
if err = os.MkdirAll(dir, common.FileMode0755); err != nil {
return err
}
}
if err := ioutil.WriteFile(fileName, content, common.FileMode0644); err != nil {
return err
}
return nil
}
func Tar(src, dst, trimPrefix string) error {
fw, err := os.Create(dst)
if err != nil {
return err
}
defer fw.Close()
gw := gzip.NewWriter(fw)
defer gw.Close()
tw := tar.NewWriter(gw)
defer tw.Close()
return filepath.Walk(src, func(path string, info fs.FileInfo, err error) error {
if err != nil {
return err
}
hdr, err := tar.FileInfoHeader(info, "")
if err != nil {
return err
}
if !info.Mode().IsRegular() {
return nil
}
fr, err := os.Open(path)
defer fr.Close()
if err != nil {
return err
}
path = strings.TrimPrefix(path, trimPrefix)
fmt.Println(strings.TrimPrefix(path, string(filepath.Separator)))
hdr.Name = strings.TrimPrefix(path, string(filepath.Separator))
if err := tw.WriteHeader(hdr); err != nil {
return err
}
if _, err := io.Copy(tw, fr); err != nil {
return err
}
return nil
})
}
func Untar(src, dst string) error {
fr, err := os.Open(src)
if err != nil {
return err
}
defer fr.Close()
gr, err := gzip.NewReader(fr)
if err != nil {
return err
}
defer gr.Close()
tr := tar.NewReader(gr)
for {
hdr, err := tr.Next()
switch {
case err == io.EOF:
return nil
case err != nil:
return err
case hdr == nil:
continue
}
dstPath := filepath.Join(dst, hdr.Name)
switch hdr.Typeflag {
case tar.TypeDir:
if !IsExist(dstPath) && IsDir(dstPath) {
if err := CreateDir(dstPath); err != nil {
return err
}
}
case tar.TypeReg:
if dir := filepath.Dir(dstPath); !IsExist(dir) {
if err := CreateDir(dir); err != nil {
return err
}
}
file, err := os.OpenFile(dstPath, os.O_CREATE|os.O_RDWR, os.FileMode(hdr.Mode))
if err != nil {
return err
}
if _, err = io.Copy(file, tr); err != nil {
return err
}
fmt.Println(dstPath)
file.Close()
}
}
}