workbenchService.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. "iot_manager_service/util/common"
  8. )
  9. // 中间件管理服务
  10. var WorkbenchService = new(workbenchService)
  11. type workbenchService struct{}
  12. func (s *workbenchService) CountDevice(tenantId int) ([]dao.CountDevice, *common.Errors) {
  13. counts, err := dao.GetDeviceCount(tenantId)
  14. if err != nil {
  15. return nil, common.FailResponse(err.Error(), nil)
  16. }
  17. return counts, nil
  18. }
  19. func (s *workbenchService) CountAlarm(tenantId int) (*dao.CountAlarm, *common.Errors) {
  20. count, err := dao.GetAlarmCount(tenantId)
  21. if err != nil {
  22. return nil, common.FailResponse(err.Error(), nil)
  23. }
  24. return count, nil
  25. }
  26. func (s *workbenchService) CountJobTodo(tenantId int) (*dao.CountAlarm, *common.Errors) {
  27. count, err := dao.GetAlarmCount(tenantId)
  28. if err != nil {
  29. return nil, common.FailResponse(err.Error(), nil)
  30. }
  31. return count, nil
  32. }
  33. func (s *workbenchService) Notification(tenantId int) (*dao.Notification, *common.Errors) {
  34. notification, err := dao.GetNotification(tenantId)
  35. if err != nil {
  36. return nil, common.FailResponse(err.Error(), nil)
  37. }
  38. return notification, nil
  39. }
  40. func (s *workbenchService) LightRate(tenantId int) (*model.RspLightRate, *common.Errors) {
  41. var rsp model.RspLightRate
  42. return &rsp, nil
  43. }
  44. //工作台-采集点
  45. func (s *workbenchService) Aqi(tenantId int) (interface{}, interface{}) {
  46. aqi, err := dao.GetAqi(tenantId)
  47. if err != nil {
  48. return nil, common.FailResponse(err.Error(), nil)
  49. }
  50. s.getNewsDate(aqi)
  51. return aqi, nil
  52. }
  53. func (s *workbenchService) getNewsDate(vo *dao.OptoSensorVO) *dao.OptoSensorVO {
  54. //var meteorologicalDataList []omodel.EnvironmentDetail
  55. //meteorologicalDataVO := omodel.EnvironmentDetail{}
  56. //meteorologicalDataVO.Sn = vo.Sn
  57. //meteorologicalDataList = append(meteorologicalDataList, meteorologicalDataVO)
  58. devId := vo.ID
  59. environmentData := dataDao.EnvironmentData{DeviceId: devId}
  60. environmentData.Get()
  61. vo.RealTimeTemperature = fmt.Sprintf("%.2f ℃", environmentData.Temperature)
  62. vo.Pm25 = fmt.Sprintf("%.2f ug/m³", environmentData.Pm25)
  63. vo.AirIndex = int(environmentData.Air)
  64. vo.AirQuality = common.CalculateAirQuality(string(fmt.Sprintf("%.2f", environmentData.Air)))
  65. vo.EndLineTime = vo.UpdateTime.Format("2006-01-02 15:04:05")
  66. vo.Humidity = fmt.Sprintf("%.2f", environmentData.Humidity)
  67. vo.Pm10 = fmt.Sprintf("%.2f", environmentData.Pm10)
  68. vo.Noise = fmt.Sprintf("%.2f", environmentData.Noise)
  69. vo.Pressure = fmt.Sprintf("%.2f", environmentData.Hpa) //大气压
  70. vo.Direction = common.CalculateDirection(environmentData.WindDirection) //风向
  71. vo.RealTimeWindSpeed = common.CalculateSpeed(fmt.Sprintf("%.2f", environmentData.WindSpeed)) //风力等级
  72. return vo
  73. }