Report.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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\stations\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. $station_types = $this->getStationType();
  51. foreach ($station_types as $type) {
  52. $station_type_arr[$type['value']] = $type;
  53. }
  54. // 基站离线时间间隔
  55. $offline_interval = SysConfig::getConfigValueBy('station_offline_interval', 'station_config') ?? 86400;
  56. // 基站总数据
  57. $cursor = (new StationModel)->dataRange()->field('station_mac, station_type, online_time, created_at')->cursor();
  58. foreach ($cursor as $station) {
  59. $total_count++;
  60. // 按基站类型分类
  61. if (isset($station_type_arr[$station['station_type']])) {
  62. $key = $station_type_arr[$station['station_type']]['text'];
  63. } else {
  64. $key = '未知类型';
  65. }
  66. if (!isset($station_type_data[$key])) {
  67. $station_type_data[$key] = isset($station_type_arr[$station['station_type']]) ? $station_type_arr[$station['station_type']] : [];
  68. }
  69. // 总数量
  70. $station_type_data[$key]['total'] = isset($station_type_data[$key]['total']) ? ($station_type_data[$key]['total'] + 1) : 1;
  71. // 昨日新增
  72. $create_time = $station->getData('created_at');
  73. if ($today_time - $create_time > 0 && $today_time - $create_time < 86400) {
  74. $yesterday_add_count++;
  75. $station_type_data[$key]['yesterday_add'] = isset($station_type_data[$key]['yesterday_add']) ? ($station_type_data[$key]['yesterday_add'] + 1) : 1;
  76. }
  77. // 今日新增
  78. if ($today_time - $create_time <= 0) {
  79. $today_add_count++;
  80. $station_type_data[$key]['today_add'] = isset($station_type_data[$key]['today_add']) ? ($station_type_data[$key]['today_add'] + 1) : 1;
  81. }
  82. // 在线数
  83. if ($time - intval(strtotime($station['online_time'])) > $offline_interval) { // 离线时间,秒
  84. $online_count++;
  85. $station_type_data[$key]['online'] = isset($station_type_data[$key]['online']) ? ($station_type_data[$key]['online'] + 1) : 1;
  86. }
  87. }
  88. // 转化为输出数据
  89. $type_data = [];
  90. foreach ($station_type_data as $data) {
  91. $data['yesterday_add'] = isset($data['yesterday_add']) ? $data['yesterday_add'] : 0;
  92. $data['today_add'] = isset($data['today_add']) ? $data['today_add'] : 0;
  93. $data['online'] = isset($data['online']) ? $data['online'] : 0;
  94. $data['offline'] = $data['total'] - $data['online'];
  95. $type_data[] = $data;
  96. }
  97. return [
  98. 'station_total_count' => $total_count,
  99. 'station_online_count' => $online_count,
  100. 'station_offline_count' => $total_count - $online_count,
  101. 'station_yesterday_add_count' => $yesterday_add_count,
  102. 'station_today_add_count' => $today_add_count,
  103. 'station_type_data' => $type_data,
  104. ];
  105. }
  106. /**
  107. * 基站设备增长趋势数据
  108. */
  109. public function getStationGrowthTrendData($start_time = '', $end_time = '')
  110. {
  111. // 默认最近1周
  112. if (!$start_time) {
  113. $start_time = date('Y-m-d', strtotime('-6 day'));
  114. }
  115. if (!$end_time) {
  116. $end_time = date('Y-m-d');
  117. }
  118. // 获取基站类型
  119. $station_types = $this->getStationType();
  120. $data = [];
  121. $station_model = new StationModel();
  122. while ($start_time <= $end_time) {
  123. foreach($station_types as $type) {
  124. if (!isset($data[$type['text']]['name'])) {
  125. $data[$type['text']]['name'] = $type['text'];
  126. }
  127. $count = $station_model->dataRange()
  128. ->where('station_type', $type['value'])
  129. ->whereBetweenTime('created_at', 0, date('Y-m-d 23:59:59', strtotime($start_time)))
  130. ->count();
  131. // var_dump($station_model->getLastSql());
  132. $data[$type['text']]['data'][$start_time] = $count;
  133. }
  134. $start_time = date('Y-m-d', strtotime($start_time . ' +1 day'));
  135. }
  136. return array_values($data);
  137. }
  138. /**
  139. * 用户设备增长趋势数据
  140. */
  141. public function getDeviceGrowthTrendData($start_time = '', $end_time = '')
  142. {
  143. // 默认最近1周
  144. if (!$start_time) {
  145. $start_time = date('Y-m-d', strtotime('-6 day'));
  146. }
  147. if (!$end_time) {
  148. $end_time = date('Y-m-d');
  149. }
  150. // 获取设备类型
  151. $device_types = array(
  152. array('text'=>'法兰'),
  153. array('text'=>'液压泵'),
  154. array('text'=>'液压扳手'),
  155. );
  156. // var_dump($device_types);
  157. $data = [];
  158. $device_model = new DeviceModel();
  159. while ($start_time <= $end_time) {
  160. foreach($device_types as $type) {
  161. if (!isset($data[$type['text']]['name'])) {
  162. $data[$type['text']]['name'] = $type['text'];
  163. }
  164. // $count = $device_model->dataRange()
  165. // ->where('device_type', $type['value'])
  166. // ->whereBetweenTime('created_at', 0, date('Y-m-d 23:59:59', strtotime($start_time)))
  167. // ->count();
  168. $count=mt_rand(1,10);
  169. // var_dump($device_model->getLastSql());
  170. $data[$type['text']]['data'][$start_time] = $count;
  171. }
  172. $start_time = date('Y-m-d', strtotime($start_time . ' +1 day'));
  173. }
  174. return array_values($data);
  175. }
  176. /**
  177. * 部门数量数据:统计含本部门、及子部门数量
  178. */
  179. public function getDepartmentCountData()
  180. {
  181. $depart_ids = DepartmentModel::getChildrenDepartmentIds(request()->user()->department_id);
  182. // 去掉部门为0的
  183. $depart_ids = array_filter($depart_ids);
  184. return [
  185. 'department_count' => count($depart_ids),
  186. ];
  187. }
  188. /**
  189. * 设备用户数量统计
  190. */
  191. public function getDeviceUserCountData()
  192. {
  193. // 当前时间
  194. $now_time = time();
  195. // 离线时间间隔
  196. $offline_interval = SysConfig::getConfigValueBy('card_offline_interval', 'basic_config') ?: 86400;
  197. $offline_time = date('Y-m-d H:i:s', $now_time - $offline_interval); // 离线时间
  198. // 设备类型
  199. $device_types = $this->getDeviceType();
  200. $deviceModel = (new \catchAdmin\device\model\Device());
  201. $devices = $deviceModel->dataRange()
  202. ->field('id,device_type,alarm_state,online_time,wifi_online_time')
  203. ->append(['last_online_time'])
  204. ->select();
  205. // 总设备数
  206. $totle = 0;
  207. // 总在线设备数
  208. $totle_online = 0;
  209. // 按设备类型分组
  210. $device_type_data = [];
  211. foreach ($device_types as $type) {
  212. // 数量
  213. $type_count = $devices->where('device_type', $type['value'])->count();
  214. // 在线数量
  215. $type_online_count = $devices->where('device_type', $type['value'])->where('last_online_time', '>', $offline_time)->count();
  216. // 告警数量
  217. $type_alarm_count = $devices->where('device_type', $type['value'])->where('alarm_state', '>', 0)->count();
  218. $device_type_data[] = [
  219. 'text' => $type['text'], // 设备类型文本
  220. 'value' => $type['value'], // 设备类型值
  221. 'total' => $type_count,
  222. 'online' => $type_online_count,
  223. 'alarm' => $type_alarm_count,
  224. ];
  225. // 计算总数
  226. $totle += $type_count;
  227. // 计算总在线数
  228. $totle_online += $type_online_count;
  229. }
  230. return [
  231. 'device_total_count' => $totle,
  232. 'device_online_count' => $totle_online,
  233. 'device_type_data' => $device_type_data,
  234. ];
  235. }
  236. }