ipBroadcastController.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/device/dao"
  5. "iot_manager_service/app/device/edge_service"
  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/common"
  11. "math"
  12. "net/http"
  13. "strconv"
  14. )
  15. // IP广播基本信息管理对象
  16. var IpBroadcast = new(ipBroadcastCtl)
  17. type ipBroadcastCtl struct{}
  18. func (c *ipBroadcastCtl) 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.IpBroadcastService.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 *ipBroadcastCtl) 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.IpBroadcastService.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.RsqIpBroadcastList{
  48. Current: current,
  49. Size: size,
  50. Total: int(total),
  51. Pages: int(pages),
  52. }
  53. for _, device := range devices {
  54. rsp.Records = append(rsp.Records, device)
  55. }
  56. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  57. }
  58. func (c *ipBroadcastCtl) CreateOrUpdate(ctx *gin.Context) {
  59. value, _ := ctx.Get(middleware.Authorization)
  60. claims := value.(*middleware.Claims)
  61. var req dao.IpBroadcast
  62. if err := ctx.ShouldBindJSON(&req); err != nil {
  63. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  64. return
  65. }
  66. err := service.IpBroadcastService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
  67. ctx.JSON(http.StatusOK, err)
  68. }
  69. func (c *ipBroadcastCtl) Remove(ctx *gin.Context) {
  70. value, _ := ctx.Get(middleware.Authorization)
  71. claims := value.(*middleware.Claims)
  72. var req *model.ReqIpBroadcastRemove
  73. if err := ctx.ShouldBindJSON(&req); err != nil {
  74. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  75. return
  76. }
  77. err := service.IpBroadcastService.Remove(claims.UserId, claims.TenantId, req.IDs)
  78. if err != nil {
  79. ctx.JSON(http.StatusOK, err)
  80. return
  81. }
  82. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  83. }
  84. func (c *ipBroadcastCtl) ImportExcel(ctx *gin.Context) {
  85. }
  86. func (c *ipBroadcastCtl) ExportExcel(ctx *gin.Context) {
  87. }
  88. func (c *ipBroadcastCtl) ExportTemplate(ctx *gin.Context) {
  89. }
  90. func (c *ipBroadcastCtl) SettingVolume(ctx *gin.Context) {
  91. value, _ := ctx.Get(middleware.Authorization)
  92. claims := value.(*middleware.Claims)
  93. var req dao.IpBroadcast
  94. if err := ctx.ShouldBindJSON(&req); err != nil {
  95. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  96. return
  97. }
  98. if req.SoundVolume <= 1 {
  99. req.SoundVolume = 1
  100. }
  101. err2 := edge_service.IpCastControlService{}.SetVol(req.CastSn, req.SoundVolume)
  102. if err2 != nil {
  103. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err2.Error(), nil))
  104. return
  105. }
  106. err := service.IpBroadcastService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
  107. ctx.JSON(http.StatusOK, err)
  108. }
  109. type settingIpCastReq struct {
  110. ID int `json:"id"`
  111. Directive int `json:"directive"`
  112. }
  113. func (c *ipBroadcastCtl) SettingIpCast(ctx *gin.Context) {
  114. var req settingIpCastReq
  115. if err := ctx.ShouldBindJSON(&req); err != nil {
  116. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  117. return
  118. }
  119. if req.Directive == 1 {
  120. err := edge_service.IpCastControlService{}.SetStop()
  121. if err != nil {
  122. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  123. return
  124. }
  125. }
  126. if req.Directive == 2 {
  127. c.CronSyncIpCastPaying(req.ID)
  128. }
  129. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  130. }
  131. // 同步播放ip音柱节目
  132. func (c *ipBroadcastCtl) CronSyncIpCastPaying(id int) {
  133. board := dao.IpBroadcast{}
  134. if id > 0 {
  135. board.ID = id
  136. }
  137. list, err := board.GetAllDevicesNotTenant()
  138. if err != nil {
  139. return
  140. }
  141. for _, IPCast := range list {
  142. device, _ := service.IpBroadcastService.Get(IPCast.ID)
  143. if device.PlayState == "空闲" {
  144. playJson, ptype := service2.PublishLibrariesService.IPCastPaying(IPCast.ID)
  145. if playJson != "" {
  146. err := edge_service.IpCastControlService{}.PushPlay(playJson, ptype)
  147. if err != nil {
  148. return
  149. }
  150. } else {
  151. }
  152. }
  153. }
  154. }