bridgeSensorController.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 BridgeSensor = new(bridgeSensorCtl)
  14. type bridgeSensorCtl struct{}
  15. func (c *bridgeSensorCtl) Detail(ctx *gin.Context) {
  16. id, e := strconv.Atoi(ctx.Query("id"))
  17. if e != nil {
  18. ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(e.Error(), nil))
  19. return
  20. }
  21. device, err := service.BridgeSensorService.Get(id)
  22. if err != nil {
  23. ctx.JSON(http.StatusOK, err)
  24. return
  25. }
  26. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, device))
  27. }
  28. func (c *bridgeSensorCtl) List(ctx *gin.Context) {
  29. searchValue := ctx.Query("searchValue")
  30. current, _ := strconv.Atoi(ctx.Query("current"))
  31. size, _ := strconv.Atoi(ctx.Query("size"))
  32. if current == 0 {
  33. current = 1
  34. }
  35. if size <= 0 || size > 100 {
  36. size = 10
  37. }
  38. devices, err := service.BridgeSensorService.List(searchValue, current, size)
  39. if err != nil {
  40. ctx.JSON(http.StatusOK, err)
  41. return
  42. }
  43. pages := math.Ceil(float64(len(devices)) / float64(size))
  44. rsp := model.RspBridgeSensorList{
  45. Current: current,
  46. Size: size,
  47. Total: len(devices),
  48. Pages: int(pages),
  49. }
  50. for _, device := range devices {
  51. rsp.Records = append(rsp.Records, device)
  52. }
  53. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, rsp))
  54. }
  55. func (c *bridgeSensorCtl) CreateOrUpdate(ctx *gin.Context) {
  56. var req dao.BridgeSensor
  57. if err := ctx.ShouldBindJSON(&req); err != nil {
  58. ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
  59. return
  60. }
  61. err := service.BridgeSensorService.CreateOrUpdate(req)
  62. ctx.JSON(http.StatusOK, err)
  63. }
  64. func (c *bridgeSensorCtl) Remove(ctx *gin.Context) {
  65. var req *model.ReqBridgeSensorRemove
  66. if err := ctx.ShouldBindJSON(&req); err != nil {
  67. ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
  68. return
  69. }
  70. err := service.BridgeSensorService.Remove(req.IDs)
  71. if err != nil {
  72. ctx.JSON(http.StatusOK, err)
  73. return
  74. }
  75. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, nil))
  76. }
  77. func (c *bridgeSensorCtl) ImportExcel(ctx *gin.Context) {
  78. }
  79. func (c *bridgeSensorCtl) ExportExcel(ctx *gin.Context) {
  80. }
  81. func (c *bridgeSensorCtl) ExportTemplate(ctx *gin.Context) {
  82. }
  83. func (c *bridgeSensorCtl) GetList(ctx *gin.Context) {
  84. devices, err := service.BridgeSensorService.GetList()
  85. if err != nil {
  86. ctx.JSON(http.StatusOK, err)
  87. return
  88. }
  89. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, devices))
  90. }
  91. func (c *bridgeSensorCtl) Enable(ctx *gin.Context) {
  92. var req *model.ReqBridgeSensorEnable
  93. if err := ctx.ShouldBindJSON(&req); err != nil {
  94. ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
  95. return
  96. }
  97. if req.Status != model.Enable_Enable && req.Status != model.Enable_Disable {
  98. ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(model.EnableInvalid, nil))
  99. return
  100. }
  101. err := service.BridgeSensorService.Enable(req.ID, req.Status)
  102. if err != nil {
  103. ctx.JSON(http.StatusOK, err)
  104. return
  105. }
  106. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, nil))
  107. }