bridgeSensorController.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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 BridgeSensor = new(bridgeSensorCtl)
  15. type bridgeSensorCtl struct{}
  16. func (c *bridgeSensorCtl) 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.BridgeSensorService.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 *bridgeSensorCtl) 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.BridgeSensorService.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.RspBridgeSensorList{
  46. Current: current,
  47. Size: size,
  48. Total: len(devices),
  49. Pages: int(pages),
  50. }
  51. for _, device := range devices {
  52. rsp.Records = append(rsp.Records, device)
  53. }
  54. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp))
  55. }
  56. func (c *bridgeSensorCtl) CreateOrUpdate(ctx *gin.Context) {
  57. value, _ := ctx.Get(middleware.Authorization)
  58. claims := value.(*middleware.Claims)
  59. var req dao.BridgeSensor
  60. if err := ctx.ShouldBindJSON(&req); err != nil {
  61. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
  62. return
  63. }
  64. err := service.BridgeSensorService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
  65. ctx.JSON(http.StatusOK, err)
  66. }
  67. func (c *bridgeSensorCtl) Remove(ctx *gin.Context) {
  68. value, _ := ctx.Get(middleware.Authorization)
  69. claims := value.(*middleware.Claims)
  70. var req *model.ReqBridgeSensorRemove
  71. if err := ctx.ShouldBindJSON(&req); err != nil {
  72. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
  73. return
  74. }
  75. err := service.BridgeSensorService.Remove(claims.UserId, req.IDs)
  76. if err != nil {
  77. ctx.JSON(http.StatusOK, err)
  78. return
  79. }
  80. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, nil))
  81. }
  82. func (c *bridgeSensorCtl) ImportExcel(ctx *gin.Context) {
  83. }
  84. func (c *bridgeSensorCtl) ExportExcel(ctx *gin.Context) {
  85. }
  86. func (c *bridgeSensorCtl) ExportTemplate(ctx *gin.Context) {
  87. }
  88. func (c *bridgeSensorCtl) GetList(ctx *gin.Context) {
  89. value, _ := ctx.Get(middleware.Authorization)
  90. claims := value.(*middleware.Claims)
  91. devices, err := service.BridgeSensorService.GetList(claims.TenantId)
  92. if err != nil {
  93. ctx.JSON(http.StatusOK, err)
  94. return
  95. }
  96. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, devices))
  97. }
  98. func (c *bridgeSensorCtl) Enable(ctx *gin.Context) {
  99. var req *model.ReqBridgeSensorEnable
  100. if err := ctx.ShouldBindJSON(&req); err != nil {
  101. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
  102. return
  103. }
  104. if req.Status != model.Enable_Enable && req.Status != model.Enable_Disable {
  105. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(model.EnableInvalid, nil))
  106. return
  107. }
  108. err := service.BridgeSensorService.Enable(req.ID, req.Status)
  109. if err != nil {
  110. ctx.JSON(http.StatusOK, err)
  111. return
  112. }
  113. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, nil))
  114. }