libraryController.go 4.1 KB

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