lightController.go 3.4 KB

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