libraryController.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/middleware"
  5. "iot_manager_service/app/multimedia/dao"
  6. "iot_manager_service/app/multimedia/model"
  7. "iot_manager_service/app/multimedia/service"
  8. "iot_manager_service/util/common"
  9. "math"
  10. "net/http"
  11. "strconv"
  12. )
  13. var Library = new(libraryCtl)
  14. type libraryCtl struct{}
  15. func (c *libraryCtl) Detail(ctx *gin.Context) {
  16. id, e := strconv.Atoi(ctx.Query("id"))
  17. if e != nil {
  18. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  19. return
  20. }
  21. library, err := service.LibraryService.Get(id)
  22. if err != nil {
  23. ctx.JSON(http.StatusOK, err)
  24. return
  25. }
  26. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, library))
  27. }
  28. func (c *libraryCtl) List(ctx *gin.Context) {
  29. searchValue := ctx.Query("searchValue")
  30. current, _ := strconv.Atoi(ctx.Query("current"))
  31. size, _ := strconv.Atoi(ctx.Query("size"))
  32. s := ctx.Query("sysType")
  33. libTypeStr := ctx.Query("libType")
  34. if current == 0 {
  35. current = 1
  36. }
  37. if size <= 0 || size > 100 {
  38. size = 10
  39. }
  40. sysType := -1
  41. if s != "" {
  42. sysType, _ = strconv.Atoi(s)
  43. }
  44. libType := -1
  45. if s != "" {
  46. libType, _ = strconv.Atoi(libTypeStr)
  47. }
  48. value, _ := ctx.Get(middleware.Authorization)
  49. claims := value.(*middleware.Claims)
  50. libraries, total, err := service.LibraryService.List(claims.TenantId, searchValue, current, size, sysType, libType)
  51. if err != nil {
  52. ctx.JSON(http.StatusOK, err)
  53. return
  54. }
  55. pages := math.Ceil(float64(total) / float64(size))
  56. rsp := model.RsqLibraryList{
  57. Current: current,
  58. Size: size,
  59. Total: int(total),
  60. Pages: int(pages),
  61. Records: libraries,
  62. }
  63. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  64. }
  65. func (c *libraryCtl) Remove(ctx *gin.Context) {
  66. ids := ctx.Query("ids")
  67. id, e := strconv.Atoi(ids)
  68. if e != nil {
  69. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  70. return
  71. }
  72. value, _ := ctx.Get(middleware.Authorization)
  73. claims := value.(*middleware.Claims)
  74. err := service.LibraryService.Remove(claims.UserId, claims.TenantId, id)
  75. if err != nil {
  76. ctx.JSON(http.StatusOK, err)
  77. return
  78. }
  79. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  80. }
  81. func (c *libraryCtl) GetList(ctx *gin.Context) {
  82. libName := ctx.Query("libName")
  83. t := ctx.Query("libType")
  84. s := ctx.Query("sysType")
  85. value, _ := ctx.Get(middleware.Authorization)
  86. claims := value.(*middleware.Claims)
  87. libType := -1
  88. if t != "" {
  89. libType, _ = strconv.Atoi(t)
  90. }
  91. sysType := -1
  92. if s != "" {
  93. sysType, _ = strconv.Atoi(s)
  94. }
  95. library, err := service.LibraryService.GetList(claims.TenantId, libName, libType, sysType)
  96. if err != nil {
  97. ctx.JSON(http.StatusOK, err)
  98. return
  99. }
  100. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, library))
  101. }
  102. func (c *libraryCtl) UploadFile(ctx *gin.Context) {
  103. file, err := ctx.FormFile("file")
  104. if err != nil {
  105. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  106. return
  107. }
  108. value, _ := ctx.Get(middleware.Authorization)
  109. claims := value.(*middleware.Claims)
  110. rsp, e := service.LibraryService.UploadFile(claims.TenantId, file)
  111. if e != nil {
  112. ctx.JSON(http.StatusOK, e)
  113. return
  114. }
  115. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  116. }
  117. func (c *libraryCtl) Submit(ctx *gin.Context) {
  118. var req dao.Library
  119. if err := ctx.ShouldBindJSON(&req); err != nil {
  120. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  121. return
  122. }
  123. value, _ := ctx.Get(middleware.Authorization)
  124. claims := value.(*middleware.Claims)
  125. e := service.LibraryService.Submit(claims.TenantId, claims.UserId, req)
  126. if e != nil {
  127. ctx.JSON(http.StatusOK, e)
  128. return
  129. }
  130. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  131. }