alarmService.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. //数据按时间范围 填充
  26. var list []model.ResponseAlarm
  27. for _, countDate := range countDates {
  28. //初始化所需数据
  29. var deviceType, count, notHandlerCount int
  30. for _, alarm := range alarms {
  31. date := alarm.CountTime
  32. if method == "month" {
  33. date = alarm.CountTime + "-01"
  34. }
  35. //如果是当当天数据,则赋值
  36. if date == countDate {
  37. deviceType = alarm.DeviceType
  38. count = alarm.Count
  39. notHandlerCount = alarm.NotHandlerCount
  40. }
  41. }
  42. list = append(list, model.ResponseAlarm{
  43. CountTime: countDate,
  44. DeviceType: strconv.Itoa(deviceType),
  45. CountT: count,
  46. CountUnsolve: notHandlerCount,
  47. CountSolve: count - notHandlerCount,
  48. })
  49. }
  50. if err != nil {
  51. return nil, err
  52. }
  53. return list, nil
  54. }