GatewayController.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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/app/middleware"
  7. "iot_manager_service/util/common"
  8. "math"
  9. "net/http"
  10. "strconv"
  11. )
  12. // 智慧网关基本信息管理对象
  13. var Gateway = new(gatewayCtl)
  14. type gatewayCtl struct{}
  15. func (c *gatewayCtl) Detail(ctx *gin.Context) {
  16. id, e := strconv.Atoi(ctx.Query("id"))
  17. if e != nil {
  18. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  19. return
  20. }
  21. device, err := service.GatewayService.Get(id)
  22. if err != nil {
  23. ctx.JSON(http.StatusOK, err)
  24. return
  25. }
  26. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, device))
  27. }
  28. func (c *gatewayCtl) 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.GatewayService.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.RspGatewayList{
  45. Current: current,
  46. Size: size,
  47. Total: len(devices),
  48. Pages: int(pages),
  49. Records: devices,
  50. }
  51. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  52. }
  53. func (c *gatewayCtl) CreateOrUpdate(ctx *gin.Context) {
  54. value, _ := ctx.Get(middleware.Authorization)
  55. claims := value.(*middleware.Claims)
  56. var req *model.GatewayDetail
  57. if err := ctx.ShouldBindJSON(&req); err != nil {
  58. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  59. return
  60. }
  61. err := service.GatewayService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
  62. ctx.JSON(http.StatusOK, err)
  63. }
  64. func (c *gatewayCtl) Remove(ctx *gin.Context) {
  65. value, _ := ctx.Get(middleware.Authorization)
  66. claims := value.(*middleware.Claims)
  67. var req *model.ReqGatewayRemove
  68. if err := ctx.ShouldBindJSON(&req); err != nil {
  69. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  70. return
  71. }
  72. err := service.GatewayService.Remove(claims.UserId, claims.TenantId, req.IDs)
  73. if err != nil {
  74. ctx.JSON(http.StatusOK, err)
  75. return
  76. }
  77. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  78. }
  79. func (c *gatewayCtl) ImportExcel(ctx *gin.Context) {
  80. }
  81. func (c *gatewayCtl) ExportExcel(ctx *gin.Context) {
  82. }
  83. func (c *gatewayCtl) ExportTemplate(ctx *gin.Context) {
  84. }
  85. func (c *gatewayCtl) GetList(ctx *gin.Context) {
  86. value, _ := ctx.Get(middleware.Authorization)
  87. claims := value.(*middleware.Claims)
  88. devices, err := service.GatewayService.GetList(claims.TenantId)
  89. if err != nil {
  90. ctx.JSON(http.StatusOK, err)
  91. return
  92. }
  93. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, devices))
  94. }
  95. func (c *gatewayCtl) GetRelevanceDetail(ctx *gin.Context) {
  96. id, e := strconv.Atoi(ctx.Query("id"))
  97. if e != nil {
  98. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  99. return
  100. }
  101. device, err := service.GatewayService.GetRelevanceDetail(id)
  102. if err != nil {
  103. ctx.JSON(http.StatusOK, err)
  104. return
  105. }
  106. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, device))
  107. }