infoBoardController.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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/common"
  9. "math"
  10. "net/http"
  11. "strconv"
  12. )
  13. // 信息屏基本信息管理对象
  14. var InfoBoard = new(infoBoardCtl)
  15. type infoBoardCtl struct{}
  16. func (c *infoBoardCtl) Detail(ctx *gin.Context) {
  17. id, e := strconv.Atoi(ctx.Query("id"))
  18. if e != nil {
  19. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  20. return
  21. }
  22. device, err := service.InfoBoardService.Get(id)
  23. if err != nil {
  24. ctx.JSON(http.StatusOK, err)
  25. return
  26. }
  27. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, device))
  28. }
  29. func (c *infoBoardCtl) 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, total, err := service.InfoBoardService.List(searchValue, current, size)
  40. if err != nil {
  41. ctx.JSON(http.StatusOK, err)
  42. return
  43. }
  44. pages := math.Ceil(float64(total) / float64(size))
  45. rsp := model.RsqInfoBoardList{
  46. Current: current,
  47. Size: size,
  48. Total: int(total),
  49. Pages: int(pages),
  50. Records: devices,
  51. }
  52. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  53. }
  54. func (c *infoBoardCtl) CreateOrUpdate(ctx *gin.Context) {
  55. value, _ := ctx.Get(middleware.Authorization)
  56. claims := value.(*middleware.Claims)
  57. var req dao.InfoBoard
  58. if err := ctx.ShouldBindJSON(&req); err != nil {
  59. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  60. return
  61. }
  62. err := service.InfoBoardService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
  63. ctx.JSON(http.StatusOK, err)
  64. }
  65. func (c *infoBoardCtl) Remove(ctx *gin.Context) {
  66. value, _ := ctx.Get(middleware.Authorization)
  67. claims := value.(*middleware.Claims)
  68. var req *model.ReqInfoBoardRemove
  69. if err := ctx.ShouldBindJSON(&req); err != nil {
  70. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  71. return
  72. }
  73. err := service.InfoBoardService.Remove(claims.UserId, claims.TenantId, req.IDs)
  74. if err != nil {
  75. ctx.JSON(http.StatusOK, err)
  76. return
  77. }
  78. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  79. }
  80. func (c *infoBoardCtl) ImportExcel(ctx *gin.Context) {
  81. }
  82. func (c *infoBoardCtl) ExportExcel(ctx *gin.Context) {
  83. }
  84. func (c *infoBoardCtl) ExportTemplate(ctx *gin.Context) {
  85. }
  86. func (c *infoBoardCtl) SystemOperation(ctx *gin.Context) {
  87. }
  88. func (c *infoBoardCtl) Enable(ctx *gin.Context) {
  89. //TODO:未做
  90. }
  91. func (c *infoBoardCtl) ShowSetting(ctx *gin.Context) {
  92. id, e := strconv.Atoi(ctx.Query("id"))
  93. if e != nil {
  94. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
  95. return
  96. }
  97. device, err := service.InfoBoardService.Get(id)
  98. if err != nil {
  99. ctx.JSON(http.StatusOK, err)
  100. return
  101. }
  102. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, device))
  103. }
  104. type edgeCmdReq struct {
  105. InfoSn string `json:"infoSn"`
  106. Id int `json:"id"`
  107. Directive int `json:"directive"`
  108. Condition string `json:"condition"`
  109. }
  110. // EdgeCmd 向边缘端发送cmd命令
  111. func (c *infoBoardCtl) EdgeCmd(ctx *gin.Context) {
  112. var req *edgeCmdReq
  113. if err := ctx.ShouldBindJSON(&req); err != nil {
  114. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
  115. return
  116. }
  117. value, _ := ctx.Get(middleware.Authorization)
  118. claims := value.(*middleware.Claims)
  119. if req.Directive == 101 {
  120. var req2 dao.InfoBoard
  121. req2.ID = req.Id
  122. req2.Condition = req.Condition
  123. service.InfoBoardService.CreateOrUpdate(claims.UserId, claims.TenantId, req2)
  124. }
  125. service.InfoBoardService.EdgeCmd(strconv.Itoa(claims.TenantId), req.InfoSn, req.Directive, req.Id)
  126. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  127. }