IntelligentLightingStrategy.go 2.2 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/app/middleware"
  7. "iot_manager_service/util"
  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. if e != nil {
  19. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(e.Error(), nil))
  20. return
  21. }
  22. if publicId == 0 {
  23. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(model.RelationIdInvalid, nil))
  24. return
  25. }
  26. detail, err := service.IntelligentLightingService.GetDetailByLight(claims.TenantId, publicId)
  27. if err != nil {
  28. ctx.JSON(http.StatusOK, err)
  29. return
  30. }
  31. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, detail))
  32. }
  33. func (c *intelligentLightingCtl) List(ctx *gin.Context) {
  34. value, _ := ctx.Get(middleware.Authorization)
  35. claims := value.(*middleware.Claims)
  36. searchValue := ctx.Query("searchValue")
  37. groupId := ctx.Query("groupId")
  38. current, _ := strconv.Atoi(ctx.Query("current"))
  39. size, _ := strconv.Atoi(ctx.Query("size"))
  40. gId, err := strconv.Atoi(groupId)
  41. if err != nil {
  42. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse("groupId invalid", nil))
  43. return
  44. }
  45. if current == 0 {
  46. current = 1
  47. }
  48. if size <= 0 || size > 100 {
  49. size = 10
  50. }
  51. strategies, err := service.IntelligentLightingService.List(claims.TenantId, searchValue, current, size, gId)
  52. if err != nil {
  53. ctx.JSON(http.StatusOK, err)
  54. return
  55. }
  56. pages := math.Ceil(float64(len(strategies)) / float64(size))
  57. rsp := model.RspIntelligentLightList{
  58. Current: current,
  59. Size: size,
  60. Total: len(strategies),
  61. Pages: int(pages),
  62. Records: strategies,
  63. }
  64. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp))
  65. }
  66. func (c *intelligentLightingCtl) RelationList(ctx *gin.Context) {
  67. }
  68. func (c *intelligentLightingCtl) Relation(ctx *gin.Context) {
  69. }
  70. func (c *intelligentLightingCtl) Remove(ctx *gin.Context) {
  71. }
  72. func (c *intelligentLightingCtl) ChangeHandSwitch(ctx *gin.Context) {
  73. }
  74. func (c *intelligentLightingCtl) GetStatus(ctx *gin.Context) {
  75. }