Report.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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\device\model\Station as StationModel;
  8. use catchAdmin\device\model\Device as DeviceModel;
  9. use catchAdmin\school\model\KqBuilding as BuildingModel;
  10. use catchAdmin\permissions\model\Users as UsersModel;
  11. use catchAdmin\permissions\model\Department as DepartmentModel;
  12. use catchAdmin\permissions\model\Roles;
  13. use catchAdmin\system\model\SysDictData as SysDictDataModel;
  14. use catchAdmin\system\model\SysDictType as SysDictTypeModel;
  15. use catchAdmin\permissions\model\SysConfig;
  16. class Report extends CatchModel
  17. {
  18. //权限过滤
  19. use DataRangScopeTrait;
  20. protected $name = 'report';
  21. protected $field = [];
  22. /**
  23. * 获取所有基站类型
  24. */
  25. public function getStationType()
  26. {
  27. return (new SysDictDataModel())->getTypesByCode('StationType');
  28. }
  29. /**
  30. * 获取所有用户设备类型
  31. */
  32. public function getDeviceType()
  33. {
  34. return (new SysDictDataModel())->getTypesByCode('DeviceType');
  35. }
  36. /**
  37. * 基站数量数据
  38. */
  39. public function getStationCountData()
  40. {
  41. $station_type_arr = []; // 基站类型数组
  42. $total_count = 0; // 基站总数量
  43. $online_count = 0; // 基站总在线数量
  44. $yesterday_add_count = 0; // 基站昨日新增总数
  45. $today_add_count = 0; // 基站今日新增总数
  46. $station_type_data = [];
  47. $time = time();
  48. $today_time = strtotime(date('Y-m-d'));
  49. // 基站离线时间间隔
  50. $offline_interval = SysConfig::getConfigValueBy('station_offline_interval', 'station_config') ?? 86400;
  51. // 基站总数据
  52. $cursor = (new StationModel)->dataRange()->field('mac, online_time, created_at')->cursor();
  53. foreach ($cursor as $station) {
  54. $total_count++;
  55. // 昨日新增
  56. $create_time = $station->getData('created_at');
  57. if ($today_time - $create_time > 0 && $today_time - $create_time < 86400) {
  58. $yesterday_add_count++;
  59. }
  60. // 今日新增
  61. if ($today_time - $create_time <= 0) {
  62. $today_add_count++;
  63. }
  64. // 在线数
  65. if ($time - intval(strtotime($station['online_time'])) > $offline_interval) { // 离线时间,秒
  66. $online_count++;
  67. }
  68. }
  69. return [
  70. 'station_total_count' => $total_count,
  71. 'station_online_count' => $online_count,
  72. 'station_offline_count' => $total_count - $online_count,
  73. 'station_yesterday_add_count' => $yesterday_add_count,
  74. 'station_today_add_count' => $today_add_count,
  75. ];
  76. }
  77. /**
  78. * 基站设备增长趋势数据
  79. */
  80. public function getStationGrowthTrendData($start_time = '', $end_time = '')
  81. {
  82. // 默认最近1周
  83. if (!$start_time) {
  84. $start_time = date('Y-m-d', strtotime('-6 day'));
  85. }
  86. if (!$end_time) {
  87. $end_time = date('Y-m-d');
  88. }
  89. // 获取基站类型
  90. $station_types = $this->getStationType();
  91. $data = [];
  92. $station_model = new StationModel();
  93. while ($start_time <= $end_time) {
  94. foreach($station_types as $type) {
  95. if (!isset($data[$type['text']]['name'])) {
  96. $data[$type['text']]['name'] = $type['text'];
  97. }
  98. $count = $station_model->dataRange()
  99. ->where('station_type', $type['value'])
  100. ->whereBetweenTime('created_at', 0, date('Y-m-d 23:59:59', strtotime($start_time)))
  101. ->count();
  102. // var_dump($station_model->getLastSql());
  103. $data[$type['text']]['data'][$start_time] = $count;
  104. }
  105. $start_time = date('Y-m-d', strtotime($start_time . ' +1 day'));
  106. }
  107. return array_values($data);
  108. }
  109. /**
  110. * 用户设备增长趋势数据
  111. */
  112. public function getDeviceGrowthTrendData($start_time = '', $end_time = '')
  113. {
  114. // 默认最近1周
  115. if (!$start_time) {
  116. $start_time = date('Y-m-d', strtotime('-6 day'));
  117. }
  118. if (!$end_time) {
  119. $end_time = date('Y-m-d');
  120. }
  121. // 获取设备类型
  122. $device_types = $this->getDeviceType();
  123. $data = [];
  124. $device_model = new DeviceModel();
  125. while ($start_time <= $end_time) {
  126. foreach($device_types as $type) {
  127. if (!isset($data[$type['text']]['name'])) {
  128. $data[$type['text']]['name'] = $type['text'];
  129. }
  130. $count = $device_model->dataRange()
  131. ->where('device_type', $type['value'])
  132. ->whereBetweenTime('created_at', 0, date('Y-m-d 23:59:59', strtotime($start_time)))
  133. ->count();
  134. // var_dump($device_model->getLastSql());
  135. $data[$type['text']]['data'][$start_time] = $count;
  136. }
  137. $start_time = date('Y-m-d', strtotime($start_time . ' +1 day'));
  138. }
  139. return array_values($data);
  140. }
  141. /**
  142. * 部门数量数据:统计含本部门、及子部门数量
  143. */
  144. public function getDepartmentCountData()
  145. {
  146. $depart_ids = DepartmentModel::getChildrenDepartmentIds(request()->user()->department_id);
  147. // 去掉部门为0的
  148. $depart_ids = array_filter($depart_ids);
  149. return [
  150. 'department_count' => count($depart_ids),
  151. ];
  152. }
  153. /**
  154. * 设备用户数量统计
  155. */
  156. public function getDeviceUserCountData()
  157. {
  158. // 当前时间
  159. $now_time = time();
  160. // 离线时间间隔
  161. $offline_interval = SysConfig::getConfigValueBy('card_offline_interval', 'basic_config') ?: 86400;
  162. $offline_time = date('Y-m-d H:i:s', $now_time - $offline_interval); // 离线时间
  163. $deviceModel = (new \catchAdmin\device\model\Device());
  164. $devices = $deviceModel->dataRange()
  165. ->field('id,alarm_state,online_time,wifi_online_time')
  166. ->append(['last_online_time'])
  167. ->select();
  168. // 总设备数
  169. $totle = $devices->count();
  170. // 总在线设备数
  171. $totle_online = $devices->where('last_online_time', '>', $offline_time)->count();
  172. return [
  173. 'device_total_count' => $totle,
  174. 'device_online_count' => $totle_online,
  175. ];
  176. }
  177. }