111 lines
3.7 KiB
Go
111 lines
3.7 KiB
Go
package example
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"go.uber.org/zap"
|
|
"miniapp/global"
|
|
"miniapp/model/common/request"
|
|
"miniapp/model/common/response"
|
|
"miniapp/model/example"
|
|
exampleRes "miniapp/model/example/response"
|
|
)
|
|
|
|
type FileUploadAndDownloadApi struct{}
|
|
|
|
// UploadFile
|
|
// @Tags ExaFileUploadAndDownload
|
|
// @Summary 上传文件示例
|
|
// @Security ApiKeyAuth
|
|
// @accept multipart/form-data
|
|
// @Produce application/json
|
|
// @Param file formData file true "上传文件示例"
|
|
// @Success 200 {object} response.Response{data=exampleRes.ExaFileResponse,msg=string} "上传文件示例,返回包括文件详情"
|
|
// @Router /fileUploadAndDownload/upload [post]
|
|
func (b *FileUploadAndDownloadApi) UploadFile(c *gin.Context) {
|
|
var file example.ExaFileUploadAndDownload
|
|
noSave := c.DefaultQuery("noSave", "0")
|
|
_, header, err := c.Request.FormFile("file")
|
|
if err != nil {
|
|
global.GVA_LOG.Error("接收文件失败!", zap.Error(err))
|
|
response.FailWithMessage("接收文件失败", c)
|
|
return
|
|
}
|
|
file, err = fileUploadAndDownloadService.UploadFile(header, noSave) // 文件上传后拿到文件路径
|
|
if err != nil {
|
|
global.GVA_LOG.Error("修改数据库链接失败!", zap.Error(err))
|
|
response.FailWithMessage("修改数据库链接失败", c)
|
|
return
|
|
}
|
|
response.OkWithDetailed(exampleRes.ExaFileResponse{File: file}, "上传成功", c)
|
|
}
|
|
|
|
// EditFileName 编辑文件名或者备注
|
|
func (b *FileUploadAndDownloadApi) EditFileName(c *gin.Context) {
|
|
var file example.ExaFileUploadAndDownload
|
|
err := c.ShouldBindJSON(&file)
|
|
if err != nil {
|
|
response.FailWithMessage(err.Error(), c)
|
|
return
|
|
}
|
|
err = fileUploadAndDownloadService.EditFileName(file)
|
|
if err != nil {
|
|
global.GVA_LOG.Error("编辑失败!", zap.Error(err))
|
|
response.FailWithMessage("编辑失败", c)
|
|
return
|
|
}
|
|
response.OkWithMessage("编辑成功", c)
|
|
}
|
|
|
|
// DeleteFile
|
|
// @Tags ExaFileUploadAndDownload
|
|
// @Summary 删除文件
|
|
// @Security ApiKeyAuth
|
|
// @Produce application/json
|
|
// @Param data body example.ExaFileUploadAndDownload true "传入文件里面id即可"
|
|
// @Success 200 {object} response.Response{msg=string} "删除文件"
|
|
// @Router /fileUploadAndDownload/deleteFile [post]
|
|
func (b *FileUploadAndDownloadApi) DeleteFile(c *gin.Context) {
|
|
var file example.ExaFileUploadAndDownload
|
|
err := c.ShouldBindJSON(&file)
|
|
if err != nil {
|
|
response.FailWithMessage(err.Error(), c)
|
|
return
|
|
}
|
|
if err := fileUploadAndDownloadService.DeleteFile(file); err != nil {
|
|
global.GVA_LOG.Error("删除失败!", zap.Error(err))
|
|
response.FailWithMessage("删除失败", c)
|
|
return
|
|
}
|
|
response.OkWithMessage("删除成功", c)
|
|
}
|
|
|
|
// GetFileList
|
|
// @Tags ExaFileUploadAndDownload
|
|
// @Summary 分页文件列表
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body request.PageInfo true "页码, 每页大小"
|
|
// @Success 200 {object} response.Response{data=response.PageResult,msg=string} "分页文件列表,返回包括列表,总数,页码,每页数量"
|
|
// @Router /fileUploadAndDownload/getFileList [post]
|
|
func (b *FileUploadAndDownloadApi) GetFileList(c *gin.Context) {
|
|
var pageInfo request.PageInfo
|
|
err := c.ShouldBindJSON(&pageInfo)
|
|
if err != nil {
|
|
response.FailWithMessage(err.Error(), c)
|
|
return
|
|
}
|
|
list, total, err := fileUploadAndDownloadService.GetFileRecordInfoList(pageInfo)
|
|
if err != nil {
|
|
global.GVA_LOG.Error("获取失败!", zap.Error(err))
|
|
response.FailWithMessage("获取失败", c)
|
|
return
|
|
}
|
|
response.OkWithDetailed(response.PageResult{
|
|
List: list,
|
|
Total: total,
|
|
Page: pageInfo.Page,
|
|
PageSize: pageInfo.PageSize,
|
|
}, "获取成功", c)
|
|
}
|