LightStrategy.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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/util"
  7. "math"
  8. "net/http"
  9. "strconv"
  10. )
  11. // LightStrategy 照明策略
  12. var LightStrategy = new(lightStrategyCtl)
  13. type lightStrategyCtl struct{}
  14. func (c *lightStrategyCtl) Detail(ctx *gin.Context) {
  15. id, e := strconv.Atoi(ctx.Query("id"))
  16. if e != nil {
  17. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(e.Error(), nil))
  18. return
  19. }
  20. device, err := service.LightStrategyService.Get(id)
  21. if err != nil {
  22. ctx.JSON(http.StatusOK, err)
  23. return
  24. }
  25. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, device))
  26. }
  27. func (c *lightStrategyCtl) List(ctx *gin.Context) {
  28. searchValue := ctx.Query("searchValue")
  29. current, _ := strconv.Atoi(ctx.Query("current"))
  30. size, _ := strconv.Atoi(ctx.Query("size"))
  31. if current == 0 {
  32. current = 1
  33. }
  34. if size <= 0 || size > 100 {
  35. size = 10
  36. }
  37. devices, err := service.LightStrategyService.List(searchValue, current, size)
  38. if err != nil {
  39. ctx.JSON(http.StatusOK, err)
  40. return
  41. }
  42. pages := math.Ceil(float64(len(devices)) / float64(size))
  43. rsp := model.RspLightStrategyList{
  44. Current: current,
  45. Size: size,
  46. Total: len(devices),
  47. Pages: int(pages),
  48. Records: devices,
  49. }
  50. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp))
  51. }
  52. func (c *lightStrategyCtl) CreateOrUpdate(ctx *gin.Context) {
  53. // 参数验证
  54. var req *model.LightStrategyDetail
  55. if err := ctx.ShouldBind(&req); err != nil {
  56. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
  57. return
  58. }
  59. err := service.LightStrategyService.CreateOrUpdate(req)
  60. if err != nil {
  61. ctx.JSON(http.StatusOK, err)
  62. return
  63. }
  64. ctx.JSON(http.StatusOK, nil)
  65. }
  66. func (c *lightStrategyCtl) Remove(ctx *gin.Context) {
  67. var req *model.ReqLightStrategyRemove
  68. if err := ctx.ShouldBindJSON(&req); err != nil {
  69. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
  70. return
  71. }
  72. err := service.LightStrategyService.Remove(req.IDs)
  73. if err != nil {
  74. ctx.JSON(http.StatusOK, err)
  75. return
  76. }
  77. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, nil))
  78. }