123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package v1
- import (
- "fmt"
- "gin-vue-admin/global/response"
- "gin-vue-admin/model"
- "gin-vue-admin/model/request"
- resp "gin-vue-admin/model/response"
- "gin-vue-admin/service"
- "gin-vue-admin/utils"
- "github.com/gin-gonic/gin"
- "strings"
- )
- // @Tags ExaFileUploadAndDownload
- // @Summary 上传文件示例
- // @Security ApiKeyAuth
- // @accept multipart/form-data
- // @Produce application/json
- // @Param file formData file true "上传文件示例"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"上传成功"}"
- // @Router /fileUploadAndDownload/upload [post]
- func UploadFile(c *gin.Context) {
- noSave := c.DefaultQuery("noSave", "0")
- _, header, err := c.Request.FormFile("file")
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("上传文件失败,%v", err), c)
- } else {
- //文件上传后拿到文件路径
- err, filePath, key := utils.Upload(header, USER_HEADER_BUCKET, USER_HEADER_IMG_PATH)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("接收返回值失败,%v", err), c)
- } else {
- //修改数据库后得到修改后的user并且返回供前端使用
- var file model.ExaFileUploadAndDownload
- file.Url = filePath
- file.Name = header.Filename
- s := strings.Split(file.Name, ".")
- file.Tag = s[len(s)-1]
- file.Key = key
- if noSave == "0" {
- err = service.Upload(file)
- }
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("修改数据库链接失败,%v", err), c)
- } else {
- response.OkDetailed(resp.ExaFileResponse{File: file}, "上传成功", c)
- }
- }
- }
- }
- // @Tags ExaFileUploadAndDownload
- // @Summary 删除文件
- // @Security ApiKeyAuth
- // @Produce application/json
- // @Param data body model.ExaFileUploadAndDownload true "传入文件里面id即可"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"返回成功"}"
- // @Router /fileUploadAndDownload/deleteFile [post]
- func DeleteFile(c *gin.Context) {
- var file model.ExaFileUploadAndDownload
- _ = c.ShouldBindJSON(&file)
- err, f := service.FindFile(file.ID)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("删除失败,%v", err), c)
- } else {
- err = utils.DeleteFile(USER_HEADER_BUCKET, f.Key)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("删除失败,%v", err), c)
- } else {
- err = service.DeleteFile(f)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("删除失败,%v", err), c)
- } else {
- response.OkWithMessage("删除成功", c)
- }
- }
- }
- }
- // @Tags ExaFileUploadAndDownload
- // @Summary 分页文件列表
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.PageInfo true "分页获取文件户列表"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /fileUploadAndDownload/getFileList [post]
- func GetFileList(c *gin.Context) {
- var pageInfo request.PageInfo
- _ = c.ShouldBindJSON(&pageInfo)
- err, list, total := service.GetFileRecordInfoList(pageInfo)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("获取数据失败,%v", err), c)
- } else {
- response.OkWithData(resp.PageResult{
- List: list,
- Total: total,
- Page: pageInfo.Page,
- PageSize: pageInfo.PageSize,
- }, c)
- }
- }
|