ipBroadcastController.go 4.7 KB

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