workbenchService.go 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. package service
  2. import (
  3. "fmt"
  4. dataDao "iot_manager_service/app/data/dao"
  5. "iot_manager_service/app/device/dao"
  6. "iot_manager_service/app/device/model"
  7. operationDao "iot_manager_service/app/operation/dao"
  8. "iot_manager_service/app/operation/edge_service"
  9. operationModel "iot_manager_service/app/operation/model"
  10. "iot_manager_service/util/common"
  11. "time"
  12. )
  13. // 中间件管理服务
  14. var WorkbenchService = new(workbenchService)
  15. type workbenchService struct{}
  16. func (s *workbenchService) CountDevice(tenantId string) ([]dao.CountDevice, *common.Errors) {
  17. counts, err := dao.GetDeviceCount(tenantId)
  18. if err != nil {
  19. return nil, common.FailResponse(err.Error(), nil)
  20. }
  21. return counts, nil
  22. }
  23. func (s *workbenchService) CountAlarm(tenantId string) (*dao.CountAlarm, *common.Errors) {
  24. count, err := dao.GetAlarmCount(tenantId)
  25. if err != nil {
  26. return nil, common.FailResponse(err.Error(), nil)
  27. }
  28. return count, nil
  29. }
  30. func (s *workbenchService) CountJobTodo(tenantId string) (*dao.CountAlarm, *common.Errors) {
  31. count, err := dao.GetAlarmCount(tenantId)
  32. if err != nil {
  33. return nil, common.FailResponse(err.Error(), nil)
  34. }
  35. return count, nil
  36. }
  37. // 显示设备离线的状态
  38. func (s *workbenchService) Notification(tenantId string) ([]dao.DeviceState, *common.Errors) {
  39. notification, err := dao.GetNotification(tenantId)
  40. if err != nil {
  41. return nil, common.FailResponse(err.Error(), nil)
  42. }
  43. return notification, nil
  44. }
  45. func (s *workbenchService) LightRate(tenantId string, req model.ReqLightRates) (*model.RspLightRate, *common.Errors) {
  46. var list []operationModel.ResponseLightingRate
  47. var err error
  48. if req.QueryType == "month" {
  49. list, err = s.getLightRateData("day", tenantId, operationModel.RequestLightingRateFilter{
  50. StartTime: req.StartDate,
  51. EndTime: req.EndDate,
  52. QueryType: "day",
  53. })
  54. } else {
  55. list, err = s.getLightRateData("month", tenantId, operationModel.RequestLightingRateFilter{
  56. StartTime: req.StartDate,
  57. EndTime: req.EndDate,
  58. QueryType: "month",
  59. })
  60. }
  61. if err != nil {
  62. return nil, common.FailResponse(err.Error(), nil)
  63. }
  64. var lightRate []model.LightRate
  65. var energy []model.LightRate
  66. for _, rate := range list {
  67. parse, _ := time.Parse("2006-01-02", rate.CountTime)
  68. if req.QueryType == "month" {
  69. parse, _ = time.Parse("2006-01-02", rate.CountTime)
  70. }
  71. lightRate = append(lightRate, model.LightRate{
  72. ColumnValue: fmt.Sprintf("%.2f", rate.LightingRate),
  73. TimeLine: parse,
  74. })
  75. energy = append(energy, model.LightRate{
  76. ColumnValue: fmt.Sprintf("%.2f", rate.EnergyNum),
  77. TimeLine: parse,
  78. })
  79. }
  80. rsp := model.RspLightRate{
  81. LightRate: lightRate, Energy: energy,
  82. }
  83. return &rsp, nil
  84. }
  85. // 工作台-采集点
  86. func (s *workbenchService) Aqi(tenantId string) (interface{}, interface{}) {
  87. aqi, err := dao.GetAqi(tenantId)
  88. if err != nil {
  89. return nil, common.FailResponse(err.Error(), nil)
  90. }
  91. s.GetNewsDate(aqi)
  92. return aqi, nil
  93. }
  94. func (s *workbenchService) GetNewsDate(vo *dao.OptoSensorVO) *dao.OptoSensorVO {
  95. //var meteorologicalDataList []omodel.EnvironmentDetail
  96. //meteorologicalDataVO := omodel.EnvironmentDetail{}
  97. //meteorologicalDataVO.Sn = vo.Sn
  98. //meteorologicalDataList = append(meteorologicalDataList, meteorologicalDataVO)
  99. devId := vo.ID
  100. environmentData := dataDao.EnvironmentData{DeviceId: devId}
  101. environmentData.Get()
  102. vo.RealTimeTemperature = fmt.Sprintf("%.2f ℃", environmentData.Temperature)
  103. vo.Pm25 = fmt.Sprintf("%.2f ug/m³", environmentData.Pm25)
  104. aqi := common.CountAqi(float64(environmentData.Pm25), float64(environmentData.Pm10))
  105. vo.AirIndex = int(aqi)
  106. vo.AirQuality = common.CalculateAirQuality(aqi)
  107. vo.EndLineTime = environmentData.PostTime.Format("2006-01-02 15:04:05")
  108. vo.Humidity = fmt.Sprintf("%.2f %%", environmentData.Humidity)
  109. vo.Pm10 = fmt.Sprintf("%.2f ug/m³", environmentData.Pm10)
  110. vo.Noise = fmt.Sprintf("%.2f dB", environmentData.Noise) //噪声
  111. vo.Pressure = fmt.Sprintf("%.2f hPa", environmentData.Hpa) //大气压
  112. vo.Direction = environmentData.WindDirection //风向
  113. vo.RealTimeWindSpeed = common.CalculateSpeed(fmt.Sprintf("%.2f", environmentData.WindSpeed/100)) //风力等级
  114. return vo
  115. }
  116. // getLightRateData 能耗和光照
  117. func (s *workbenchService) getLightRateData(method string, tenantId string, req operationModel.RequestLightingRateFilter) ([]operationModel.ResponseLightingRate, error) {
  118. lightControl := operationDao.Operation{
  119. TenantId: tenantId,
  120. }
  121. codes, err := lightControl.GetSnList()
  122. if err != nil {
  123. return nil, err
  124. }
  125. flag := 1 //能耗请求类型:按天
  126. flag2 := 0 //亮灯率请求类型:按天
  127. if method == "month" {
  128. flag = 2 //能耗请求类型:按天
  129. flag2 = 1 //亮灯率请求类型:按月
  130. }
  131. //能耗
  132. forLightEnergy := edge_service.ForLightEnergy{}
  133. lightEnergys, err := forLightEnergy.GetLightEnergy(edge_service.ForLightEnergyReq{
  134. Codes: codes,
  135. Start: req.StartTime,
  136. End: req.EndTime,
  137. Flag: flag,
  138. })
  139. if err != nil {
  140. return nil, err
  141. }
  142. //亮灯率
  143. forLightRate := edge_service.ForLightRate{}
  144. lightRates, err := forLightRate.GetLightRate(edge_service.ForLightRateReq{
  145. Tenant: tenantId,
  146. Start: req.StartTime,
  147. End: req.EndTime,
  148. Flag: flag2,
  149. })
  150. if err != nil {
  151. return nil, err
  152. }
  153. var list []operationModel.ResponseLightingRate
  154. var months []string
  155. if method == "month" {
  156. months = common.GetTimeMonths(req.StartTime, req.EndTime) //时间范围 月
  157. } else {
  158. months = common.GetTimeDays(req.StartTime, req.EndTime) //时间范围 天
  159. }
  160. for _, month := range months {
  161. // 能耗数据汇总
  162. var monthEnergyNum float64 //能耗
  163. for _, LightEnergy := range lightEnergys {
  164. for _, data := range LightEnergy {
  165. if month == data.Date {
  166. monthEnergyNum += data.Difference
  167. }
  168. }
  169. }
  170. //亮灯率
  171. var lightingRate float64
  172. var lightControlNum, lightingNum int
  173. for _, rate := range lightRates {
  174. date := rate.Date
  175. if method == "month" {
  176. date = rate.Month + "-01"
  177. }
  178. if date == month {
  179. lightingRate += rate.Rate //亮灯率
  180. lightControlNum += rate.Total //灯数
  181. lightingNum += rate.Number //亮灯数
  182. }
  183. }
  184. //组合数据到前端接口展示
  185. list = append(list, operationModel.ResponseLightingRate{
  186. CountTime: month,
  187. EnergyNum: common.Decimal(monthEnergyNum),
  188. LightingRate: common.Decimal(lightingRate),
  189. LightControlNum: lightControlNum,
  190. LightingNum: lightingNum,
  191. })
  192. }
  193. return list, nil
  194. }