infoBoardController.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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. err := service.InfoBoardService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
  66. ctx.JSON(http.StatusOK, err)
  67. }
  68. func (c *infoBoardCtl) Remove(ctx *gin.Context) {
  69. value, _ := ctx.Get(middleware.Authorization)
  70. claims := value.(*middleware.Claims)
  71. var req *model.ReqInfoBoardRemove
  72. if err := ctx.ShouldBindJSON(&req); err != nil {
  73. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  74. return
  75. }
  76. err := service.InfoBoardService.Remove(claims.UserId, claims.TenantId, req.IDs)
  77. if err != nil {
  78. ctx.JSON(http.StatusOK, err)
  79. return
  80. }
  81. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  82. }
  83. func (c *infoBoardCtl) ImportExcel(ctx *gin.Context) {
  84. }
  85. func (c *infoBoardCtl) ExportExcel(ctx *gin.Context) {
  86. }
  87. func (c *infoBoardCtl) ExportTemplate(ctx *gin.Context) {
  88. }
  89. func (c *infoBoardCtl) SystemOperation(ctx *gin.Context) {
  90. }
  91. func (c *infoBoardCtl) Enable(ctx *gin.Context) {
  92. //TODO:未做
  93. }
  94. func (c *infoBoardCtl) ShowSetting(ctx *gin.Context) {
  95. id, e := strconv.Atoi(ctx.Query("id"))
  96. if e != nil {
  97. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  98. return
  99. }
  100. device, err := service.InfoBoardService.Get(id)
  101. if err != nil {
  102. ctx.JSON(http.StatusOK, err)
  103. return
  104. }
  105. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, device))
  106. }
  107. type edgeCmdReq struct {
  108. InfoSn string `json:"infoSn"`
  109. Id int `json:"id"`
  110. Directive int `json:"directive"`
  111. Condition string `json:"condition"`
  112. }
  113. // EdgeCmd 向边缘端发送cmd命令
  114. func (c *infoBoardCtl) EdgeCmd(ctx *gin.Context) {
  115. var req *edgeCmdReq
  116. if err := ctx.ShouldBindJSON(&req); err != nil {
  117. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  118. return
  119. }
  120. value, _ := ctx.Get(middleware.Authorization)
  121. claims := value.(*middleware.Claims)
  122. if req.Directive == 101 {
  123. var req2 dao.InfoBoard
  124. req2.ID = req.Id
  125. req2.Condition = req.Condition
  126. service.InfoBoardService.CreateOrUpdate(claims.UserId, claims.TenantId, req2)
  127. }
  128. //更新排程
  129. if req.Directive == 4 {
  130. c.CronSyncLedPaying(req.Id)
  131. }
  132. service.InfoBoardService.EdgeCmd(claims.TenantId, req.InfoSn, req.Directive, req.Id)
  133. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  134. }
  135. // CronSyncBrightnessAndMusicvolume 同步亮度与音量
  136. func (s *infoBoardCtl) CronSyncBrightnessAndMusicvolume() {
  137. board := dao.InfoBoard{}
  138. list, err := board.GetAllDevicesNotTenant()
  139. if err != nil {
  140. fmt.Printf("err = %v \n", err)
  141. return
  142. }
  143. //fmt.Printf("list = %v \n", list)
  144. for _, led := range list {
  145. _, retState := cache.GetDeviceState(led.Sn)
  146. //fmt.Printf("retState = %v \n", retState)
  147. if retState == "1" {
  148. service.InfoBoardService.EdgeCmd(led.TenantId, led.Sn, 101, led.ID)
  149. }
  150. }
  151. }
  152. // CronSyncLedPaying 同步播放当前节目
  153. func (s *infoBoardCtl) CronSyncLedPaying(id int) {
  154. board := dao.InfoBoard{}
  155. if id > 0 {
  156. board.ID = id
  157. }
  158. list, err := board.GetAllDevicesNotTenant()
  159. if err != nil {
  160. fmt.Printf("CronSyncLedPaying err = %v \n", err)
  161. return
  162. }
  163. for _, led := range list {
  164. _, retState := cache.GetDeviceState(led.Sn)
  165. currPaying := cache.GetDeviceLedData(led.Sn)
  166. if retState == "1" {
  167. playing := currPaying["playing"].(string) //得到当前正播放的节目
  168. fmt.Printf("led信息屏设备Sn = %v 当前正在播放[%v]", led.Sn, playing)
  169. playJson := service2.PublishLibrariesService.LedPaying(led.ID, playing)
  170. if playJson != "" {
  171. service.InfoBoardService.EdgePushLedProgram(led.TenantId, led.Sn, playJson)
  172. fmt.Printf("需要更新\n")
  173. } else {
  174. fmt.Printf("无需更新\n")
  175. }
  176. } else {
  177. //fmt.Printf("led设备不在线Sn = %v \n", led.Sn)
  178. }
  179. }
  180. }