AlarmReportGet.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. namespace catchAdmin\alarm\model\get;
  3. use catchAdmin\system\model\SysDictData;
  4. use Exception;
  5. use think\facade\Db;
  6. trait AlarmReportGet
  7. {
  8. /**
  9. * 获取告警类型名称
  10. */
  11. public function getAlarmTypeNameAttr($value)
  12. {
  13. $type = $this->getAttr('alarm_type');
  14. if (is_null($type)) {
  15. return '';
  16. }
  17. return $this->getDictValue('AlarmType', $type);
  18. }
  19. /**
  20. * 在线时间时间戳
  21. *
  22. */
  23. public function getAlarmTimeStrAttr($value)
  24. {
  25. return strtotime($this->alarm_time);
  26. }
  27. /**
  28. * 在线时间时间戳
  29. *
  30. */
  31. public function getRealnameAttr($value)
  32. {
  33. return '测试设备';
  34. }
  35. /**
  36. * 在线时间时间戳
  37. *
  38. */
  39. public function getIsSentAttr($value)
  40. {
  41. return $this->getDictValue('ReportSentStr', $value);
  42. }
  43. /*
  44. * 获取字典值(文本)
  45. */
  46. public function getDictValue($typeCode,$value)
  47. {
  48. return (new SysDictData())->getValueByCode($typeCode,$value);
  49. }
  50. /*
  51. * 获取推送结果
  52. */
  53. public function getSentResultAttr($value)
  54. {
  55. $id = $this->getAttr('id');
  56. $list=Db::table('wx_push_result_log')->where('alarm_id',$id)->select();
  57. $success=0;
  58. $fail=0;
  59. foreach($list as $val){
  60. $res=json_decode($val['result'],true);
  61. if($res['success'] && $res['message']=='ok'){
  62. $success++;
  63. }else{
  64. $fail++;
  65. }
  66. }
  67. return '成功'.$success.'条,失败'.$fail.'条';
  68. }
  69. }