libraryController.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. if current == 0 {
  34. current = 1
  35. }
  36. if size <= 0 || size > 100 {
  37. size = 10
  38. }
  39. sysType := -1
  40. if s != "" {
  41. sysType, _ = strconv.Atoi(s)
  42. }
  43. value, _ := ctx.Get(middleware.Authorization)
  44. claims := value.(*middleware.Claims)
  45. libraries, err := service.LibraryService.List(claims.TenantId, searchValue, current, size, sysType)
  46. if err != nil {
  47. ctx.JSON(http.StatusOK, err)
  48. return
  49. }
  50. pages := math.Ceil(float64(len(libraries)) / float64(size))
  51. rsp := model.RsqLibraryList{
  52. Current: current,
  53. Size: size,
  54. Total: len(libraries),
  55. Pages: int(pages),
  56. Records: libraries,
  57. }
  58. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  59. }
  60. func (c *libraryCtl) Remove(ctx *gin.Context) {
  61. ids := ctx.Query("ids")
  62. id, e := strconv.Atoi(ids)
  63. if e != nil {
  64. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  65. return
  66. }
  67. value, _ := ctx.Get(middleware.Authorization)
  68. claims := value.(*middleware.Claims)
  69. err := service.LibraryService.Remove(claims.UserId, claims.TenantId, id)
  70. if err != nil {
  71. ctx.JSON(http.StatusOK, err)
  72. return
  73. }
  74. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  75. }
  76. func (c *libraryCtl) GetList(ctx *gin.Context) {
  77. libName := ctx.Query("libName")
  78. t := ctx.Query("libType")
  79. s := ctx.Query("sysType")
  80. value, _ := ctx.Get(middleware.Authorization)
  81. claims := value.(*middleware.Claims)
  82. libType := -1
  83. if t != "" {
  84. libType, _ = strconv.Atoi(t)
  85. }
  86. sysType := -1
  87. if s != "" {
  88. sysType, _ = strconv.Atoi(s)
  89. }
  90. library, err := service.LibraryService.GetList(claims.TenantId, libName, libType, sysType)
  91. if err != nil {
  92. ctx.JSON(http.StatusOK, err)
  93. return
  94. }
  95. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, library))
  96. }
  97. func (c *libraryCtl) UploadFile(ctx *gin.Context) {
  98. file, err := ctx.FormFile("file")
  99. if err != nil {
  100. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  101. return
  102. }
  103. value, _ := ctx.Get(middleware.Authorization)
  104. claims := value.(*middleware.Claims)
  105. rsp, e := service.LibraryService.UploadFile(claims.TenantId, file)
  106. if e != nil {
  107. ctx.JSON(http.StatusOK, e)
  108. return
  109. }
  110. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  111. }
  112. func (c *libraryCtl) Submit(ctx *gin.Context) {
  113. var req dao.Library
  114. if err := ctx.ShouldBindJSON(&req); err != nil {
  115. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  116. return
  117. }
  118. value, _ := ctx.Get(middleware.Authorization)
  119. claims := value.(*middleware.Claims)
  120. e := service.LibraryService.Submit(claims.TenantId, claims.UserId, req)
  121. if e != nil {
  122. ctx.JSON(http.StatusOK, e)
  123. return
  124. }
  125. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  126. }