2022-09-16 18:53:45 +08:00
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
2023-03-15 15:58:26 +08:00
|
|
|
"encoding/base64"
|
|
|
|
|
2022-10-17 16:32:31 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/backend/app/api/v1/helper"
|
|
|
|
"github.com/1Panel-dev/1Panel/backend/app/dto"
|
|
|
|
"github.com/1Panel-dev/1Panel/backend/constant"
|
|
|
|
"github.com/1Panel-dev/1Panel/backend/global"
|
2022-09-16 18:53:45 +08:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Tags Backup Account
|
|
|
|
// @Summary Create backup account
|
|
|
|
// @Description 创建备份账号
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.BackupOperate true "request"
|
|
|
|
// @Success 200
|
|
|
|
// @Security ApiKeyAuth
|
2023-02-13 17:13:55 +08:00
|
|
|
// @Router /settings/backup [post]
|
2023-01-04 22:31:51 +08:00
|
|
|
// @x-panel-log {"bodyKeys":["type"],"paramKeys":[],"BeforeFuntions":[],"formatZH":"创建备份账号 [type]","formatEN":"create backup account [type]"}
|
2022-09-16 18:53:45 +08:00
|
|
|
func (b *BaseApi) CreateBackup(c *gin.Context) {
|
|
|
|
var req dto.BackupOperate
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
2023-03-15 15:58:26 +08:00
|
|
|
if len(req.Credential) != 0 {
|
|
|
|
credential, err := base64.StdEncoding.DecodeString(req.Credential)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req.Credential = string(credential)
|
|
|
|
}
|
|
|
|
if len(req.AccessKey) != 0 {
|
|
|
|
accessKey, err := base64.StdEncoding.DecodeString(req.AccessKey)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req.AccessKey = string(accessKey)
|
|
|
|
}
|
|
|
|
|
2022-09-16 18:53:45 +08:00
|
|
|
if err := backupService.Create(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
helper.SuccessWithData(c, nil)
|
|
|
|
}
|
|
|
|
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Tags Backup Account
|
2023-01-05 11:57:03 +08:00
|
|
|
// @Summary List buckets
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Description 获取 bucket 列表
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.ForBuckets true "request"
|
|
|
|
// @Success 200 {anrry} string
|
|
|
|
// @Security ApiKeyAuth
|
2023-02-13 17:13:55 +08:00
|
|
|
// @Router /settings/backup/search [post]
|
2022-09-16 18:53:45 +08:00
|
|
|
func (b *BaseApi) ListBuckets(c *gin.Context) {
|
|
|
|
var req dto.ForBuckets
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
2023-03-15 15:58:26 +08:00
|
|
|
if len(req.Credential) != 0 {
|
|
|
|
credential, err := base64.StdEncoding.DecodeString(req.Credential)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req.Credential = string(credential)
|
|
|
|
}
|
|
|
|
if len(req.AccessKey) != 0 {
|
|
|
|
accessKey, err := base64.StdEncoding.DecodeString(req.AccessKey)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req.AccessKey = string(accessKey)
|
|
|
|
}
|
|
|
|
|
2022-09-16 18:53:45 +08:00
|
|
|
buckets, err := backupService.GetBuckets(req)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
helper.SuccessWithData(c, buckets)
|
|
|
|
}
|
|
|
|
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Tags Backup Account
|
|
|
|
// @Summary Delete backup account
|
|
|
|
// @Description 删除备份账号
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.BatchDeleteReq true "request"
|
|
|
|
// @Success 200
|
|
|
|
// @Security ApiKeyAuth
|
2023-02-13 17:13:55 +08:00
|
|
|
// @Router /settings/backup/del [post]
|
2023-04-17 16:06:28 +08:00
|
|
|
// @x-panel-log {"bodyKeys":["id"],"paramKeys":[],"BeforeFuntions":[{"input_colume":"id","input_value":"id","isList":true,"db":"backup_accounts","output_colume":"type","output_value":"types"}],"formatZH":"删除备份账号 [types]","formatEN":"delete backup account [types]"}
|
2022-09-16 18:53:45 +08:00
|
|
|
func (b *BaseApi) DeleteBackup(c *gin.Context) {
|
2023-04-17 16:06:28 +08:00
|
|
|
var req dto.OperateByID
|
2022-09-16 18:53:45 +08:00
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-17 16:06:28 +08:00
|
|
|
if err := backupService.Delete(req.ID); err != nil {
|
2022-09-16 18:53:45 +08:00
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
helper.SuccessWithData(c, nil)
|
|
|
|
}
|
|
|
|
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Tags Backup Account
|
2023-01-05 11:57:03 +08:00
|
|
|
// @Summary Page backup records
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Description 获取备份记录列表分页
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.RecordSearch true "request"
|
|
|
|
// @Success 200
|
|
|
|
// @Security ApiKeyAuth
|
2023-02-13 17:13:55 +08:00
|
|
|
// @Router /settings/backup/record/search [post]
|
2022-11-29 17:39:10 +08:00
|
|
|
func (b *BaseApi) SearchBackupRecords(c *gin.Context) {
|
|
|
|
var req dto.RecordSearch
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
total, list, err := backupService.SearchRecordsWithPage(req)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
helper.SuccessWithData(c, dto.PageResult{
|
|
|
|
Items: list,
|
|
|
|
Total: total,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Tags Backup Account
|
|
|
|
// @Summary Download backup record
|
|
|
|
// @Description 下载备份记录
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.DownloadRecord true "request"
|
|
|
|
// @Success 200
|
|
|
|
// @Security ApiKeyAuth
|
2023-02-13 17:13:55 +08:00
|
|
|
// @Router /settings/backup/record/download [post]
|
2023-01-04 22:31:51 +08:00
|
|
|
// @x-panel-log {"bodyKeys":["source","fileName"],"paramKeys":[],"BeforeFuntions":[],"formatZH":"下载备份记录 [source][fileName]","formatEN":"download backup records [source][fileName]"}
|
2022-10-28 11:02:47 +08:00
|
|
|
func (b *BaseApi) DownloadRecord(c *gin.Context) {
|
|
|
|
var req dto.DownloadRecord
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
filePath, err := backupService.DownloadRecord(req)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
2023-03-18 10:03:40 +08:00
|
|
|
helper.SuccessWithData(c, filePath)
|
2022-10-28 11:02:47 +08:00
|
|
|
}
|
|
|
|
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Tags Backup Account
|
|
|
|
// @Summary Delete backup record
|
|
|
|
// @Description 删除备份记录
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.BatchDeleteReq true "request"
|
|
|
|
// @Success 200
|
|
|
|
// @Security ApiKeyAuth
|
2023-02-13 17:13:55 +08:00
|
|
|
// @Router /settings/backup/record/del [post]
|
2023-01-04 22:31:51 +08:00
|
|
|
// @x-panel-log {"bodyKeys":["ids"],"paramKeys":[],"BeforeFuntions":[{"input_colume":"id","input_value":"ids","isList":true,"db":"backup_records","output_colume":"file_name","output_value":"files"}],"formatZH":"删除备份记录 [files]","formatEN":"delete backup records [files]"}
|
2022-10-27 23:09:39 +08:00
|
|
|
func (b *BaseApi) DeleteBackupRecord(c *gin.Context) {
|
|
|
|
var req dto.BatchDeleteReq
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := backupService.BatchDeleteRecord(req.Ids); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
helper.SuccessWithData(c, nil)
|
|
|
|
}
|
|
|
|
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Tags Backup Account
|
|
|
|
// @Summary Update backup account
|
|
|
|
// @Description 更新备份账号信息
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.BackupOperate true "request"
|
|
|
|
// @Success 200
|
|
|
|
// @Security ApiKeyAuth
|
2023-02-13 17:13:55 +08:00
|
|
|
// @Router /settings/backup/update [post]
|
2023-01-04 22:31:51 +08:00
|
|
|
// @x-panel-log {"bodyKeys":["type"],"paramKeys":[],"BeforeFuntions":[],"formatZH":"更新备份账号 [types]","formatEN":"update backup account [types]"}
|
2022-09-16 18:53:45 +08:00
|
|
|
func (b *BaseApi) UpdateBackup(c *gin.Context) {
|
|
|
|
var req dto.BackupOperate
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
2023-03-15 15:58:26 +08:00
|
|
|
if len(req.Credential) != 0 {
|
|
|
|
credential, err := base64.StdEncoding.DecodeString(req.Credential)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req.Credential = string(credential)
|
|
|
|
}
|
|
|
|
if len(req.AccessKey) != 0 {
|
|
|
|
accessKey, err := base64.StdEncoding.DecodeString(req.AccessKey)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req.AccessKey = string(accessKey)
|
|
|
|
}
|
|
|
|
|
2023-01-29 16:38:34 +08:00
|
|
|
if err := backupService.Update(req); err != nil {
|
2022-09-16 18:53:45 +08:00
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
helper.SuccessWithData(c, nil)
|
|
|
|
}
|
|
|
|
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Tags Backup Account
|
2023-01-05 11:57:03 +08:00
|
|
|
// @Summary List backup accounts
|
2023-01-04 22:31:51 +08:00
|
|
|
// @Description 获取备份账号列表
|
|
|
|
// @Success 200 {anrry} dto.BackupInfo
|
|
|
|
// @Security ApiKeyAuth
|
2023-02-13 17:13:55 +08:00
|
|
|
// @Router /settings/backup/search [get]
|
2022-09-19 19:42:06 +08:00
|
|
|
func (b *BaseApi) ListBackup(c *gin.Context) {
|
|
|
|
data, err := backupService.List()
|
2022-09-16 18:53:45 +08:00
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-19 19:42:06 +08:00
|
|
|
helper.SuccessWithData(c, data)
|
2022-09-16 18:53:45 +08:00
|
|
|
}
|
2023-02-13 15:48:18 +08:00
|
|
|
|
|
|
|
// @Tags Backup Account
|
|
|
|
// @Summary List files from backup accounts
|
|
|
|
// @Description 获取备份账号内文件列表
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.BackupSearchFile true "request"
|
|
|
|
// @Success 200 {anrry} string
|
|
|
|
// @Security ApiKeyAuth
|
2023-02-13 17:13:55 +08:00
|
|
|
// @Router /settings/backup/search/files [post]
|
2023-02-13 15:48:18 +08:00
|
|
|
func (b *BaseApi) LoadFilesFromBackup(c *gin.Context) {
|
|
|
|
var req dto.BackupSearchFile
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
data, err := backupService.ListFiles(req)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
helper.SuccessWithData(c, data)
|
|
|
|
}
|
2023-02-21 19:06:24 +08:00
|
|
|
|
|
|
|
// @Tags Backup Account
|
|
|
|
// @Summary Backup system data
|
|
|
|
// @Description 备份系统数据
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.CommonBackup true "request"
|
|
|
|
// @Success 200
|
|
|
|
// @Security ApiKeyAuth
|
|
|
|
// @Router /settings/backup/ [post]
|
|
|
|
// @x-panel-log {"bodyKeys":["type","name","detailName"],"paramKeys":[],"BeforeFuntions":[],"formatZH":"备份 [type] 数据 [name][detailName]","formatEN":"backup [type] data [name][detailName]"}
|
|
|
|
func (b *BaseApi) Backup(c *gin.Context) {
|
|
|
|
var req dto.CommonBackup
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch req.Type {
|
|
|
|
case "app":
|
|
|
|
if err := backupService.AppBackup(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case "mysql":
|
|
|
|
if err := backupService.MysqlBackup(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case "website":
|
|
|
|
if err := backupService.WebsiteBackup(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case "redis":
|
|
|
|
if err := backupService.RedisBackup(); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
helper.SuccessWithData(c, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// @Tags Backup Account
|
|
|
|
// @Summary Recover system data
|
|
|
|
// @Description 恢复系统数据
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.CommonRecover true "request"
|
|
|
|
// @Success 200
|
|
|
|
// @Security ApiKeyAuth
|
|
|
|
// @Router /settings/backup/recover [post]
|
|
|
|
// @x-panel-log {"bodyKeys":["type","name","detailName","file"],"paramKeys":[],"BeforeFuntions":[],"formatZH":"从 [file] 恢复 [type] 数据 [name][detailName]","formatEN":"recover [type] data [name][detailName] from [file]"}
|
|
|
|
func (b *BaseApi) Recover(c *gin.Context) {
|
|
|
|
var req dto.CommonRecover
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch req.Type {
|
|
|
|
case "mysql":
|
|
|
|
if err := backupService.MysqlRecover(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case "website":
|
|
|
|
if err := backupService.WebsiteRecover(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
2023-03-01 11:38:08 +08:00
|
|
|
case "redis":
|
|
|
|
if err := backupService.RedisRecover(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case "app":
|
|
|
|
if err := backupService.AppRecover(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
2023-02-21 19:06:24 +08:00
|
|
|
}
|
|
|
|
helper.SuccessWithData(c, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// @Tags Backup Account
|
|
|
|
// @Summary Recover system data by upload
|
|
|
|
// @Description 从上传恢复系统数据
|
|
|
|
// @Accept json
|
|
|
|
// @Param request body dto.CommonRecover true "request"
|
|
|
|
// @Success 200
|
|
|
|
// @Security ApiKeyAuth
|
|
|
|
// @Router /settings/backup/recover/byupload [post]
|
|
|
|
// @x-panel-log {"bodyKeys":["type","name","detailName","file"],"paramKeys":[],"BeforeFuntions":[],"formatZH":"从 [file] 恢复 [type] 数据 [name][detailName]","formatEN":"recover [type] data [name][detailName] from [file]"}
|
|
|
|
func (b *BaseApi) RecoverByUpload(c *gin.Context) {
|
|
|
|
var req dto.CommonRecover
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := global.VALID.Struct(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch req.Type {
|
|
|
|
case "mysql":
|
|
|
|
if err := backupService.MysqlRecoverByUpload(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
2023-03-02 13:54:07 +08:00
|
|
|
case "app":
|
|
|
|
if err := backupService.AppRecover(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
2023-02-21 19:06:24 +08:00
|
|
|
case "website":
|
|
|
|
if err := backupService.WebsiteRecover(req); err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
helper.SuccessWithData(c, nil)
|
|
|
|
}
|