bigController.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "github.com/sirupsen/logrus"
  5. "iot_manager_service/app/device/dao"
  6. "iot_manager_service/app/device/service"
  7. "iot_manager_service/app/middleware"
  8. "iot_manager_service/util/common"
  9. "net/http"
  10. "strconv"
  11. )
  12. //点击获取当前设备总数/状态数量+列表
  13. //http://localhost/api/longchi/largescreen/mapclieck/device-num?queryType=lampPole
  14. //需要数据:
  15. //countNum:灯杆总数,
  16. //faultNum:灯杆报警数,
  17. //[]polist:(lng经度,lat纬度,status:状态,name:名字,code:编码,lampPoleName:灯杆名,brand:品牌,model:型号,linkNum:连接设备数,)
  18. var BigScreen = new(bigScreen)
  19. type bigScreen struct {
  20. }
  21. func (big *bigScreen) DeviceNum(ctx *gin.Context) {
  22. queryType := ctx.Query("queryType")
  23. rsp := service.BigServer.DeviceNum(queryType)
  24. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  25. }
  26. func (big *bigScreen) LampPoleStatus(ctx *gin.Context) {
  27. var rsp dao.TotalLamp
  28. all, fault := service.BigServer.GetLampCount()
  29. rsp.CountNum = all
  30. rsp.FaultNum = fault
  31. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  32. }
  33. // DevicesStatus 设备统计 /api/longchi/largescreen/overview/device-status
  34. func (big *bigScreen) DevicesStatus(ctx *gin.Context) {
  35. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, service.BigServer.DevicesStatus()))
  36. }
  37. // Energy 能耗: /api/longchi/largescreen/overview/energy-consumption
  38. func (big *bigScreen) Energy(ctx *gin.Context) {
  39. rsp := service.BigServer.GetEnergy(ctx.Query("startDate"), ctx.Query("endDate"))
  40. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  41. }
  42. // LightRate 亮灯率: /api/longchi/largescreen/overview/lighting-rate
  43. func (big *bigScreen) LightRate(ctx *gin.Context) {
  44. authorization := ctx.GetHeader("Authorization")
  45. claims := middleware.ParseAccessToken(authorization)
  46. //rsp := service.BigServer.GetLightRate(claims.TenantId)
  47. //var rsp = make([]interface{}, 0, 4)
  48. //var lrm = dao.LightRateM{Month: "2023-07", Rate: 30}
  49. //var lrq = dao.LightRateQ{Quarter: "3", Rate: 50}
  50. //var lry = dao.LightRateY{Year: "2023", Rate: 50}
  51. //rsp = append(rsp, []interface{}{})
  52. //rsp = append(rsp, lrm)
  53. //rsp = append(rsp, lrq)
  54. //rsp = append(rsp, lry)
  55. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, service.BigServer.GetLightRate(claims.TenantId)))
  56. }
  57. // AlarmInfo http://localhost/api/longchi/largescreen/overview/alarm-information
  58. func (big *bigScreen) AlarmInfo(ctx *gin.Context) {
  59. rsp := service.BigServer.GetAlarmInfo()
  60. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  61. }
  62. // AlarmStatistics 报警设备统计 http://localhost/api/longchi/largescreen/overview/alarm-device-count?startDate=2022-07-10&endDate=2023-07-10
  63. func (big *bigScreen) AlarmStatistics(ctx *gin.Context) {
  64. //deviceType faultNum
  65. rsp := service.BigServer.AlarmStatus()
  66. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  67. }
  68. // FlowInfo 工单信息 http://localhost/api/longchi/largescreen/overview/flow-information
  69. func (big *bigScreen) FlowInfo(ctx *gin.Context) {
  70. //deviceType faultNum
  71. rsp := service.BigServer.AlarmStatus()
  72. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  73. }
  74. func (big *bigScreen) Environment(ctx *gin.Context) {
  75. deviceId := ctx.Query("id")
  76. rsp := service.BigServer.GetEnv(deviceId)
  77. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  78. }
  79. func (big *bigScreen) InfoBoard(ctx *gin.Context) {
  80. authorization := ctx.GetHeader("Authorization")
  81. claims := middleware.ParseAccessToken(authorization)
  82. rsp := service.BigServer.GetLEDProgram(claims.TenantId)
  83. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  84. }
  85. func (big *bigScreen) Program(ctx *gin.Context) {
  86. id := ctx.Query("id")
  87. atoi, _ := strconv.Atoi(id)
  88. rsp := service.BigServer.GetProgramUrl(id)
  89. rsp.Id = int64(atoi)
  90. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  91. }
  92. func (big *bigScreen) BridgeSensor(ctx *gin.Context) {
  93. authorization := ctx.GetHeader("Authorization")
  94. claims := middleware.ParseAccessToken(authorization)
  95. rsp := service.BigServer.GetBridgeSensors(claims.TenantId)
  96. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  97. }
  98. // QueryOverView http://localhost/api/longchi/largescreen/setting/query-large-screen?padScreen=overview
  99. func (big *bigScreen) QueryOverView(ctx *gin.Context) {
  100. padScreen := ctx.Query("padScreen")
  101. authorization := ctx.GetHeader("Authorization")
  102. claims := middleware.ParseAccessToken(authorization)
  103. rsp := service.BigServer.OverView(claims.TenantId, padScreen)
  104. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  105. }
  106. func (big *bigScreen) SubmitOverView(ctx *gin.Context) {
  107. authorization := ctx.GetHeader("Authorization")
  108. claims := middleware.ParseAccessToken(authorization)
  109. var req []dao.OverView
  110. err := ctx.ShouldBind(&req)
  111. if err != nil {
  112. logrus.Errorf("SubmitOverView ShouldBind error:%v", err)
  113. }
  114. for i, _ := range req {
  115. req[i].TenantId = claims.TenantId
  116. }
  117. service.BigServer.Submit(req)
  118. ctx.JSON(200, "")
  119. }