workbenchService.go 6.3 KB

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