alarmService.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package service
  2. import (
  3. "iot_manager_service/app/operation/dao"
  4. "iot_manager_service/app/operation/model"
  5. "iot_manager_service/util/common"
  6. "strconv"
  7. )
  8. var AlarmService = new(alarmService)
  9. type alarmService struct{}
  10. func (s alarmService) GetDayList(tenantId string, req model.RequestAlarmFilter) ([]model.ResponseAlarm, error) {
  11. return s.getData("day", tenantId, req)
  12. }
  13. func (s alarmService) GetMonthList(tenantId string, req model.RequestAlarmFilter) ([]model.ResponseAlarm, error) {
  14. return s.getData("month", tenantId, req)
  15. }
  16. func (s alarmService) getData(method string, tenantId string, req model.RequestAlarmFilter) ([]model.ResponseAlarm, error) {
  17. alarmDao := dao.Alarm{TenantId: tenantId}
  18. alarms, err := alarmDao.Gets(req) //取报警数据
  19. var countDates []string
  20. if method == "month" {
  21. countDates = common.GetTimeMonths(req.StartTime, req.EndTime) //时间范围 月
  22. } else {
  23. countDates = common.GetTimeDays(req.StartTime, req.EndTime) //时间范围 天
  24. }
  25. //fmt.Printf("alarms = %v \n", alarms)
  26. //数据按时间范围 填充
  27. var list []model.ResponseAlarm
  28. for _, countDate := range countDates {
  29. //初始化所需数据
  30. var deviceType, count, notHandlerCount int
  31. for _, alarm := range alarms {
  32. date := alarm.CountTime
  33. if method == "month" {
  34. date = alarm.CountTime + "-01"
  35. }
  36. //如果是当当天数据,则赋值
  37. if date == countDate {
  38. deviceType = alarm.DeviceType
  39. count = alarm.Count
  40. notHandlerCount = alarm.NotHandlerCount
  41. }
  42. }
  43. list = append(list, model.ResponseAlarm{
  44. CountTime: countDate,
  45. DeviceType: strconv.Itoa(deviceType),
  46. CountT: count,
  47. CountUnsolve: notHandlerCount,
  48. CountSolve: count - notHandlerCount,
  49. })
  50. }
  51. if err != nil {
  52. return nil, err
  53. }
  54. return list, nil
  55. }