mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-10 17:13:30 +08:00
38 lines
942 B
Go
38 lines
942 B
Go
package files
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/backend/buserr"
|
|
"github.com/1Panel-dev/1Panel/backend/constant"
|
|
"github.com/1Panel-dev/1Panel/backend/utils/cmd"
|
|
)
|
|
|
|
type ShellArchiver interface {
|
|
Extract(filePath, dstDir string, secret string) error
|
|
Compress(sourcePaths []string, dstFile string, secret string) error
|
|
}
|
|
|
|
func NewShellArchiver(compressType CompressType) (ShellArchiver, error) {
|
|
switch compressType {
|
|
case Tar:
|
|
if err := checkCmdAvailability("tar"); err != nil {
|
|
return nil, err
|
|
}
|
|
return NewTarArchiver(compressType), nil
|
|
case TarGz:
|
|
return NewTarGzArchiver(), nil
|
|
case Zip:
|
|
if err := checkCmdAvailability("zip"); err != nil {
|
|
return nil, err
|
|
}
|
|
return NewZipArchiver(), nil
|
|
default:
|
|
return nil, buserr.New("unsupported compress type")
|
|
}
|
|
}
|
|
|
|
func checkCmdAvailability(cmdStr string) error {
|
|
if cmd.Which(cmdStr) {
|
|
return nil
|
|
}
|
|
return buserr.WithName(constant.ErrCmdNotFound, cmdStr)
|
|
}
|