environmentService.go 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package service
  2. import (
  3. "fmt"
  4. "iot_manager_service/app/data/dao"
  5. "iot_manager_service/app/data/service"
  6. dataService "iot_manager_service/app/data/service"
  7. deviceService "iot_manager_service/app/device/service"
  8. "iot_manager_service/app/operation/model"
  9. "iot_manager_service/util/common"
  10. "time"
  11. )
  12. var EnvironmentService = new(environmentService)
  13. type environmentService struct{}
  14. func (s *environmentService) EnvironmentList(tenantId string, ) ([]model.EnvironmentDetail, *common.Errors) {
  15. var result []model.EnvironmentDetail
  16. devices := deviceService.OptoSensorService.GetByTenant(tenantId)
  17. for _, d := range devices {
  18. detail := model.EnvironmentDetail{CreateDate: d.CreateTime, Name: d.Name, Sn: d.Sn}
  19. data := dataService.EnvironmentDataService.Get(d.ID)
  20. detail.CreateDate = data.PostTime
  21. if data != nil {
  22. detail.EnvironmentData = *data
  23. }
  24. lampPole, _ := deviceService.LampPoleService.GetOne(d.LampPoleId)
  25. if lampPole != nil {
  26. detail.LampPoleLocation = lampPole.InstallLocation
  27. detail.LampLat = fmt.Sprintf("%f", lampPole.PoleLat)
  28. detail.LampLng = fmt.Sprintf("%f", lampPole.PoleLng)
  29. }
  30. result = append(result, detail)
  31. }
  32. return result, nil
  33. }
  34. func (s *environmentService) Get(id int) (model.EnvironmentDetail, *common.Errors) {
  35. var result model.EnvironmentDetail
  36. device := deviceService.OptoSensorService.GetOne(id)
  37. if device == nil {
  38. return result, nil
  39. }
  40. detail := model.EnvironmentDetail{CreateDate: device.CreateTime, Name: device.Name, Sn: device.Sn, LampPoleLocation: device.LampPoleLocation}
  41. data := dataService.EnvironmentDataService.Get(device.ID)
  42. if data != nil {
  43. detail.EnvironmentData = *data
  44. }
  45. return detail, nil
  46. }
  47. func (s *environmentService) GetHistoryData(id int, scope string, queryType int, start,
  48. end time.Time) ([]dao.EnvironmentData, error) {
  49. isDay := 0
  50. if scope == "day" {
  51. isDay = 1
  52. }
  53. data, err := service.EnvironmentDataService.GetData(id, isDay, start, end)
  54. if err != nil {
  55. return nil, err
  56. }
  57. return data, nil
  58. }
  59. func (s *environmentService) GetScopeData(id int, scope string, queryType int) (interface{}, error) {
  60. isDay := 0
  61. if scope == "day" {
  62. isDay = 1
  63. }
  64. data, err := service.EnvironmentDataService.GetScopeData(id, isDay, queryType)
  65. if err != nil {
  66. return nil, err
  67. }
  68. return data, nil
  69. }