libraryController.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. ids := ctx.Query("ids")
  56. id, e := strconv.Atoi(ids)
  57. if e != nil {
  58. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  59. return
  60. }
  61. value, _ := ctx.Get(middleware.Authorization)
  62. claims := value.(*middleware.Claims)
  63. err := service.LibraryService.Remove(claims.UserId, claims.TenantId, id)
  64. if err != nil {
  65. ctx.JSON(http.StatusOK, err)
  66. return
  67. }
  68. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  69. }
  70. func (c *libraryCtl) GetList(ctx *gin.Context) {
  71. libName := ctx.Query("libName")
  72. t := ctx.Query("libType")
  73. value, _ := ctx.Get(middleware.Authorization)
  74. claims := value.(*middleware.Claims)
  75. libType := -1
  76. if t != "" {
  77. libType, _ = strconv.Atoi(t)
  78. }
  79. library, err := service.LibraryService.GetList(claims.TenantId, libName, libType)
  80. if err != nil {
  81. ctx.JSON(http.StatusOK, err)
  82. return
  83. }
  84. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, library))
  85. }
  86. func (c *libraryCtl) UploadFile(ctx *gin.Context) {
  87. file, err := ctx.FormFile("file")
  88. if err != nil {
  89. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  90. return
  91. }
  92. value, _ := ctx.Get(middleware.Authorization)
  93. claims := value.(*middleware.Claims)
  94. rsp, e := service.LibraryService.UploadFile(claims.TenantId, file)
  95. if e != nil {
  96. ctx.JSON(http.StatusOK, e)
  97. return
  98. }
  99. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  100. }
  101. func (c *libraryCtl) Submit(ctx *gin.Context) {
  102. var req *model.ReqLibrarySubmit
  103. if err := ctx.ShouldBindJSON(&req); err != nil {
  104. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  105. return
  106. }
  107. value, _ := ctx.Get(middleware.Authorization)
  108. claims := value.(*middleware.Claims)
  109. e := service.LibraryService.Submit(claims.TenantId, claims.UserId, req)
  110. if e != nil {
  111. ctx.JSON(http.StatusOK, e)
  112. return
  113. }
  114. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  115. }