lightController.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/device/dao"
  5. "iot_manager_service/app/device/model"
  6. "iot_manager_service/app/device/service"
  7. "iot_manager_service/app/middleware"
  8. "iot_manager_service/util/common"
  9. "math"
  10. "net/http"
  11. "strconv"
  12. )
  13. // 灯控基本信息管理对象
  14. var Light = new(lightCtl)
  15. type lightCtl struct{}
  16. func (c *lightCtl) Detail(ctx *gin.Context) {
  17. id, e := strconv.Atoi(ctx.Query("id"))
  18. if e != nil {
  19. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  20. return
  21. }
  22. device, err := service.LightControlService.Get(id)
  23. if err != nil {
  24. ctx.JSON(http.StatusOK, err)
  25. return
  26. }
  27. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, device))
  28. }
  29. func (c *lightCtl) List(ctx *gin.Context) {
  30. searchValue := ctx.Query("searchValue")
  31. controlType := ctx.Query("controlType")
  32. zigbeeId := ctx.Query("zigbeeId")
  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, err := service.LightControlService.List(searchValue, controlType, zigbeeId, current, size)
  42. if err != nil {
  43. ctx.JSON(http.StatusOK, err)
  44. return
  45. }
  46. pages := math.Ceil(float64(len(devices)) / float64(size))
  47. rsp := model.RspLightControlList{
  48. Current: current,
  49. Size: size,
  50. Total: len(devices),
  51. Pages: int(pages),
  52. Records: devices,
  53. }
  54. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  55. }
  56. func (c *lightCtl) CreateOrUpdate(ctx *gin.Context) {
  57. value, _ := ctx.Get(middleware.Authorization)
  58. claims := value.(*middleware.Claims)
  59. var req *dao.LightControl
  60. if err := ctx.ShouldBindJSON(&req); err != nil {
  61. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  62. return
  63. }
  64. err := service.LightControlService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
  65. ctx.JSON(http.StatusOK, err)
  66. }
  67. func (c *lightCtl) Remove(ctx *gin.Context) {
  68. value, _ := ctx.Get(middleware.Authorization)
  69. claims := value.(*middleware.Claims)
  70. var req *model.ReqLightControlRemove
  71. if err := ctx.ShouldBindJSON(&req); err != nil {
  72. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  73. return
  74. }
  75. err := service.LightControlService.Remove(claims.UserId, claims.TenantId, req.IDs)
  76. if err != nil {
  77. ctx.JSON(http.StatusOK, err)
  78. return
  79. }
  80. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  81. }
  82. func (c *lightCtl) ImportExcel(ctx *gin.Context) {
  83. }
  84. func (c *lightCtl) ExportExcel(ctx *gin.Context) {
  85. }
  86. func (c *lightCtl) ExportTemplate(ctx *gin.Context) {
  87. }
  88. func (c *lightCtl) GetList(ctx *gin.Context) {
  89. value, _ := ctx.Get(middleware.Authorization)
  90. claims := value.(*middleware.Claims)
  91. devices, err := service.LightControlService.GetList(claims.TenantId)
  92. if err != nil {
  93. ctx.JSON(http.StatusOK, err)
  94. return
  95. }
  96. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, devices))
  97. }
  98. func (c *lightCtl) Enable(ctx *gin.Context) {
  99. var req *model.ReqLightControlEnable
  100. if err := ctx.ShouldBindJSON(&req); err != nil {
  101. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  102. return
  103. }
  104. if req.Status != model.Enable_Enable && req.Status != model.Enable_Disable {
  105. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(model.EnableInvalid, nil))
  106. return
  107. }
  108. err := service.LightControlService.Enable(req.ID, req.Status)
  109. if err != nil {
  110. ctx.JSON(http.StatusOK, err)
  111. return
  112. }
  113. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  114. }
  115. func (c *lightCtl) Switch(ctx *gin.Context) {
  116. }
  117. func lightControlDaoToModel(device dao.LightControl) model.LightControlDetail {
  118. return model.LightControlDetail{LightControl: device}
  119. }
  120. func (c *lightCtl) ChangeHandSwitch(ctx *gin.Context) {
  121. }