infoBoardController.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/device/dao"
  5. "iot_manager_service/app/device/model"
  6. "iot_manager_service/app/device/service"
  7. "iot_manager_service/app/middleware"
  8. service2 "iot_manager_service/app/multimedia/service"
  9. "iot_manager_service/util/cache"
  10. "iot_manager_service/util/common"
  11. "math"
  12. "net/http"
  13. "strconv"
  14. )
  15. // 信息屏基本信息管理对象
  16. var InfoBoard = new(infoBoardCtl)
  17. type infoBoardCtl struct{}
  18. func (c *infoBoardCtl) Detail(ctx *gin.Context) {
  19. id, e := strconv.Atoi(ctx.Query("id"))
  20. if e != nil {
  21. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  22. return
  23. }
  24. device, err := service.InfoBoardService.Get(id)
  25. if err != nil {
  26. ctx.JSON(http.StatusOK, err)
  27. return
  28. }
  29. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, device))
  30. }
  31. func (c *infoBoardCtl) List(ctx *gin.Context) {
  32. searchValue := ctx.Query("searchValue")
  33. current, _ := strconv.Atoi(ctx.Query("current"))
  34. size, _ := strconv.Atoi(ctx.Query("size"))
  35. if current == 0 {
  36. current = 1
  37. }
  38. if size <= 0 || size > 100 {
  39. size = 10
  40. }
  41. devices, total, err := service.InfoBoardService.List(searchValue, current, size)
  42. if err != nil {
  43. ctx.JSON(http.StatusOK, err)
  44. return
  45. }
  46. pages := math.Ceil(float64(total) / float64(size))
  47. rsp := model.RsqInfoBoardList{
  48. Current: current,
  49. Size: size,
  50. Total: int(total),
  51. Pages: int(pages),
  52. Records: devices,
  53. }
  54. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  55. }
  56. func (c *infoBoardCtl) CreateOrUpdate(ctx *gin.Context) {
  57. value, _ := ctx.Get(middleware.Authorization)
  58. claims := value.(*middleware.Claims)
  59. var req dao.InfoBoard
  60. if err := ctx.ShouldBindJSON(&req); err != nil {
  61. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  62. return
  63. }
  64. if req.ID > 0 {
  65. //更新 排程
  66. service.InfoBoardService.EdgeCmd(claims.TenantId, req.Sn, 6, req.ID)
  67. }
  68. err := service.InfoBoardService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
  69. ctx.JSON(http.StatusOK, err)
  70. }
  71. func (c *infoBoardCtl) Remove(ctx *gin.Context) {
  72. value, _ := ctx.Get(middleware.Authorization)
  73. claims := value.(*middleware.Claims)
  74. var req *model.ReqInfoBoardRemove
  75. if err := ctx.ShouldBindJSON(&req); err != nil {
  76. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  77. return
  78. }
  79. err := service.InfoBoardService.Remove(claims.UserId, claims.TenantId, req.IDs)
  80. if err != nil {
  81. ctx.JSON(http.StatusOK, err)
  82. return
  83. }
  84. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  85. }
  86. func (c *infoBoardCtl) ImportExcel(ctx *gin.Context) {
  87. }
  88. func (c *infoBoardCtl) ExportExcel(ctx *gin.Context) {
  89. }
  90. func (c *infoBoardCtl) ExportTemplate(ctx *gin.Context) {
  91. }
  92. func (c *infoBoardCtl) SystemOperation(ctx *gin.Context) {
  93. }
  94. func (c *infoBoardCtl) Enable(ctx *gin.Context) {
  95. //TODO:未做
  96. }
  97. func (c *infoBoardCtl) ShowSetting(ctx *gin.Context) {
  98. id, e := strconv.Atoi(ctx.Query("id"))
  99. if e != nil {
  100. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  101. return
  102. }
  103. device, err := service.InfoBoardService.Get(id)
  104. if err != nil {
  105. ctx.JSON(http.StatusOK, err)
  106. return
  107. }
  108. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, device))
  109. }
  110. type edgeCmdReq struct {
  111. InfoSn string `json:"infoSn"`
  112. Id int `json:"id"`
  113. Directive int `json:"directive"`
  114. Condition string `json:"condition"`
  115. }
  116. // EdgeCmd 向边缘端发送cmd命令
  117. func (c *infoBoardCtl) EdgeCmd(ctx *gin.Context) {
  118. var req *edgeCmdReq
  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. if req.Directive == 101 {
  126. var req2 dao.InfoBoard
  127. req2.ID = req.Id
  128. req2.Condition = req.Condition
  129. service.InfoBoardService.CreateOrUpdate(claims.UserId, claims.TenantId, req2)
  130. }
  131. //更新排程
  132. if req.Directive == 4 {
  133. c.CronSyncLedPaying(req.Id)
  134. }
  135. service.InfoBoardService.EdgeCmd(claims.TenantId, req.InfoSn, req.Directive, req.Id)
  136. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  137. }
  138. // CronSyncBrightnessAndMusicvolume 同步亮度与音量
  139. func (s *infoBoardCtl) CronSyncBrightnessAndMusicvolume() {
  140. board := dao.InfoBoard{}
  141. list, err := board.GetAllDevicesNotTenant()
  142. if err != nil {
  143. return
  144. }
  145. for _, led := range list {
  146. _, retState := cache.GetDeviceState(led.Sn)
  147. // 只有设备在线 才能向边缘端下发命令
  148. if retState == "1" {
  149. service.InfoBoardService.EdgeCmd(led.TenantId, led.Sn, 101, led.ID)
  150. }
  151. }
  152. }
  153. // CronSyncLedPaying 同步播放当前节目
  154. func (s *infoBoardCtl) CronSyncLedPaying(id int) {
  155. board := dao.InfoBoard{}
  156. if id > 0 {
  157. board.ID = id
  158. }
  159. list, err := board.GetAllDevicesNotTenant()
  160. if err != nil {
  161. return
  162. }
  163. for _, led := range list {
  164. _, retState := cache.GetDeviceState(led.Sn)
  165. currPaying := cache.GetDeviceLedData(led.Sn)
  166. if retState == "1" && len(currPaying) != 0 {
  167. playing := currPaying["playing"].(string) //得到当前正播放的节目
  168. playJson := service2.PublishLibrariesService.LedPaying(led.ID, playing)
  169. if playJson != "" {
  170. service.InfoBoardService.EdgePushLedProgram(led.TenantId, led.Sn, playJson)
  171. //需要更新
  172. } else {
  173. //无需更新
  174. }
  175. } else {
  176. //led设备不在线Sn = %v \n", led.Sn
  177. }
  178. }
  179. }