AlarmReport.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?php
  2. namespace catchAdmin\alarm\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\alarm\model\AlarmReport as AlarmReportModel;
  7. use catchAdmin\system\model\SysDictData as SysDictDataModel;
  8. class AlarmReport extends CatchController
  9. {
  10. protected $alarmReportModel;
  11. protected $sysDictDataModel;
  12. public function __construct(AlarmReportModel $alarmReportModel, SysDictDataModel $sysDictDataModel)
  13. {
  14. $this->alarmReportModel = $alarmReportModel;
  15. $this->sysDictDataModel = $sysDictDataModel;
  16. }
  17. /**
  18. * 列表
  19. * @time 2021年05月27日 15:12
  20. * @param Request $request
  21. */
  22. public function index(Request $request) : \think\Response
  23. {
  24. return CatchResponse::paginate($this->alarmReportModel->getList());
  25. }
  26. /**
  27. * 保存信息
  28. * @time 2021年05月27日 15:12
  29. * @param Request $request
  30. */
  31. public function save(Request $request) : \think\Response
  32. {
  33. return CatchResponse::success($this->alarmReportModel->storeBy($request->post()));
  34. }
  35. /**
  36. * 读取
  37. * @time 2021年05月27日 15:12
  38. * @param $id
  39. */
  40. public function read($id) : \think\Response
  41. {
  42. return CatchResponse::success($this->alarmReportModel->findBy($id));
  43. }
  44. /**
  45. * 更新
  46. * @time 2021年05月27日 15:12
  47. * @param Request $request
  48. * @param $id
  49. */
  50. public function update(Request $request, $id) : \think\Response
  51. {
  52. return CatchResponse::success($this->alarmReportModel->updateBy($id, $request->post()));
  53. }
  54. /**
  55. * 删除
  56. * @time 2021年05月27日 15:12
  57. * @param $id
  58. */
  59. public function delete($id) : \think\Response
  60. {
  61. return CatchResponse::success($this->alarmReportModel->deleteBy($id));
  62. }
  63. /**
  64. * 详情
  65. * @time 2021年06月15日 16:12
  66. * @param $id
  67. */
  68. public function detail($id) : \think\Response
  69. {
  70. return CatchResponse::success($this->alarmReportModel->getDetail($id));
  71. }
  72. /**
  73. * 告警总增长趋势
  74. * @time 2021年06月15日 16:12
  75. */
  76. public function totalGrowth(Request $request) : \think\Response
  77. {
  78. $params = $request->param();
  79. // 默认取最近15天
  80. if (!isset($params['start_date']) || !$params['start_date']) {
  81. $start_date = date('Y-m-d', strtotime('-14 day'));
  82. } else {
  83. $start_date = $request->param('start_date');
  84. }
  85. if (!isset($params['end_date']) || !$params['end_date']) {
  86. $end_date = date('Y-m-d');
  87. } else {
  88. $end_date = $request->param('end_date');
  89. }
  90. // 查出告警类型
  91. $alarm_types = $this->sysDictDataModel->getTypesByCode('AlarmReason');
  92. $datas = [];
  93. while ($start_date <= $end_date) {
  94. $growth_data = $this->alarmReportModel->getTotalGrowthCountByDate($start_date);
  95. foreach ($alarm_types as $type) {
  96. // 无告警数据
  97. if ($growth_data->isEmpty()) {
  98. $datas[$type['text']][] = [
  99. 'date' => $start_date,
  100. // 'value' => 0,
  101. 'value' => mt_rand(0,9),
  102. ];
  103. continue;
  104. }
  105. $temp_data = [
  106. 'date' => $start_date,
  107. 'value' => 0,
  108. ];
  109. foreach ($growth_data as $data) {
  110. if ($data['alarm_type'] == $type['value']) {
  111. $temp_data['value'] = $data['count'];
  112. break;
  113. }
  114. }
  115. $datas[$type['text']][] = $temp_data;
  116. }
  117. $start_date = date('Y-m-d', strtotime("{$start_date} +1 day"));
  118. }
  119. return CatchResponse::success($datas);
  120. }
  121. }