IntelligentLightingStrategy.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/device/model"
  5. "iot_manager_service/app/device/service"
  6. "iot_manager_service/app/middleware"
  7. "iot_manager_service/util/common"
  8. "math"
  9. "net/http"
  10. "strconv"
  11. )
  12. var IntelligentLighting = new(intelligentLightingCtl)
  13. type intelligentLightingCtl struct{}
  14. func (c *intelligentLightingCtl) Detail(ctx *gin.Context) {
  15. value, _ := ctx.Get(middleware.Authorization)
  16. claims := value.(*middleware.Claims)
  17. publicId, e := strconv.Atoi(ctx.Query("publicId"))
  18. reqType, _ := strconv.Atoi(ctx.Query("type"))
  19. if e != nil {
  20. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  21. return
  22. }
  23. if publicId == 0 {
  24. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(model.RelationIdInvalid, nil))
  25. return
  26. }
  27. detail, err := service.IntelligentLightingService.GetDetailByLight(claims.TenantId, publicId, reqType)
  28. if err != nil {
  29. ctx.JSON(http.StatusOK, err)
  30. return
  31. }
  32. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, detail))
  33. }
  34. func (c *intelligentLightingCtl) List(ctx *gin.Context) {
  35. value, _ := ctx.Get(middleware.Authorization)
  36. claims := value.(*middleware.Claims)
  37. searchValue := ctx.Query("searchValue")
  38. groupId := ctx.Query("groupId")
  39. current, _ := strconv.Atoi(ctx.Query("current"))
  40. size, _ := strconv.Atoi(ctx.Query("size"))
  41. gId, err := strconv.Atoi(groupId)
  42. if err != nil {
  43. //ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, "分组没选 "))
  44. //return
  45. gId = 0
  46. }
  47. if current == 0 {
  48. current = 1
  49. }
  50. if size <= 0 || size > 100 {
  51. size = 10
  52. }
  53. strategies, err := service.IntelligentLightingService.List(claims.TenantId, searchValue, current, size, gId)
  54. if err != nil {
  55. ctx.JSON(http.StatusOK, err)
  56. return
  57. }
  58. pages := math.Ceil(float64(len(strategies)) / float64(size))
  59. rsp := model.RspIntelligentLightList{
  60. Current: current,
  61. Size: size,
  62. Total: len(strategies),
  63. Pages: int(pages),
  64. Records: strategies,
  65. }
  66. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  67. }
  68. // RelationList 策略列表
  69. func (c *intelligentLightingCtl) RelationList(ctx *gin.Context) {
  70. //value, _ := ctx.Get(middleware.Authorization)
  71. //claims := value.(*middleware.Claims)
  72. current, _ := strconv.Atoi(ctx.Query("current"))
  73. size, _ := strconv.Atoi(ctx.Query("size"))
  74. if current == 0 {
  75. current = 1
  76. }
  77. if size <= 0 || size > 100 {
  78. size = 10
  79. }
  80. searchValue := ""
  81. strategies, err := service.LightStrategyService.List(searchValue, current, size)
  82. if err != nil {
  83. ctx.JSON(http.StatusOK, err)
  84. return
  85. }
  86. rsp := strategies
  87. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  88. }
  89. // Relation 关联策略
  90. func (c *intelligentLightingCtl) Relation(ctx *gin.Context) {
  91. value, _ := ctx.Get(middleware.Authorization)
  92. claims := value.(*middleware.Claims)
  93. publicId, _ := strconv.Atoi(ctx.Query("publicId"))
  94. lightId, _ := strconv.Atoi(ctx.Query("lightId"))
  95. relationType, _ := strconv.Atoi(ctx.Query("relationType"))
  96. err := service.IntelligentLightingService.Relation(claims.UserId, claims.TenantId, publicId, lightId, relationType)
  97. if err != nil {
  98. ctx.JSON(http.StatusOK, err)
  99. return
  100. }
  101. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  102. }
  103. // Remove 恢复到分组策略
  104. func (c *intelligentLightingCtl) Recovery(ctx *gin.Context) {
  105. value, _ := ctx.Get(middleware.Authorization)
  106. claims := value.(*middleware.Claims)
  107. groupId, _ := strconv.Atoi(ctx.Query("groupId"))
  108. id, _ := strconv.Atoi(ctx.Query("id"))
  109. err := service.IntelligentLightingService.Recovery(claims.UserId, claims.TenantId, groupId, id)
  110. if err != nil {
  111. ctx.JSON(http.StatusOK, err)
  112. return
  113. }
  114. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  115. }
  116. // ChangeHandSwitch 开灯控制
  117. func (c *intelligentLightingCtl) ChangeHandSwitch(ctx *gin.Context) {
  118. handSwitch, _ := strconv.Atoi(ctx.Query("handSwitch"))
  119. handType, _ := strconv.Atoi(ctx.Query("handType"))
  120. publicId, _ := strconv.Atoi(ctx.Query("publicId"))
  121. handTime, _ := strconv.Atoi(ctx.Query("handTime"))
  122. luminance, _ := strconv.Atoi(ctx.Query("luminance"))
  123. explain := ctx.Query("explain")
  124. publicName := ctx.Query("publicName")
  125. value, _ := ctx.Get(middleware.Authorization)
  126. claims := value.(*middleware.Claims)
  127. err := service.IntelligentLightingService.ChangeHandSwitch(claims.UserId, claims.TenantId, handSwitch, handType, publicId, handTime, luminance, explain, publicName)
  128. if err != nil {
  129. ctx.JSON(http.StatusOK, err)
  130. return
  131. }
  132. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  133. }
  134. func (c *intelligentLightingCtl) GetStatus(ctx *gin.Context) {
  135. }