infoBoardController.go 5.5 KB

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