libraryController.go 3.3 KB

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