package service import ( "bytes" "context" "encoding/json" "fmt" "net/http" "os" "path" "sort" "strings" "sync" "github.com/1Panel-dev/1Panel/agent/app/dto" "github.com/1Panel-dev/1Panel/agent/app/model" "github.com/1Panel-dev/1Panel/agent/constant" "github.com/1Panel-dev/1Panel/agent/global" "github.com/1Panel-dev/1Panel/agent/utils/cloud_storage" httpUtils "github.com/1Panel-dev/1Panel/agent/utils/http" "github.com/jinzhu/copier" "github.com/pkg/errors" ) type BackupService struct{} type IBackupService interface { SearchRecordsWithPage(search dto.RecordSearch) (int64, []dto.BackupRecords, error) SearchRecordsByCronjobWithPage(search dto.RecordSearchByCronjob) (int64, []dto.BackupRecords, error) DownloadRecord(info dto.DownloadRecord) (string, error) DeleteRecordByName(backupType, name, detailName string, withDeleteFile bool) error BatchDeleteRecord(ids []uint) error ListFiles(req dto.OperateByID) []string MysqlBackup(db dto.CommonBackup) error PostgresqlBackup(db dto.CommonBackup) error MysqlRecover(db dto.CommonRecover) error PostgresqlRecover(db dto.CommonRecover) error MysqlRecoverByUpload(req dto.CommonRecover) error PostgresqlRecoverByUpload(req dto.CommonRecover) error RedisBackup(db dto.CommonBackup) error RedisRecover(db dto.CommonRecover) error WebsiteBackup(db dto.CommonBackup) error WebsiteRecover(req dto.CommonRecover) error AppBackup(db dto.CommonBackup) (*model.BackupRecord, error) AppRecover(req dto.CommonRecover) error } func NewIBackupService() IBackupService { return &BackupService{} } func (u *BackupService) SearchRecordsWithPage(search dto.RecordSearch) (int64, []dto.BackupRecords, error) { total, records, err := backupRepo.PageRecord( search.Page, search.PageSize, commonRepo.WithOrderBy("created_at desc"), commonRepo.WithByName(search.Name), commonRepo.WithByType(search.Type), backupRepo.WithByDetailName(search.DetailName), ) if err != nil { return 0, nil, err } datas, err := u.loadRecordSize(records) sort.Slice(datas, func(i, j int) bool { return datas[i].CreatedAt.After(datas[j].CreatedAt) }) return total, datas, err } func (u *BackupService) SearchRecordsByCronjobWithPage(search dto.RecordSearchByCronjob) (int64, []dto.BackupRecords, error) { total, records, err := backupRepo.PageRecord( search.Page, search.PageSize, commonRepo.WithOrderBy("created_at desc"), backupRepo.WithByCronID(search.CronjobID), ) if err != nil { return 0, nil, err } datas, err := u.loadRecordSize(records) sort.Slice(datas, func(i, j int) bool { return datas[i].CreatedAt.After(datas[j].CreatedAt) }) return total, datas, err } type loadSizeHelper struct { isOk bool backupPath string client cloud_storage.CloudStorageClient } func (u *BackupService) DownloadRecord(info dto.DownloadRecord) (string, error) { account, client, err := NewBackupClientWithID(info.DownloadAccountID) if err != nil { return "", fmt.Errorf("new cloud storage client failed, err: %v", err) } if account.Type == "LOCAL" { return path.Join(global.CONF.System.Backup, info.FileDir, info.FileName), nil } targetPath := fmt.Sprintf("%s/download/%s/%s", constant.DataDir, info.FileDir, info.FileName) if _, err := os.Stat(path.Dir(targetPath)); err != nil && os.IsNotExist(err) { if err = os.MkdirAll(path.Dir(targetPath), os.ModePerm); err != nil { global.LOG.Errorf("mkdir %s failed, err: %v", path.Dir(targetPath), err) } } srcPath := fmt.Sprintf("%s/%s", info.FileDir, info.FileName) if len(account.BackupPath) != 0 { srcPath = path.Join(strings.TrimPrefix(account.BackupPath, "/"), srcPath) } if exist, _ := client.Exist(srcPath); exist { isOK, err := client.Download(srcPath, targetPath) if !isOK { return "", fmt.Errorf("cloud storage download failed, err: %v", err) } } return targetPath, nil } func (u *BackupService) DeleteRecordByName(backupType, name, detailName string, withDeleteFile bool) error { if !withDeleteFile { return backupRepo.DeleteRecord(context.Background(), commonRepo.WithByType(backupType), commonRepo.WithByName(name), backupRepo.WithByDetailName(detailName)) } records, err := backupRepo.ListRecord(commonRepo.WithByType(backupType), commonRepo.WithByName(name), backupRepo.WithByDetailName(detailName)) if err != nil { return err } for _, record := range records { _, client, err := NewBackupClientWithID(record.DownloadAccountID) if err != nil { global.LOG.Errorf("new client for backup account failed, err: %v", err) continue } if _, err = client.Delete(path.Join(record.FileDir, record.FileName)); err != nil { global.LOG.Errorf("remove file %s failed, err: %v", path.Join(record.FileDir, record.FileName), err) } _ = backupRepo.DeleteRecord(context.Background(), commonRepo.WithByID(record.ID)) } return nil } func (u *BackupService) BatchDeleteRecord(ids []uint) error { records, err := backupRepo.ListRecord(commonRepo.WithIdsIn(ids)) if err != nil { return err } for _, record := range records { _, client, err := NewBackupClientWithID(record.DownloadAccountID) if err != nil { global.LOG.Errorf("new client for backup account failed, err: %v", err) continue } if _, err = client.Delete(path.Join(record.FileDir, record.FileName)); err != nil { global.LOG.Errorf("remove file %s failed, err: %v", path.Join(record.FileDir, record.FileName), err) } } return backupRepo.DeleteRecord(context.Background(), commonRepo.WithIdsIn(ids)) } func (u *BackupService) ListFiles(req dto.OperateByID) []string { var datas []string account, client, err := NewBackupClientWithID(req.ID) if err != nil { return datas } prefix := "system_snapshot" if len(account.BackupPath) != 0 { prefix = path.Join(strings.TrimPrefix(account.BackupPath, "/"), prefix) } files, err := client.ListObjects(prefix) if err != nil { global.LOG.Debugf("load files failed, err: %v", err) return datas } for _, file := range files { if len(file) != 0 { datas = append(datas, path.Base(file)) } } return datas } func (u *BackupService) loadRecordSize(records []model.BackupRecord) ([]dto.BackupRecords, error) { var datas []dto.BackupRecords clientMap := make(map[uint]loadSizeHelper) var wg sync.WaitGroup for i := 0; i < len(records); i++ { var item dto.BackupRecords if err := copier.Copy(&item, &records[i]); err != nil { return nil, errors.WithMessage(constant.ErrStructTransform, err.Error()) } itemPath := path.Join(records[i].FileDir, records[i].FileName) if _, ok := clientMap[records[i].DownloadAccountID]; !ok { account, client, err := NewBackupClientWithID(records[i].DownloadAccountID) if err != nil { global.LOG.Errorf("load backup client from db failed, err: %v", err) clientMap[records[i].DownloadAccountID] = loadSizeHelper{} datas = append(datas, item) continue } item.Size, _ = client.Size(path.Join(strings.TrimLeft(account.BackupPath, "/"), itemPath)) datas = append(datas, item) clientMap[records[i].DownloadAccountID] = loadSizeHelper{backupPath: strings.TrimLeft(account.BackupPath, "/"), client: client, isOk: true} continue } if clientMap[records[i].DownloadAccountID].isOk { wg.Add(1) go func(index int) { item.Size, _ = clientMap[records[index].DownloadAccountID].client.Size(path.Join(clientMap[records[index].DownloadAccountID].backupPath, itemPath)) datas = append(datas, item) wg.Done() }(i) } else { datas = append(datas, item) } } wg.Wait() return datas, nil } func NewBackupClientWithID(id uint) (*dto.BackupInfo, cloud_storage.CloudStorageClient, error) { data, err := httpUtils.RequestToMaster(fmt.Sprintf("/api/v2/backup/%v", id), http.MethodGet, nil) if err != nil { return nil, nil, err } global.LOG.Debug("我走到了这里11") account, ok := data.(dto.BackupInfo) if !ok { return nil, nil, fmt.Errorf("err response from master: %v", data) } global.LOG.Debug("我走到了这里22") if account.Type == constant.Local { localDir, err := LoadLocalDirByStr(account.Vars) if err != nil { return nil, nil, err } global.CONF.System.Backup = localDir } global.LOG.Debug("我走到了这里33") backClient, err := newClient(&account) if err != nil { return nil, nil, err } return &account, backClient, nil } type backupClientHelper struct { id uint name string backupPath string client cloud_storage.CloudStorageClient } func NewBackupClientMap(ids []string) (map[string]backupClientHelper, error) { bodyItem, err := json.Marshal(ids) if err != nil { return nil, err } data, err := httpUtils.RequestToMaster("/api/v2/backup/list", http.MethodPost, bytes.NewReader(bodyItem)) if err != nil { return nil, err } accounts, ok := data.([]dto.BackupInfo) if !ok { return nil, fmt.Errorf("err response from master: %v", data) } clientMap := make(map[string]backupClientHelper) for _, item := range accounts { backClient, err := newClient(&item) if err != nil { return nil, err } pathItem := item.BackupPath if item.BackupPath != "/" { pathItem = strings.TrimPrefix(item.BackupPath, "/") } clientMap[item.Name] = backupClientHelper{client: backClient, backupPath: pathItem, name: item.Name} } return clientMap, nil } func newClient(account *dto.BackupInfo) (cloud_storage.CloudStorageClient, error) { varMap := make(map[string]interface{}) if err := json.Unmarshal([]byte(account.Vars), &varMap); err != nil { return nil, err } varMap["bucket"] = account.Bucket switch account.Type { case constant.Sftp, constant.WebDAV: varMap["username"] = account.AccessKey varMap["password"] = account.Credential case constant.OSS, constant.S3, constant.MinIo, constant.Cos, constant.Kodo: varMap["accessKey"] = account.AccessKey varMap["secretKey"] = account.Credential } client, err := cloud_storage.NewCloudStorageClient(account.Type, varMap) if err != nil { return nil, err } return client, nil } func LoadLocalDirByStr(vars string) (string, error) { varMap := make(map[string]interface{}) if err := json.Unmarshal([]byte(vars), &varMap); err != nil { return "", err } if _, ok := varMap["dir"]; !ok { return "", errors.New("load local backup dir failed") } baseDir, ok := varMap["dir"].(string) if ok { if _, err := os.Stat(baseDir); err != nil && os.IsNotExist(err) { if err = os.MkdirAll(baseDir, os.ModePerm); err != nil { return "", fmt.Errorf("mkdir %s failed, err: %v", baseDir, err) } } } return "", fmt.Errorf("error type dir: %T", varMap["dir"]) }