Preview.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?php
  2. namespace catchAdmin\screen\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\system\model\SysDictData;
  7. use catchAdmin\permissions\model\SysConfig;
  8. use think\facade\Db;
  9. use catchAdmin\permissions\model\DataRangScopeTrait;
  10. use catchAdmin\alarm\model\AlarmRecords as alarmRecordsModel;
  11. use catchAdmin\alarm\model\AlarmReport as alarmReportModel;
  12. use catchAdmin\stations\model\Station as stationModel;
  13. use catchAdmin\permissions\model\Users as usersModel;
  14. class Preview extends CatchController
  15. {
  16. use DataRangScopeTrait;
  17. protected $alarmRecordsModel;
  18. protected $alarmReportModel;
  19. protected $stationModel;
  20. protected $usersModel;
  21. public function __construct(alarmReportModel $alarmReportModel,alarmRecordsModel $alarmRecordsModel,stationModel $stationModel,usersModel $usersModel)
  22. {
  23. $this->alarmReportModel = $alarmReportModel;
  24. $this->alarmRecordsModel = $alarmRecordsModel;
  25. $this->stationModel = $stationModel;
  26. $this->usersModel = $usersModel;
  27. }
  28. function randFloat($min=0, $max=1){
  29. return $min + mt_rand()/mt_getrandmax() * ($max-$min);
  30. }
  31. /**
  32. * 获取地图上所有设备地址 以及信号统计 井类型统计
  33. *
  34. */
  35. public function getDeviceAddressList(){
  36. // $deviceList=$this->mainDevice->select()->toArray();
  37. $start=$_REQUEST['start']?$_REQUEST['start']*10000:0;
  38. $limit=$_REQUEST['limit']?:10000;
  39. // $deviceList=$this->deviceModel->dataRange()->limit($start,$limit)->cache(60)->column('id,point_x,point_y,addr,well_type');
  40. // var_dump($deviceList);
  41. $addrList=array();
  42. for($i=0;$i<50;$i++){
  43. $a=mt_rand();
  44. $b=mt_getrandmax();
  45. $c=$a/$b;
  46. $lng=mt_rand(100, 118)+$c;
  47. $lat=mt_rand(25, 35)+$c;
  48. // var_dump($lng);
  49. // var_dump($lat);
  50. $item=array('value'=>[$lng, $lat],'name'=>"测试风场".$i,'address'=>'风场位置'.$i,'number'=>mt_rand(0, 20));
  51. array_push($addrList,$item);
  52. }
  53. // foreach($deviceList as $val){
  54. // $item=array('value'=>[$val['point_y'], $val['point_x']],'name'=>$val['addr']);
  55. // array_push($addrList,$item);
  56. // }
  57. $res['addrList']=$addrList;
  58. // $res['total']=$this->deviceModel->dataRange()->count();
  59. $res['total']=80;
  60. return CatchResponse::success($res);
  61. }
  62. /**
  63. * 获取智能插座统计
  64. *
  65. */
  66. public function getSocketStationTotal(){
  67. // $deviceList=$this->mainDevice->select()->toArray();
  68. $request_interval=Db::table("sys_config")->where('type','station_config')->where('field','request_interval')->value('fieldValue');
  69. $online_time=date('Y-m-d H:i:s',time()-$request_interval);
  70. $res=[];
  71. $res['tatol']=$this->stationModel->dataRange()->where('station_type',3)->count();
  72. $res['online']=$this->stationModel->dataRange()->where('station_type',3)->where('online_time','>',$online_time)->count();
  73. $res['offline']=$res['tatol']-$res['online'];
  74. $yAxisData[]=$res['tatol'];
  75. $yAxisData[]=$res['online'];
  76. $yAxisData[]=$res['offline'];
  77. $xAxisData=["总数", "在线", "离线"];//X轴坐标
  78. $total=array('yAxisData'=>$yAxisData,'xAxisData'=>$xAxisData);
  79. return CatchResponse::success($total);
  80. }
  81. /**
  82. * 电子校徽统计
  83. *
  84. */
  85. public function getSchoolBadgeTotal(){
  86. $online_time=date('Y-m-d',time()).' 00:00:00';
  87. $res=[];
  88. $res['tatol']=$this->usersModel->dataRange()->where('card_type',2)->count();
  89. $res['online']=$this->usersModel->dataRange()->where('card_type',2)->where('online_time','>',$online_time)->count();
  90. $res['offline']=$res['tatol']-$res['online'];
  91. $yAxisData[]=$res['tatol'];
  92. $yAxisData[]=$res['online'];
  93. $yAxisData[]=$res['offline'];
  94. $yAxisData[]=0;
  95. $xAxisData=["总数", "在线", "离线",'围栏内'];//X轴坐标
  96. $total=array('yAxisData'=>$yAxisData,'xAxisData'=>$xAxisData);
  97. return CatchResponse::success($total);
  98. }
  99. /**
  100. * 设备月告警统计
  101. *
  102. */
  103. public function deviceMonthAlarmData(){
  104. $xAxisData = [];
  105. $yAxisData = [];
  106. for ($i=1; $i<=30; $i++){
  107. $day = date('Y-m-d' ,strtotime( '+' . $i-30 .' days', time()));
  108. array_push($xAxisData,$day);
  109. $count=$this->alarmReportModel->dataRange()->where('alarm_time','between',[$day." 00:00:00",$day." 23:59:59"])->count();
  110. //模拟数量
  111. $count+=mt_rand(0,10);
  112. array_push($yAxisData,$count);
  113. }
  114. $res=array('yAxisData'=>$yAxisData,'xAxisData'=>$xAxisData);
  115. return CatchResponse::success($res);
  116. }
  117. /**
  118. *围栏告警统计
  119. *
  120. */
  121. public function realTimeAlarmData(){
  122. $time=date("Y-m-d"." 00:00:00",time());
  123. $alarm_list = $this->alarmReportModel
  124. ->dataRange()
  125. ->field('id,active_rfid,created_at,alarm_type,alarm_time')
  126. ->where('alarm_time','>',$time)
  127. ->whereIn('alarm_type','fence_in,fence_out')
  128. ->select()->toArray();
  129. $type_id = Db::table("sys_dict_type")->where('code','AlarmReason')->value('id');
  130. $scrollData=[];
  131. foreach($alarm_list as $val){
  132. $alarm_type = Db::table("sys_dict_data")->where(['type_id'=>$type_id,'code'=>$val['alarm_type']])->value('value');
  133. $scrollItem=array('date'=>$val['alarm_time'],'title'=>'学生'.substr($val['active_rfid'],-5).'发生了'.$alarm_type);
  134. array_push($scrollData,$scrollItem);
  135. }
  136. $res=array('scrollData'=>$scrollData);
  137. return CatchResponse::success($res);
  138. }
  139. /**
  140. *SOS告警统计
  141. *
  142. */
  143. public function getSosScrollAlarmData(){
  144. $time=date("Y-m-d"." 00:00:00",time());
  145. $alarm_list = $this->alarmReportModel->dataRange()->where('alarm_time','>',$time)->where('alarm_type','press')->select()->toArray();
  146. foreach($alarm_list as &$val){
  147. $urgent_list=Db::table('kq_urgent')->where('student_id',$val['student_id'])->column('name,phone');
  148. $urgent_text='';
  149. foreach($urgent_list as $item){
  150. $urgent_text .=$item['name'].'('.$item['phone'].'),';
  151. }
  152. $urgent_text=trim($urgent_text,',');
  153. $val['urgent_text']=$urgent_text;
  154. }
  155. return CatchResponse::success($alarm_list);
  156. }
  157. }