mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 01:23:31 +08:00
259 lines
7.9 KiB
Go
259 lines
7.9 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/fs"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/1Panel-dev/1Panel/backend/app/dto"
|
|
"github.com/1Panel-dev/1Panel/backend/app/model"
|
|
"github.com/1Panel-dev/1Panel/backend/constant"
|
|
"github.com/1Panel-dev/1Panel/backend/global"
|
|
"github.com/1Panel-dev/1Panel/backend/utils/compose"
|
|
"github.com/1Panel-dev/1Panel/backend/utils/files"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (u *BackupService) AppBackup(req dto.CommonBackup) error {
|
|
localDir, err := loadLocalDir()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
app, err := appRepo.GetFirst(appRepo.WithKey(req.Name))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
install, err := appInstallRepo.GetFirst(commonRepo.WithByName(req.DetailName), appInstallRepo.WithAppId(app.ID))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
timeNow := time.Now().Format("20060102150405")
|
|
|
|
backupDir := path.Join(localDir, fmt.Sprintf("app/%s/%s", req.Name, req.DetailName))
|
|
|
|
fileName := fmt.Sprintf("%s_%s.tar.gz", req.DetailName, timeNow)
|
|
if err := handleAppBackup(&install, backupDir, fileName); err != nil {
|
|
return err
|
|
}
|
|
|
|
record := &model.BackupRecord{
|
|
Type: "app",
|
|
Name: req.Name,
|
|
DetailName: req.DetailName,
|
|
Source: "LOCAL",
|
|
BackupType: "LOCAL",
|
|
FileDir: backupDir,
|
|
FileName: fileName,
|
|
}
|
|
|
|
if err := backupRepo.CreateRecord(record); err != nil {
|
|
global.LOG.Errorf("save backup record failed, err: %v", err)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (u *BackupService) AppRecover(req dto.CommonRecover) error {
|
|
app, err := appRepo.GetFirst(appRepo.WithKey(req.Name))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
install, err := appInstallRepo.GetFirst(commonRepo.WithByName(req.DetailName), appInstallRepo.WithAppId(app.ID))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fileOp := files.NewFileOp()
|
|
if !fileOp.Stat(req.File) {
|
|
return errors.New(fmt.Sprintf("%s file is not exist", req.File))
|
|
}
|
|
if _, err := compose.Down(install.GetComposePath()); err != nil {
|
|
return err
|
|
}
|
|
if err := handleAppRecover(&install, req.File, false); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func handleAppBackup(install *model.AppInstall, backupDir, fileName string) error {
|
|
fileOp := files.NewFileOp()
|
|
tmpDir := fmt.Sprintf("%s/%s", backupDir, strings.ReplaceAll(fileName, ".tar.gz", ""))
|
|
if !fileOp.Stat(tmpDir) {
|
|
if err := os.MkdirAll(tmpDir, os.ModePerm); err != nil {
|
|
return fmt.Errorf("mkdir %s failed, err: %v", backupDir, err)
|
|
}
|
|
}
|
|
defer func() {
|
|
_ = os.RemoveAll(tmpDir)
|
|
}()
|
|
|
|
remarkInfo, _ := json.Marshal(install)
|
|
remarkInfoPath := fmt.Sprintf("%s/app.json", tmpDir)
|
|
if err := fileOp.SaveFile(remarkInfoPath, string(remarkInfo), fs.ModePerm); err != nil {
|
|
return err
|
|
}
|
|
|
|
appPath := install.GetPath()
|
|
if err := handleTar(appPath, tmpDir, "app.tar.gz", ""); err != nil {
|
|
return err
|
|
}
|
|
|
|
resource, _ := appInstallResourceRepo.GetFirst(appInstallResourceRepo.WithAppInstallId(install.ID))
|
|
if resource.ID != 0 && resource.ResourceId != 0 {
|
|
db, err := mysqlRepo.Get(commonRepo.WithByID(resource.ResourceId))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := handleMysqlBackup(db.Name, tmpDir, fmt.Sprintf("%s.sql.gz", install.Name)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if err := handleTar(tmpDir, backupDir, fileName, ""); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func handleAppRecover(install *model.AppInstall, recoverFile string, isRollback bool) error {
|
|
isOk := false
|
|
fileOp := files.NewFileOp()
|
|
if err := handleUnTar(recoverFile, path.Dir(recoverFile)); err != nil {
|
|
return err
|
|
}
|
|
tmpPath := strings.ReplaceAll(recoverFile, ".tar.gz", "")
|
|
defer func() {
|
|
_, _ = compose.Up(install.GetComposePath())
|
|
_ = os.RemoveAll(strings.ReplaceAll(recoverFile, ".tar.gz", ""))
|
|
}()
|
|
|
|
if !fileOp.Stat(tmpPath+"/app.json") || !fileOp.Stat(tmpPath+"/app.tar.gz") {
|
|
return errors.New("the wrong recovery package does not have app.json or app.tar.gz files")
|
|
}
|
|
var oldInstall model.AppInstall
|
|
appjson, err := os.ReadFile(tmpPath + "/app.json")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := json.Unmarshal(appjson, &oldInstall); err != nil {
|
|
return fmt.Errorf("unmarshal app.json failed, err: %v", err)
|
|
}
|
|
if oldInstall.App.Key != install.App.Key || oldInstall.Name != install.Name {
|
|
return errors.New("the current backup file does not match the application")
|
|
}
|
|
|
|
if !isRollback {
|
|
rollbackFile := path.Join(global.CONF.System.TmpDir, fmt.Sprintf("app/%s_%s.tar.gz", install.Name, time.Now().Format("20060102150405")))
|
|
if err := handleAppBackup(install, path.Dir(rollbackFile), path.Base(rollbackFile)); err != nil {
|
|
return fmt.Errorf("backup app %s for rollback before recover failed, err: %v", install.Name, err)
|
|
}
|
|
defer func() {
|
|
if !isOk {
|
|
global.LOG.Info("recover failed, start to rollback now")
|
|
if err := handleAppRecover(install, rollbackFile, true); err != nil {
|
|
global.LOG.Errorf("rollback app %s from %s failed, err: %v", install.Name, rollbackFile, err)
|
|
return
|
|
}
|
|
global.LOG.Infof("rollback app %s from %s successful", install.Name, rollbackFile)
|
|
_ = os.RemoveAll(rollbackFile)
|
|
} else {
|
|
_ = os.RemoveAll(rollbackFile)
|
|
}
|
|
}()
|
|
}
|
|
|
|
newEnvFile := ""
|
|
resource, _ := appInstallResourceRepo.GetFirst(appInstallResourceRepo.WithAppInstallId(install.ID))
|
|
if resource.ID != 0 && install.App.Key != "mysql" {
|
|
mysqlInfo, err := appInstallRepo.LoadBaseInfo(resource.Key, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
db, err := mysqlRepo.Get(commonRepo.WithByID(resource.ResourceId))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
newDB, envMap, err := reCreateDB(db.ID, oldInstall.Env)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
oldHost := fmt.Sprintf("\"PANEL_DB_HOST\":\"%v\"", envMap["PANEL_DB_HOST"].(string))
|
|
newHost := fmt.Sprintf("\"PANEL_DB_HOST\":\"%v\"", mysqlInfo.ServiceName)
|
|
oldInstall.Env = strings.ReplaceAll(oldInstall.Env, oldHost, newHost)
|
|
envMap["PANEL_DB_HOST"] = mysqlInfo.ServiceName
|
|
newEnvFile, err = coverEnvJsonToStr(oldInstall.Env)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_ = appInstallResourceRepo.BatchUpdateBy(map[string]interface{}{"resource_id": newDB.ID}, commonRepo.WithByID(resource.ID))
|
|
|
|
if err := handleMysqlRecover(dto.CommonRecover{
|
|
Name: newDB.MysqlName,
|
|
DetailName: newDB.Name,
|
|
File: tmpPath + "/" + fmt.Sprintf("%s/%s.sql.gz", tmpPath, install.Name),
|
|
}, true); err != nil {
|
|
global.LOG.Errorf("handle recover from sql.gz failed, err: %v", err)
|
|
return err
|
|
}
|
|
}
|
|
|
|
if err := handleUnTar(tmpPath+"/app.tar.gz", fmt.Sprintf("%s/%s", constant.AppInstallDir, install.App.Key)); err != nil {
|
|
global.LOG.Errorf("handle recover from app.tar.gz failed, err: %v", err)
|
|
return err
|
|
}
|
|
|
|
if len(newEnvFile) != 0 {
|
|
envPath := fmt.Sprintf("%s/%s/%s/.env", constant.AppInstallDir, install.App.Key, install.Name)
|
|
file, err := os.OpenFile(envPath, os.O_WRONLY|os.O_TRUNC, 0640)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
_, _ = file.WriteString(newEnvFile)
|
|
}
|
|
|
|
oldInstall.ID = install.ID
|
|
oldInstall.Status = constant.StatusRunning
|
|
oldInstall.AppId = install.AppId
|
|
oldInstall.AppDetailId = install.AppDetailId
|
|
oldInstall.App.ID = install.AppId
|
|
if err := appInstallRepo.Save(context.Background(), &oldInstall); err != nil {
|
|
global.LOG.Errorf("save db app install failed, err: %v", err)
|
|
return err
|
|
}
|
|
isOk = true
|
|
return nil
|
|
}
|
|
|
|
func reCreateDB(dbID uint, oldEnv string) (*model.DatabaseMysql, map[string]interface{}, error) {
|
|
mysqlService := NewIMysqlService()
|
|
ctx := context.Background()
|
|
_ = mysqlService.Delete(ctx, dto.MysqlDBDelete{ID: dbID, DeleteBackup: true, ForceDelete: true})
|
|
|
|
envMap := make(map[string]interface{})
|
|
if err := json.Unmarshal([]byte(oldEnv), &envMap); err != nil {
|
|
return nil, envMap, err
|
|
}
|
|
oldName, _ := envMap["PANEL_DB_NAME"].(string)
|
|
oldUser, _ := envMap["PANEL_DB_USER"].(string)
|
|
oldPassword, _ := envMap["PANEL_DB_USER_PASSWORD"].(string)
|
|
createDB, err := mysqlService.Create(context.Background(), dto.MysqlDBCreate{
|
|
Name: oldName,
|
|
Format: "utf8mb4",
|
|
Username: oldUser,
|
|
Password: oldPassword,
|
|
Permission: "%",
|
|
})
|
|
if err != nil {
|
|
return nil, envMap, err
|
|
}
|
|
|
|
return createDB, envMap, nil
|
|
}
|