LightStrategy.go 2.4 KB

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