GatewayController.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/device/dao"
  5. "iot_manager_service/app/device/model"
  6. "iot_manager_service/app/device/service"
  7. "iot_manager_service/app/middleware"
  8. "iot_manager_service/util"
  9. "math"
  10. "net/http"
  11. "strconv"
  12. )
  13. // 智慧网关基本信息管理对象
  14. var Gateway = new(gatewayCtl)
  15. type gatewayCtl struct{}
  16. func (c *gatewayCtl) Detail(ctx *gin.Context) {
  17. id, e := strconv.Atoi(ctx.Query("id"))
  18. if e != nil {
  19. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(e.Error(), nil))
  20. return
  21. }
  22. device, err := service.GatewayService.Get(id)
  23. if err != nil {
  24. ctx.JSON(http.StatusOK, err)
  25. return
  26. }
  27. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, device))
  28. }
  29. func (c *gatewayCtl) List(ctx *gin.Context) {
  30. searchValue := ctx.Query("searchValue")
  31. current, _ := strconv.Atoi(ctx.Query("current"))
  32. size, _ := strconv.Atoi(ctx.Query("size"))
  33. if current == 0 {
  34. current = 1
  35. }
  36. if size <= 0 || size > 100 {
  37. size = 10
  38. }
  39. devices, err := service.GatewayService.List(searchValue, current, size)
  40. if err != nil {
  41. ctx.JSON(http.StatusOK, err)
  42. return
  43. }
  44. pages := math.Ceil(float64(len(devices)) / float64(size))
  45. rsp := model.RspGatewayList{
  46. Current: current,
  47. Size: size,
  48. Total: len(devices),
  49. Pages: int(pages),
  50. Records: devices,
  51. }
  52. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp))
  53. }
  54. func (c *gatewayCtl) CreateOrUpdate(ctx *gin.Context) {
  55. value, _ := ctx.Get(middleware.Authorization)
  56. claims := value.(*middleware.Claims)
  57. var req *model.GatewayDetail
  58. if err := ctx.ShouldBindJSON(&req); err != nil {
  59. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
  60. return
  61. }
  62. err := service.GatewayService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
  63. ctx.JSON(http.StatusOK, err)
  64. }
  65. func (c *gatewayCtl) Remove(ctx *gin.Context) {
  66. value, _ := ctx.Get(middleware.Authorization)
  67. claims := value.(*middleware.Claims)
  68. var req *model.ReqGatewayRemove
  69. if err := ctx.ShouldBindJSON(&req); err != nil {
  70. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
  71. return
  72. }
  73. err := service.GatewayService.Remove(claims.UserId, req.IDs)
  74. if err != nil {
  75. ctx.JSON(http.StatusOK, err)
  76. return
  77. }
  78. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, nil))
  79. }
  80. func (c *gatewayCtl) ImportExcel(ctx *gin.Context) {
  81. }
  82. func (c *gatewayCtl) ExportExcel(ctx *gin.Context) {
  83. }
  84. func (c *gatewayCtl) ExportTemplate(ctx *gin.Context) {
  85. }
  86. func (c *gatewayCtl) GetList(ctx *gin.Context) {
  87. value, _ := ctx.Get(middleware.Authorization)
  88. claims := value.(*middleware.Claims)
  89. devices, err := service.GatewayService.GetList(claims.TenantId)
  90. if err != nil {
  91. ctx.JSON(http.StatusOK, err)
  92. return
  93. }
  94. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, devices))
  95. }
  96. func (c *gatewayCtl) GetRelevanceDetail(ctx *gin.Context) {
  97. id, e := strconv.Atoi(ctx.Query("id"))
  98. if e != nil {
  99. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(e.Error(), nil))
  100. return
  101. }
  102. device, err := service.GatewayService.GetRelevanceDetail(id)
  103. if err != nil {
  104. ctx.JSON(http.StatusOK, err)
  105. return
  106. }
  107. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, device))
  108. }
  109. func gatewayDaoToModel(device dao.Gateway) model.GatewayDetail {
  110. return model.GatewayDetail{
  111. Gateway: device,
  112. CountLampPole: 0,
  113. EndLineTime: "",
  114. NetworkState: "",
  115. RunState: "",
  116. Cpu: "",
  117. Memory: "",
  118. AlarmTerminalList: nil,
  119. CameraList: nil,
  120. CaptureUnitList: nil,
  121. InfoBoardList: nil,
  122. IpBroadcastList: nil,
  123. LightControlList: nil,
  124. ZigbeeList: nil,
  125. OptoSensorList: nil,
  126. }
  127. }