file.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/file/dao"
  5. "iot_manager_service/app/file/model"
  6. "iot_manager_service/app/file/service"
  7. "iot_manager_service/util/cache"
  8. "iot_manager_service/util/common"
  9. "iot_manager_service/util/token"
  10. "net/http"
  11. "os"
  12. "path"
  13. "path/filepath"
  14. "strconv"
  15. "strings"
  16. "time"
  17. )
  18. var FileController = new(file)
  19. type file struct{}
  20. func (f *file) Upload(c *gin.Context) {
  21. header := c.GetHeader("Authorization")
  22. claims, _ := token.JwtClaims.ParseJwtToken(header)
  23. nowSysUser, _ := cache.GetNowSysUser(claims.ID)
  24. // 获取表单字段的值
  25. categoryName := c.PostForm("categoryName")
  26. iv := c.PostForm("iv")
  27. str := c.PostForm("authId")
  28. authId := strings.Replace(str, ",", "", -1)
  29. formFile, err := c.FormFile("file")
  30. if err != nil {
  31. c.JSON(http.StatusOK, common.ParamsInvalidResponse("获取文件数据失败", nil))
  32. return
  33. }
  34. //获取后缀
  35. sufx := path.Ext(formFile.Filename)
  36. //利用时间戳生成文件名
  37. fileNameInt := time.Now().Unix()
  38. fileNameStr := strconv.FormatInt(fileNameInt, 10)
  39. //新的文件名
  40. newfileName := fileNameStr + sufx
  41. currentDir, _ := os.Getwd()
  42. parentDir := filepath.Dir(currentDir)
  43. folderPath := filepath.Join(parentDir, "uploadfiles")
  44. _, err = os.Stat(folderPath)
  45. if os.IsNotExist(err) {
  46. os.Mkdir(folderPath, os.ModePerm)
  47. }
  48. //保存文件
  49. filePath := filepath.Join(folderPath, "/", newfileName)
  50. c.SaveUploadedFile(formFile, filePath)
  51. savePath := "/uploadfiles/" + newfileName
  52. currentTimeValue := time.Now()
  53. upload := service.FileService.Upload(dao.File{
  54. OriginalName: strings.TrimSuffix(formFile.Filename, filepath.Ext(formFile.Filename)),
  55. EncryptedName: formFile.Filename,
  56. SavePath: savePath,
  57. CategoryName: categoryName,
  58. AuthId: authId,
  59. SuffixName: path.Ext(formFile.Filename),
  60. UploadTime: &currentTimeValue,
  61. Uploader: int(nowSysUser.ID),
  62. Icon: strings.TrimPrefix(path.Ext(formFile.Filename), ".") + ".png",
  63. Iv: iv,
  64. })
  65. c.JSON(http.StatusOK, upload)
  66. }
  67. func (f *file) Distribute(c *gin.Context) {
  68. //获取当前用户
  69. header := c.GetHeader("Authorization")
  70. claims, _ := token.JwtClaims.ParseJwtToken(header)
  71. nowSysUser, _ := cache.GetNowSysUser(claims.ID)
  72. var reqUserFile model.ReqSysUserFile
  73. err := c.ShouldBindJSON(&reqUserFile)
  74. if err != nil {
  75. c.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  76. return
  77. }
  78. distribute := service.FileService.Distribute(&reqUserFile, int(nowSysUser.ID))
  79. c.JSON(http.StatusOK, distribute)
  80. }
  81. func (f *file) GetSysUserFiles(c *gin.Context) {
  82. header := c.GetHeader("Authorization")
  83. claims, _ := token.JwtClaims.ParseJwtToken(header)
  84. var search model.SearchSysUserFiles
  85. err := c.ShouldBindJSON(&search)
  86. if err != nil {
  87. c.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  88. return
  89. }
  90. files := service.FileService.GetSysUserFiles(claims.ID, search)
  91. c.JSON(http.StatusOK, files)
  92. }
  93. // 转发文件
  94. func (f *file) ForwardingFile(c *gin.Context) {
  95. fileid := c.Query("fileId")
  96. header := c.GetHeader("Authorization")
  97. claims, _ := token.JwtClaims.ParseJwtToken(header)
  98. requsers := model.ReqSysUsers{}
  99. if err := c.ShouldBindJSON(&requsers); err != nil {
  100. c.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  101. return
  102. }
  103. uid, _ := strconv.Atoi(claims.ID)
  104. fid, _ := strconv.Atoi(fileid)
  105. forwardingFile := service.FileService.ForwardingFile(uid, fid, requsers.SysUsersId)
  106. c.JSON(http.StatusOK, forwardingFile)
  107. }
  108. func (f *file) GetMyUploadFiles(c *gin.Context) {
  109. header := c.GetHeader("Authorization")
  110. claims, _ := token.JwtClaims.ParseJwtToken(header)
  111. files := service.FileService.GetMyUploadFiles(claims.ID)
  112. c.JSON(http.StatusOK, files)
  113. }
  114. // 查看文件
  115. func (f *file) ViewFile(c *gin.Context) {
  116. fileId := c.Query("fileId")
  117. service.FileService.GetFile(fileId, c)
  118. }
  119. // 下载文件
  120. func (f *file) DownloadFile(c *gin.Context) {
  121. fileid := c.Query("fileId")
  122. service.FileService.GetFile(fileid, c)
  123. }