lampPoleGroupController.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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 LampPoleGroup = new(lampPoleGroupCtl)
  14. type lampPoleGroupCtl struct{}
  15. // Detail 获取详情
  16. func (c *lampPoleGroupCtl) Detail(ctx *gin.Context) {
  17. id, e := strconv.Atoi(ctx.Query("id"))
  18. if e != nil {
  19. ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(e.Error(), nil))
  20. return
  21. }
  22. device, err := service.LampPoleGroupService.Get(id)
  23. if err != nil {
  24. ctx.JSON(http.StatusOK, err)
  25. return
  26. }
  27. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, lampPoleGroupDaoToModel(*device)))
  28. }
  29. // CreateOrUpdate 新增、更新
  30. func (c *lampPoleGroupCtl) CreateOrUpdate(ctx *gin.Context) {
  31. var req *dao.LampPoleGroup
  32. if err := ctx.ShouldBindJSON(&req); err != nil {
  33. ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
  34. return
  35. }
  36. err := service.LampPoleGroupService.CreateOrUpdate(req)
  37. ctx.JSON(http.StatusOK, err)
  38. }
  39. // List 获取分页列表
  40. func (c *lampPoleGroupCtl) List(ctx *gin.Context) {
  41. poleGroupName := ctx.Query("poleGroupName")
  42. current, _ := strconv.Atoi(ctx.Query("current"))
  43. size, _ := strconv.Atoi(ctx.Query("size"))
  44. if current == 0 {
  45. current = 1
  46. }
  47. if size <= 0 || size > 100 {
  48. size = 10
  49. }
  50. devices, err := service.LampPoleGroupService.List(poleGroupName, current, size)
  51. if err != nil {
  52. ctx.JSON(http.StatusOK, err)
  53. return
  54. }
  55. pages := math.Ceil(float64(len(devices)) / float64(size))
  56. rsp := model.RspLampPoleGroupList{
  57. Current: current,
  58. Size: size,
  59. Total: len(devices),
  60. Pages: int(pages),
  61. }
  62. for _, device := range devices {
  63. rsp.Records = append(rsp.Records, lampPoleGroupDaoToModel(device))
  64. }
  65. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, rsp))
  66. }
  67. // Remove 删除
  68. func (c *lampPoleGroupCtl) Remove(ctx *gin.Context) {
  69. var req *model.ReqLampPoleGroupRemove
  70. if err := ctx.ShouldBindJSON(&req); err != nil {
  71. ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
  72. return
  73. }
  74. err := service.LampPoleGroupService.Remove(req.IDs)
  75. if err != nil {
  76. ctx.JSON(http.StatusOK, err)
  77. return
  78. }
  79. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, nil))
  80. }
  81. // GetList 获取下拉列表
  82. func (c *lampPoleGroupCtl) GetList(ctx *gin.Context) {
  83. devices, err := service.LampPoleGroupService.GetList()
  84. if err != nil {
  85. ctx.JSON(http.StatusOK, err)
  86. return
  87. }
  88. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, devices))
  89. }
  90. // FiltrationList 获取智能照明灯杆分组下拉(过滤掉没有灯控的分组显示)
  91. func (c *lampPoleGroupCtl) FiltrationList(ctx *gin.Context) {
  92. devices, err := service.LampPoleGroupService.GetFiltration()
  93. if err != nil {
  94. ctx.JSON(http.StatusOK, err)
  95. return
  96. }
  97. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, devices))
  98. }
  99. // GetTree 获取所有的灯杆分组所属灯杆
  100. func (c *lampPoleGroupCtl) GetTree(ctx *gin.Context) {
  101. //todo 灯杆列表赋值
  102. // var rsp model.ReqLampPoleGroupSubmit
  103. devices, err := service.LampPoleGroupService.GetTree()
  104. if err != nil {
  105. ctx.JSON(http.StatusOK, err)
  106. return
  107. }
  108. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, devices))
  109. }
  110. func lampPoleGroupDaoToModel(device dao.LampPoleGroup) model.LampPoleGroupDetail {
  111. return model.LampPoleGroupDetail{
  112. LampPoleGroup: device,
  113. PublicName: "",
  114. LampPoleVOList: []model.LampPoleVO{},
  115. CameraList: []model.Camera{},
  116. SwitchBoxList: []model.SwitchBox{},
  117. InfoBoardList: []model.InfoBoard{},
  118. }
  119. }