mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-22 16:00:51 +00:00
92 lines
2.5 KiB
Go
92 lines
2.5 KiB
Go
package v2
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/agent/app/api/v2/helper"
|
|
"github.com/1Panel-dev/1Panel/agent/app/dto"
|
|
"github.com/1Panel-dev/1Panel/agent/app/dto/request"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// @Tags File
|
|
// @Summary Load file history list
|
|
// @Accept json
|
|
// @Param request body request.FileHistorySearchReq true "request"
|
|
// @Success 200 {object} dto.PageResult
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /files/history/search [post]
|
|
func (b *BaseApi) SearchFileHistory(c *gin.Context) {
|
|
var req request.FileHistorySearchReq
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
total, items, err := fileHistoryService.Search(req)
|
|
if err != nil {
|
|
helper.InternalServer(c, err)
|
|
return
|
|
}
|
|
helper.SuccessWithData(c, dto.PageResult{Items: items, Total: total})
|
|
}
|
|
|
|
// @Tags File
|
|
// @Summary Load file history content
|
|
// @Accept json
|
|
// @Param request body request.FileHistoryContentReq true "request"
|
|
// @Success 200 {object} response.FileHistoryInfo
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /files/history/content [post]
|
|
func (b *BaseApi) GetFileHistoryContent(c *gin.Context) {
|
|
var req request.FileHistoryContentReq
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
item, err := fileHistoryService.GetContent(req)
|
|
if err != nil {
|
|
helper.InternalServer(c, err)
|
|
return
|
|
}
|
|
helper.SuccessWithData(c, item)
|
|
}
|
|
|
|
// @Tags File
|
|
// @Summary Delete file history record
|
|
// @Accept json
|
|
// @Param request body request.FileHistoryDeleteReq true "request"
|
|
// @Success 200
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /files/history/del [post]
|
|
func (b *BaseApi) DeleteFileHistory(c *gin.Context) {
|
|
var req request.FileHistoryDeleteReq
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
if err := fileHistoryService.Delete(req); err != nil {
|
|
helper.InternalServer(c, err)
|
|
return
|
|
}
|
|
helper.Success(c)
|
|
}
|
|
|
|
// @Tags File
|
|
// @Summary Restore file history record
|
|
// @Accept json
|
|
// @Param request body request.FileHistoryRestoreReq true "request"
|
|
// @Success 200 {object} response.FileInfo
|
|
// @Security ApiKeyAuth
|
|
// @Security Timestamp
|
|
// @Router /files/history/restore [post]
|
|
func (b *BaseApi) RestoreFileHistory(c *gin.Context) {
|
|
var req request.FileHistoryRestoreReq
|
|
if err := helper.CheckBindAndValidate(&req, c); err != nil {
|
|
return
|
|
}
|
|
info, err := fileHistoryService.Restore(req)
|
|
if err != nil {
|
|
helper.InternalServer(c, err)
|
|
return
|
|
}
|
|
helper.SuccessWithData(c, info)
|
|
}
|