mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-15 04:00:00 +08:00
c880caa770
Refs https://github.com/1Panel-dev/1Panel/issues/1245 Refs https://github.com/1Panel-dev/1Panel/issues/263
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package files
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/1Panel-dev/1Panel/backend/global"
|
|
"github.com/1Panel-dev/1Panel/backend/utils/cmd"
|
|
"github.com/1Panel-dev/1Panel/backend/utils/common"
|
|
"path"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
type ZipArchiver struct {
|
|
}
|
|
|
|
func NewZipArchiver() ShellArchiver {
|
|
return &ZipArchiver{}
|
|
}
|
|
|
|
func (z ZipArchiver) Extract(filePath, dstDir string) error {
|
|
if err := checkCmdAvailability("unzip"); err != nil {
|
|
return err
|
|
}
|
|
return cmd.ExecCmd(fmt.Sprintf("unzip -qo %s -d %s", filePath, dstDir))
|
|
}
|
|
|
|
func (z ZipArchiver) Compress(sourcePaths []string, dstFile string) error {
|
|
tmpFile := path.Join(global.CONF.System.TmpDir, fmt.Sprintf("%s%s.zip", common.RandStr(50), time.Now().Format("20060102150405")))
|
|
op := NewFileOp()
|
|
defer func() {
|
|
_ = op.DeleteFile(tmpFile)
|
|
}()
|
|
baseDir := path.Dir(sourcePaths[0])
|
|
relativePaths := make([]string, len(sourcePaths))
|
|
for i, sp := range sourcePaths {
|
|
relativePaths[i] = path.Base(sp)
|
|
}
|
|
cmdStr := fmt.Sprintf("zip -qr %s %s", tmpFile, strings.Join(relativePaths, " "))
|
|
if err := cmd.ExecCmdWithDir(cmdStr, baseDir); err != nil {
|
|
return err
|
|
}
|
|
return op.Rename(tmpFile, dstFile)
|
|
}
|