Report.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?php
  2. namespace catchAdmin\report\model;
  3. use catcher\base\CatchModel;
  4. use catcher\exceptions\FailedException;
  5. use catcher\Utils;
  6. use catchAdmin\permissions\model\DataRangScopeTrait;
  7. use catchAdmin\permissions\model\Users as UsersModel;
  8. use catchAdmin\permissions\model\Department as DepartmentModel;
  9. use catchAdmin\permissions\model\Roles;
  10. use catchAdmin\system\model\SysDictData as SysDictDataModel;
  11. use catchAdmin\system\model\SysDictType as SysDictTypeModel;
  12. use catchAdmin\permissions\model\SysConfig;
  13. class Report extends CatchModel
  14. {
  15. //权限过滤
  16. use DataRangScopeTrait;
  17. protected $name = 'report';
  18. protected $field = [];
  19. /**
  20. * 获取所有基站类型
  21. */
  22. public function getStationType()
  23. {
  24. return (new SysDictDataModel())->getTypesByCode('StationType');
  25. }
  26. /**
  27. * 获取所有用户设备类型
  28. */
  29. public function getDeviceType()
  30. {
  31. return (new SysDictDataModel())->getTypesByCode('DeviceType');
  32. }
  33. /**
  34. * 基站设备增长趋势数据
  35. */
  36. public function getStationGrowthTrendData($start_time = '', $end_time = '')
  37. {
  38. // 默认最近1周
  39. if (!$start_time) {
  40. $start_time = date('Y-m-d', strtotime('-6 day'));
  41. }
  42. if (!$end_time) {
  43. $end_time = date('Y-m-d');
  44. }
  45. // 获取基站类型
  46. $station_types = $this->getStationType();
  47. $data = [];
  48. $station_model = new StationModel();
  49. while ($start_time <= $end_time) {
  50. foreach($station_types as $type) {
  51. if (!isset($data[$type['text']]['name'])) {
  52. $data[$type['text']]['name'] = $type['text'];
  53. }
  54. $count = $station_model->dataRange()
  55. ->where('station_type', $type['value'])
  56. ->whereBetweenTime('created_at', 0, date('Y-m-d 23:59:59', strtotime($start_time)))
  57. ->count();
  58. // var_dump($station_model->getLastSql());
  59. $data[$type['text']]['data'][$start_time] = $count;
  60. }
  61. $start_time = date('Y-m-d', strtotime($start_time . ' +1 day'));
  62. }
  63. return array_values($data);
  64. }
  65. /**
  66. * 用户设备增长趋势数据
  67. */
  68. public function getDeviceGrowthTrendData($start_time = '', $end_time = '')
  69. {
  70. // 默认最近1周
  71. if (!$start_time) {
  72. $start_time = date('Y-m-d', strtotime('-6 day'));
  73. }
  74. if (!$end_time) {
  75. $end_time = date('Y-m-d');
  76. }
  77. // 获取设备类型
  78. $device_types = array(
  79. array('text'=>'法兰'),
  80. array('text'=>'液压泵'),
  81. array('text'=>'液压扳手'),
  82. );
  83. // var_dump($device_types);
  84. $data = [];
  85. while ($start_time <= $end_time) {
  86. foreach($device_types as $type) {
  87. if (!isset($data[$type['text']]['name'])) {
  88. $data[$type['text']]['name'] = $type['text'];
  89. }
  90. $count=mt_rand(1,10);
  91. $data[$type['text']]['data'][$start_time] = $count;
  92. }
  93. $start_time = date('Y-m-d', strtotime($start_time . ' +1 day'));
  94. }
  95. return array_values($data);
  96. }
  97. /**
  98. * 部门数量数据:统计含本部门、及子部门数量
  99. */
  100. public function getDepartmentCountData()
  101. {
  102. $depart_ids = DepartmentModel::getChildrenDepartmentIds(request()->user()->department_id);
  103. // 去掉部门为0的
  104. $depart_ids = array_filter($depart_ids);
  105. return [
  106. 'department_count' => count($depart_ids),
  107. ];
  108. }
  109. /**
  110. * 设备用户数量统计
  111. */
  112. public function getDeviceUserCountData()
  113. {
  114. // 当前时间
  115. $now_time = time();
  116. // 离线时间间隔
  117. $offline_interval = SysConfig::getConfigValueBy('card_offline_interval', 'basic_config') ?: 86400;
  118. $offline_time = date('Y-m-d H:i:s', $now_time - $offline_interval); // 离线时间
  119. // 设备类型
  120. $device_types = $this->getDeviceType();
  121. $deviceModel = (new \catchAdmin\device\model\Device());
  122. $devices = $deviceModel->dataRange()
  123. ->field('id,device_type,alarm_state,online_time,wifi_online_time')
  124. ->append(['last_online_time'])
  125. ->select();
  126. // 总设备数
  127. $totle = 0;
  128. // 总在线设备数
  129. $totle_online = 0;
  130. // 按设备类型分组
  131. $device_type_data = [];
  132. foreach ($device_types as $type) {
  133. // 数量
  134. $type_count = $devices->where('device_type', $type['value'])->count();
  135. // 在线数量
  136. $type_online_count = $devices->where('device_type', $type['value'])->where('last_online_time', '>', $offline_time)->count();
  137. // 告警数量
  138. $type_alarm_count = $devices->where('device_type', $type['value'])->where('alarm_state', '>', 0)->count();
  139. $device_type_data[] = [
  140. 'text' => $type['text'], // 设备类型文本
  141. 'value' => $type['value'], // 设备类型值
  142. 'total' => $type_count,
  143. 'online' => $type_online_count,
  144. 'alarm' => $type_alarm_count,
  145. ];
  146. // 计算总数
  147. $totle += $type_count;
  148. // 计算总在线数
  149. $totle_online += $type_online_count;
  150. }
  151. return [
  152. 'device_total_count' => $totle,
  153. 'device_online_count' => $totle_online,
  154. 'device_type_data' => $device_type_data,
  155. ];
  156. }
  157. }