IntelligentLightingStrategy.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. var IntelligentLighting = new(intelligentLightingCtl)
  12. type intelligentLightingCtl struct{}
  13. func (c *intelligentLightingCtl) Detail(ctx *gin.Context) {
  14. publicId, e := strconv.Atoi(ctx.Query("publicId"))
  15. if e != nil {
  16. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(e.Error(), nil))
  17. return
  18. }
  19. if publicId == 0 {
  20. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(model.RelationIdInvalid, nil))
  21. return
  22. }
  23. //当前类型1=灯杆2=灯杆分组
  24. relationType, e := strconv.Atoi(ctx.Query("type"))
  25. if e != nil {
  26. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(e.Error(), nil))
  27. return
  28. }
  29. if relationType == model.RelationTypeLight {
  30. detail, err := service.IntelligentLightingService.GetDetailByLight(publicId)
  31. if err != nil {
  32. ctx.JSON(http.StatusOK, err)
  33. return
  34. }
  35. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, detail))
  36. } else if relationType == model.RelationTypeLampPoleGroup {
  37. detail, err := service.IntelligentLightingService.GetDetailByGroup(publicId)
  38. if err != nil {
  39. ctx.JSON(http.StatusOK, err)
  40. return
  41. }
  42. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, detail))
  43. } else {
  44. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(model.RelationTypeInvalid, nil))
  45. }
  46. }
  47. func (c *intelligentLightingCtl) List(ctx *gin.Context) {
  48. searchValue := ctx.Query("searchValue")
  49. groupId := ctx.Query("groupId")
  50. current, _ := strconv.Atoi(ctx.Query("current"))
  51. size, _ := strconv.Atoi(ctx.Query("size"))
  52. if current == 0 {
  53. current = 1
  54. }
  55. if size <= 0 || size > 100 {
  56. size = 10
  57. }
  58. if groupId != "" {
  59. }
  60. strategies, err := service.IntelligentLightingService.List(searchValue, current, size)
  61. if err != nil {
  62. ctx.JSON(http.StatusOK, err)
  63. return
  64. }
  65. pages := math.Ceil(float64(len(strategies)) / float64(size))
  66. rsp := model.RspIntelligentLightList{
  67. Current: current,
  68. Size: size,
  69. Total: len(strategies),
  70. Pages: int(pages),
  71. }
  72. for _, strategy := range strategies {
  73. rsp.Records = append(rsp.Records, strategy)
  74. }
  75. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp))
  76. }
  77. func (c *intelligentLightingCtl) RelationList(ctx *gin.Context) {
  78. }
  79. func (c *intelligentLightingCtl) Relation(ctx *gin.Context) {
  80. }
  81. func (c *intelligentLightingCtl) Remove(ctx *gin.Context) {
  82. }
  83. func (c *intelligentLightingCtl) ChangeHandSwitch(ctx *gin.Context) {
  84. }
  85. func (c *intelligentLightingCtl) GetStatus(ctx *gin.Context) {
  86. }