mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-21 00:24:12 +08:00
* feat: enhance archiving and extraction capabilities with additional compression formats and ownership preservation * feat: enhance archiving and extraction capabilities with additional compression formats and ownership preservation * feat: enhance archiving and extraction capabilities with additional compression formats and ownership preservation
63 lines
1.7 KiB
Go
63 lines
1.7 KiB
Go
package files
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"path"
|
|
"time"
|
|
|
|
"github.com/1Panel-dev/1Panel/agent/constant"
|
|
"github.com/1Panel-dev/1Panel/agent/global"
|
|
"github.com/1Panel-dev/1Panel/agent/utils/cmd"
|
|
"github.com/1Panel-dev/1Panel/agent/utils/common"
|
|
)
|
|
|
|
type ZipArchiver struct {
|
|
}
|
|
|
|
func NewZipArchiver() ShellArchiver {
|
|
return &ZipArchiver{}
|
|
}
|
|
|
|
func (z ZipArchiver) Extract(ctx context.Context, filePath, dstDir string, secret string) error {
|
|
return z.ExtractWithOptions(ctx, filePath, dstDir, secret, false)
|
|
}
|
|
|
|
func (z ZipArchiver) ExtractWithOptions(ctx context.Context, filePath, dstDir, _ string, preserveOwner bool) error {
|
|
if err := checkCmdAvailability("unzip"); err != nil {
|
|
return err
|
|
}
|
|
args := []string{"-qo"}
|
|
if preserveOwner {
|
|
args = append(args, "-X")
|
|
}
|
|
args = append(args, filePath, "-d", dstDir)
|
|
return cmd.NewCommandMgr(cmd.WithContext(ctx)).Run("unzip", args...)
|
|
}
|
|
|
|
func (z ZipArchiver) Compress(ctx context.Context, sourcePaths []string, dstFile string, _ string) error {
|
|
var err error
|
|
tmpFile := path.Join(global.Dir.TmpDir, fmt.Sprintf("%s%s.zip", common.RandStr(50), time.Now().Format(constant.DateTimeSlimLayout)))
|
|
op := NewFileOp()
|
|
defer func() {
|
|
_ = op.DeleteFile(tmpFile)
|
|
if err != nil {
|
|
_ = op.DeleteFile(dstFile)
|
|
}
|
|
}()
|
|
baseDir := path.Dir(sourcePaths[0])
|
|
relativePaths := make([]string, len(sourcePaths))
|
|
for i, sp := range sourcePaths {
|
|
relativePaths[i] = path.Base(sp)
|
|
}
|
|
cmdMgr := cmd.NewCommandMgr(cmd.WithWorkDir(baseDir), cmd.WithContext(ctx))
|
|
args := append([]string{"-qr", tmpFile}, relativePaths...)
|
|
if err = cmdMgr.Run("zip", args...); err != nil {
|
|
return err
|
|
}
|
|
if err = op.Mv(tmpFile, dstFile); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|