Api.php 50 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231
  1. <?php
  2. namespace catchAdmin\api\controller;
  3. use catchAdmin\api\service\dispose;
  4. use catchAdmin\tag_history\model\Access;
  5. use catchAdmin\tag_history\model\Dormitory;
  6. use catchAdmin\tag_history\model\TagHistory;
  7. use catchAdmin\worklocation\model\WorkRecord as ModelWorkRecord;
  8. use catcher\base\CatchRequest as Request;
  9. use catcher\CatchResponse;
  10. use catcher\base\CatchController;
  11. use Exception;
  12. use think\facade\Cache;
  13. use \think\facade\Db;
  14. error_reporting(0);
  15. class Api extends CatchController
  16. {
  17. public function report()
  18. {
  19. $token = $_GET['token'];
  20. if (!$token || $token != '22723927C') {
  21. json_fail('缺少token或者token不对');
  22. }
  23. $param = json_decode(optimize_json(file_get_contents("php://input")), true);
  24. debug_log("上报数据",json_encode($param));
  25. if (json_last_error() != 0) {
  26. json_fail('解析异常', json_last_error_msg());
  27. }
  28. $mac = $param['mac'];
  29. if (empty($mac)) {
  30. json_fail('mac地址不存在');
  31. }
  32. $data = [];
  33. foreach ($param['list'] as $item) {
  34. // $onetime= TagHistory::where("mac",$mac)->where('lable',$item['label'])->order("id","desc")->value("time");
  35. $data[] = [
  36. 'mac' => $mac,
  37. 'lable' => $item['label'],
  38. 'rssi' => $item['rssi'],
  39. 'time' => $item['time'],
  40. 'addTime' => time(),
  41. 'move' => $item['move'],
  42. 'step' => empty($item['step']) ? 0 : $item['step'],
  43. 'temperature' => empty($item['temperature']) ? 0 : $item['temperature'],
  44. //告警
  45. 'temperWarn' => empty($item['temperWarn']) ? 00 : $item['temperWarn'],
  46. // "interval_time"=>empty($onetime) ?0:($item['time']-$onetime)
  47. ];
  48. }
  49. $tage = new TagHistory();
  50. $tage->saveAll($data);
  51. json_success('上传成功');
  52. }
  53. //储存数据到redis
  54. public function redis_to_mysql(){
  55. $ues_redis=Cache::store('redis')->handler();
  56. $dispose = new dispose($ues_redis);
  57. $text=null;
  58. while(1){
  59. $jsonData= $ues_redis->rpop("mqtt_data");
  60. if(empty($jsonData)){
  61. sleep(1);
  62. continue;
  63. }
  64. debug_log("InAndOUT",'数据redis'.$jsonData);
  65. $data=json_decode($jsonData,true);
  66. $time=$data['time'];
  67. $mac=$data['devId'];
  68. //存入基站的最新时间
  69. $dispose->setStations($mac,$time);
  70. $list=[];
  71. $text=$text.$data['cnt'];
  72. if(strlen($text)<24){
  73. continue;
  74. }
  75. while(strlen($text)>=24){
  76. $da=substr($text,0,24);
  77. $t1 = substr($da,8,2)=='00'||substr($da,8,2)=='10'||substr($da,8,2)=='01' ? true:false;
  78. $t2 =substr($da,10,6)=="FFFFFF"||substr($da,10,6)=="000000" ?true:false;
  79. if($t1&&$t2){
  80. $label= substr($da,0,8);
  81. $rssi1= substr($da,16,2);
  82. $rssi2= substr($da,18,2);
  83. $rssi3= substr($da,20,2);
  84. $rssi4= substr($da,22,2);
  85. $DA=[
  86. 'mac' => $mac,
  87. 'label' =>$label,
  88. 'rssi1' => hexdec($rssi1),
  89. 'rssi2' => hexdec($rssi2),
  90. 'rssi3' => hexdec($rssi3),
  91. 'rssi4' => hexdec($rssi4),
  92. 'report_time'=>$time
  93. ];
  94. $vs=false;
  95. $history_status=false;
  96. $DA['other_time']=date("Y-m-d H:i:s",$time);
  97. //打印原始的数据日志
  98. debug_log("label_log","cssh: ".json_encode($DA));
  99. if($DA['rssi1']<=85||$DA['rssi2']<=85||$DA['rssi3']<=85||$DA['rssi4']<=85){
  100. //原始数据只要其中有一条信号小于85 都存入redis 历史数据
  101. $history_status=true;
  102. }
  103. if($DA['rssi1']<=72||$DA['rssi2']<=72||$DA['rssi3']<=72||$DA['rssi4']<=72){
  104. //原始数据只要其中有一条信号小于72 都参与计算
  105. $vs=true;
  106. }
  107. $DA['rssi1']=$DA['rssi1']==255?100:$DA['rssi1'];
  108. $DA['rssi2']=$DA['rssi2']==255?100:$DA['rssi2'];
  109. $DA['rssi3']=$DA['rssi3']==255?100:$DA['rssi3'];
  110. $DA['rssi4']=$DA['rssi4']==255?100:$DA['rssi4'];
  111. $DA["rssi1"]=$DA["rssi1"]<=$DA["rssi3"]?$DA["rssi1"]:$DA["rssi3"];
  112. $DA["rssi2"]=$DA["rssi2"]<=$DA["rssi4"]?$DA["rssi2"]:$DA["rssi4"];
  113. /**
  114. * 缓存到redis中历史数据
  115. */
  116. if(substr($da,8,2)=='01'&&$history_status&&$DA["rssi1"]!=$DA["rssi2"]){
  117. debug_log("label_log","cache: ".json_encode($DA));
  118. $diff= $DA["rssi1"]-$DA["rssi2"];
  119. if(abs($diff)>2){
  120. //历史数据朝前和朝后的信号的差值大于2参与存储
  121. $dispose->set_label_history($DA);
  122. }
  123. debug_log("label_log","cache_diff: ".$diff);
  124. }
  125. /**
  126. * 参与计算的数据
  127. */
  128. if($vs&&(substr($da,8,2)=='01')){
  129. try{
  130. $DA= $dispose->check_data($DA);
  131. //处理的数据参与计算
  132. debug_log("label_log","xsj:".json_encode($DA));
  133. $dispose->computeResout($DA);
  134. }catch(Exception $e){
  135. debug_log("InAndOUT","抛出异常:".$e->getMessage());
  136. }
  137. }
  138. $text=substr($text,24);
  139. }else{
  140. $text=substr($text,1);
  141. }
  142. }
  143. }
  144. }
  145. public function redis_to_mysql2(){
  146. $redis=Cache::store('redis')->handler();
  147. // $dispose = new dispose($redis);
  148. $text=null;
  149. while(1){
  150. $jsonData= $redis->rpop("asset_after_handle");
  151. if(empty($jsonData)){
  152. sleep(1);
  153. continue;
  154. }
  155. // $jsonData= '{"mac": "01396C","data": [{"label": "230600070007","time": 1691128977,"ant": 1,"rssi": 19}]}';
  156. $list=json_decode($jsonData,true);
  157. $redis=Cache::store('redis')->handler();
  158. $received_state=$redis->hget('api_receiver_asset_state', 'accessClassReport');
  159. $mac=$list['mac'];
  160. foreach($list['data'] as $val){
  161. //1 3外 2 4内
  162. if($val['ant']=='3'){
  163. $val['ant']='1';
  164. }elseif($val['ant']=='4'){
  165. $val['ant']='2';
  166. }
  167. $report_data=[
  168. 'mac' => $mac,
  169. 'label' =>$val['label'],
  170. 'rssi' =>$val['rssi'],
  171. 'ant' =>$val['ant'],
  172. 'time'=>$val['time']
  173. ];
  174. $countKey='station_receive_count_data';
  175. $key=$mac.'_'.$val['label'];
  176. $count_data=$redis->hGet($countKey,$key);
  177. if($count_data){
  178. $count_data++;
  179. }else{
  180. $count_data=1;
  181. }
  182. $redis->hSet($countKey,$key,$count_data);
  183. // var_dump($report_data);
  184. debug_log("redis_to_mysql2_data",'mac:'. $mac.' label:'.$val['label'].' ant:'.$val['ant'].' time:'.date('Y-m-d H:i:s',$val['time']).' rssi:'.$val['rssi'].' count:'.$count_data);
  185. if($received_state=='1'){
  186. //如果开启盘点 则有数据就推送
  187. $url="http://localhost:8115/api/assetReceiveReport";
  188. var_dump($report_data);
  189. $postFields = http_build_query($report_data);
  190. $url_res= curl_http_post($postFields,$url,false);
  191. echo 'assetReceiveReport res'.PHP_EOL;
  192. var_dump($url_res);
  193. }
  194. $hashKey='station_access_last_data';
  195. $beforeKey='station_access_before_data';
  196. $key=$mac.'_'.$val['label'];
  197. $last_data=json_decode($redis->hGet($hashKey,$key),true);
  198. // var_dump($old_data);
  199. if($last_data){
  200. //取出历史数据 对比两次数据变化
  201. if($last_data['ant']==$report_data['ant']){
  202. //相同 则更新时间
  203. $report_data['count']=$last_data['count']+1;
  204. $before_data=json_decode($redis->hGet($beforeKey,$key),true);
  205. //存在反向数据 并且连续搜到单边数据5次
  206. if($before_data && ($report_data['count']>5)){
  207. //开始推送数据;
  208. $send_data=[
  209. "mac"=>$mac,
  210. "label"=>$val['label'],
  211. 'time'=>$val['time'],
  212. ];
  213. if($report_data['ant']>$before_data['ant']){
  214. //1->2 外到内 进
  215. $send_data['dirt']=1;
  216. }else{
  217. //2>1 内到外 出
  218. $send_data['dirt']=2;
  219. }
  220. var_dump($send_data);
  221. //推送数据
  222. $url="http://localhost:8115/api/assetReport";
  223. $postFields = http_build_query($send_data);
  224. $url_res= curl_http_post($postFields,$url,false);
  225. echo 'assetReport res'.PHP_EOL;
  226. var_dump($url_res);
  227. //推送完清除数据
  228. $redis->hDel($hashKey,$key);
  229. $redis->hDel($beforeKey,$key);
  230. }else{
  231. $redis->hSet($hashKey,$key,json_encode($report_data));
  232. }
  233. }else{
  234. //比较数据时间
  235. //默认新数据更晚上报
  236. $report_data['count']=1;
  237. $redis->hSet($hashKey,$key,json_encode($report_data));
  238. $redis->hSet($beforeKey,$key,json_encode($last_data));
  239. // $send_data=[
  240. // "mac"=>$mac,
  241. // "label"=>$val['label'],
  242. // 'time'=>$val['time'],
  243. // ];
  244. // if($report_data['ant']>$last_data['ant']){
  245. // //1->2 内到外 出
  246. // $send_data['dirt']=2;
  247. // }else{
  248. // //2>1 外到内 进
  249. // $send_data['dirt']=1;
  250. // }
  251. // var_dump($send_data);
  252. // //推送数据
  253. // $url="http://localhost:8115/api/assetReport";
  254. // $postFields = http_build_query($send_data);
  255. // $url_res= curl_http_post($postFields,$url,false);
  256. // echo 'assetReport res'.PHP_EOL;
  257. // var_dump($url_res);
  258. // $redis->hSet($hashKey,$key,json_encode($report_data));
  259. }
  260. }else{
  261. $report_data['count']=1;
  262. $redis->hSet($hashKey,$key,json_encode($report_data));
  263. }
  264. }
  265. }
  266. }
  267. public function asset_redis(){
  268. while(true){
  269. $redis=Cache::store('redis')->handler();
  270. $hashKey='station_access_last_data';
  271. $beforeKey='station_access_before_data';
  272. $list=$redis->hgetall($hashKey);
  273. foreach($list as $key=>$val){
  274. $report_data = json_decode($val, true);
  275. if ( (time() - $report_data["time"] ) > 10 ) {
  276. $before_data=json_decode($redis->hGet($beforeKey,$key),true);
  277. //存在反向数据 并且连续搜到单边数据5次
  278. if($before_data){
  279. //开始推送数据;
  280. $send_data=[
  281. "mac"=>$report_data['mac'],
  282. "label"=>$report_data['label'],
  283. 'time'=>$report_data['time'],
  284. ];
  285. if($report_data['ant']>$before_data['ant']){
  286. //1->2 外到内 进
  287. $send_data['dirt']=1;
  288. }else{
  289. //2>1 内到外 出
  290. $send_data['dirt']=2;
  291. }
  292. var_dump($send_data);
  293. //推送数据
  294. $url="http://localhost:8115/api/assetReport";
  295. $postFields = http_build_query($send_data);
  296. $url_res= curl_http_post($postFields,$url,false);
  297. echo 'assetReport res'.PHP_EOL;
  298. var_dump($url_res);
  299. //推送完清除数据
  300. $redis->hDel($hashKey,$key);
  301. $redis->hDel($beforeKey,$key);
  302. }
  303. }
  304. }
  305. sleep(1);
  306. }
  307. }
  308. /**
  309. * 清除数据
  310. *
  311. * @return void
  312. */
  313. public function clear_redis(){
  314. //清理超时的标签
  315. while(1){
  316. sleep(1);
  317. $redis=Cache::store('redis')->handler();
  318. $dispose = new dispose($redis);
  319. $keylist= $dispose->getStations();
  320. //获取存储的的基站
  321. debug_log("clear_label","查询数据".json_encode($keylist));
  322. if(empty($keylist)){
  323. continue;
  324. }
  325. foreach($keylist as $station){
  326. //结果key值
  327. $key="res".$station;
  328. //存取旧的数据的reids数据
  329. $catchkey=$station."station";
  330. //获取该基站的所有key
  331. $keys= $redis->hKeys($key);
  332. if(empty($keys)){
  333. continue;
  334. }
  335. foreach($keys as $item){
  336. if( $json_data=$redis->hget($key,$item)){
  337. debug_log("clear_label",'基站'.$station.'获取的数据'.'标签'.$item.$json_data);
  338. $json_data=json_decode($json_data,true);
  339. //列表
  340. $a=$json_data['a'];
  341. //状态
  342. $status=$json_data['status'];
  343. //是否形成进出考勤
  344. $in_and_out=$json_data["in_and_out"];
  345. //总数
  346. $count= count($a);
  347. $time= $dispose->getNowStationTime($station);
  348. debug_log("clear_label","标签最新最新时间". date('Y-m-d H:i:s', $time));
  349. //如果标签间隔超过7s,则超时并判断能否生成进出
  350. if(($time-$json_data["time"])<=7){
  351. debug_log("clear_label", $item.':'. "标签上报间隔没有超过7秒进行跳过");
  352. continue;
  353. }
  354. if($count<5){
  355. //如果信号条数小于等于2条不参与计算,信号条数大于2小于5条,则直接进行判断是否形成进出
  356. if($count>2){
  357. debug_log("clear_label", $item.':'. "标签信号个数等于超过2个,参与计算");
  358. $frist=$a[0]['dirt'];
  359. $end=$a[$count-1]['dirt'];
  360. if($frist!=$end){
  361. debug_log("clear_label", $item.':'. "标签信号个数等于超过2个,参与计算,得出结果:".$frist);
  362. $dispose->network_push($station,$item,$a[$count-1]['time'],$frist==1?1:2);
  363. }else{
  364. debug_log("clear_label", $item.':'. "标签信号个数没有超过2个,全部去清除");
  365. }
  366. }
  367. }else{
  368. //如果信号条数大于5条,则判断最后三条数据的信号强的方向是否和初始方向相反
  369. $front=0;
  370. $back=0;
  371. $res=0;
  372. if($a[$count-3]['dirt']==1){
  373. $front+=1;
  374. }else{
  375. $back+=1;
  376. }
  377. if($a[$count-2]['dirt']==1){
  378. $front+=1;
  379. }else{
  380. $back+=1;
  381. }
  382. if($a[$count-1]['dirt']==1){
  383. $front+=1;
  384. }else{
  385. $back+=1;
  386. }
  387. if($front>$back){
  388. $res=1;
  389. }else{
  390. $res=2;
  391. }
  392. if($status['dirt']!=$res){
  393. //最后三条数据的信号强的方向和初始方向相反,则形成进出考勤
  394. debug_log("clear_label", $item.':'. "最后一个信号,方向相反,得出结果,清除缓存数据");
  395. $dispose->network_push($station,$item,$a[$count-1]['time'],$status['dirt']==1?1:2);
  396. }else{
  397. //最后三条数据的信号强的方向和初始方向不相反,并且在连续的时间内没有生成考勤,则开始第二次判断
  398. if(empty($in_and_out)){
  399. //判断第二次能否生成考勤结果
  400. $res=$dispose->second_create_direction($station,$item);
  401. if(!empty($res)){
  402. //获取该标签的之前最新的考勤,和当前形成考勤时间间隔是否大于10,
  403. //如果大于10则生成考勤结果
  404. $res_time= $dispose->get_time_results($station,$item);
  405. $res_time= empty($res_time)?0:$res_time;
  406. $diff_time=$res['time']-$res_time;
  407. debug_log("clear_label", $item.':'. "间隔时间".$diff_time);
  408. //判断如果结果超过时间
  409. if($diff_time>10){
  410. debug_log("clear_label", $item.':'. "二次生成进出");
  411. $dispose->network_push($station,$item,$res['time'],$res['dirt']);
  412. }
  413. }else{
  414. //二次判断如果也没生成考勤,如果朝前的信号最大强度低于65,
  415. //朝后的信号最大强度也低于65,则记录下来最后的朝向,
  416. //存入没有生成考勤时的初始数据
  417. //获取朝前的最大值
  418. //获取朝后的最大值
  419. $frontMax= $dispose->get_label_history(4,$station,$item);
  420. $backMax= $dispose->get_label_history(5,$station,$item);
  421. $records=false;
  422. if($status['dirt']==1){
  423. $records=$frontMax<65;
  424. }
  425. if($status['dirt']==2){
  426. $records=$backMax<65;
  427. }
  428. if($records){
  429. $dispose->no_check_data($station,$item,$status['dirt'],$a[$count-1]['time'],1);
  430. }
  431. }
  432. }
  433. //二次进出
  434. debug_log("clear_label", $item.':'. "最后一个信号,方向没有变化,清除缓存数据");
  435. }
  436. }
  437. //清除对应的键值对
  438. //清空头部尾部历史
  439. $dispose->get_label_history(3,$station,$item);
  440. $redis->hdel($key,$item);
  441. $redis->hdel($catchkey,$item);
  442. }
  443. }
  444. }
  445. }
  446. }
  447. /**
  448. * 远程推送数据
  449. *
  450. * @return void
  451. */
  452. public function remotePush(){
  453. while(true){
  454. $redis=Cache::store('redis')->handler();
  455. $key="push_data";
  456. $url="http://localhost:8115/api/accessReport";
  457. sleep(2);
  458. while($data=$redis->lPop($key)){
  459. if(!empty($data)){
  460. debug_log($key,"远程推送的数据".$data);
  461. $url_res= curl_http_post($data,$url,false);
  462. $num=1;
  463. while($url_res==false){
  464. $num++;
  465. $url_res= curl_http_post($data,$url,false);
  466. if($num>=3){
  467. debug_log($key,"远程推送的地址".$url);
  468. debug_log($key,"连续推送三次失败,远程推送的数据".$data);
  469. break;
  470. }
  471. }
  472. debug_log($key,"远程返回结果".$url_res);
  473. }
  474. }
  475. }
  476. }
  477. public function redis_to_mysql_parea(){
  478. $ues_redis=Cache::store('redis')->handler();
  479. $text="";
  480. $dispose = new dispose($ues_redis);
  481. while(1){
  482. $jsonData= $ues_redis->rpop("mqtt_data_parea4rssi");
  483. debug_log("pare_InAndOUT",'数据redis'.$jsonData);
  484. if(empty($jsonData)){
  485. debug_log("pare_InAndOUT",'没有数据');
  486. sleep(1);
  487. continue;
  488. }
  489. // debug_log("InAndOUT",$jsonData);
  490. $data=json_decode($jsonData,true);
  491. // debug_log("InAndOUT",$data['cnt']);
  492. $time=$data['time'];
  493. $mac=$data['devId'];
  494. $text=$text.$data['cnt'];
  495. if(strlen($text)<24){
  496. continue;
  497. }
  498. $text = $this->handleMessage($text, $mac, $time, $ues_redis);
  499. }
  500. }
  501. public function redis_to_mysql_indoor(){
  502. $ues_redis=Cache::store('redis')->handler();
  503. $text="";
  504. $dispose = new dispose($ues_redis);
  505. while(1){
  506. $jsonData= $ues_redis->lpop("mqtt_data_indoor4rssi");
  507. debug_log("indoor_InAndOUT",'mqtt数据redis'.$jsonData);
  508. if(!$jsonData){
  509. debug_log("indoor_InAndOUT",'mqtt没有数据');
  510. sleep(1);
  511. continue;
  512. }
  513. // debug_log("InAndOUT",$jsonData);
  514. $data=json_decode($jsonData,true);
  515. // debug_log("InAndOUT",$data['cnt']);
  516. $time=$data['time'];
  517. $mac=$data['devId'];
  518. $text=$text.$data['cnt'];
  519. if(strlen($text)<24){
  520. continue;
  521. }
  522. // var_dump("before",microtime());
  523. $text = $this->handleMessageIndoor($text, $mac, $time, $ues_redis);
  524. // var_dump("after",microtime());
  525. }
  526. }
  527. //打印日志
  528. public function temporary_label_log(){
  529. $redis=Cache::store('redis')->handler();
  530. // $key="temporary_label";
  531. // $list= $redis->HgetAll($key);
  532. // debug_log($key,json_encode($list));
  533. // debug_log($key,"所有的标签");
  534. // foreach($list as $k=>$value){
  535. // debug_log($key,json_encode([$k=>$value]));
  536. // }
  537. // debug_log($key,"所有总数".count($list));
  538. // debug_log($key,"上报的标签");
  539. // $i=0;
  540. // foreach($list as $k=>$value){
  541. // if($value==2){
  542. // debug_log($key,json_encode([$k=>$value]));
  543. // $i++;
  544. // }
  545. // }
  546. // debug_log($key,"正常上报的标签总数".$i);
  547. // debug_log($key,"补出的标签");
  548. // $t=0;
  549. // foreach($list as $k=>$value){
  550. // if($value==3){
  551. // $t++;
  552. // debug_log($key,json_encode([$k=>$value]));
  553. // }
  554. // }
  555. // debug_log($key,"补出的标签总数".$t);
  556. // debug_log($key,"没有上报的的标签");
  557. // $f=0;
  558. // foreach($list as $k=>$value){
  559. // if($value==1){
  560. // debug_log($key,json_encode([$k=>$value]));
  561. // $f++;
  562. // }
  563. // }
  564. // debug_log($key,"没有上报的的标签总数".$f);
  565. // // $redis->del($key);
  566. $dis= new dispose($redis);
  567. $dis->analysisLog();
  568. }
  569. // public function temporary_label($redis,$label,$type){
  570. // $key="temporary_label";
  571. // if($type==1){
  572. // $res= $redis->hGet($key,$label);
  573. // if($res==false){
  574. // $redis->hSet($key,$label,1);
  575. // }
  576. // }else{
  577. // $redis->hSet($key,$label,3);
  578. // }
  579. // }
  580. //消息处理--重点区域
  581. public function handleMessage($text, $mac, $time, $ues_redis){
  582. while(strlen($text)>=24){
  583. $da=substr($text,0,24);
  584. $t1 = substr($da,8,2)=='00'||substr($da,8,2)=='10'||substr($da,8,2)=='01' ? true:false;
  585. $t2 =substr($da,10,6)=="FFFFFF"||substr($da,10,6)=="000000" ?true:false;
  586. if($t1&&$t2){
  587. // var_dump($text);
  588. $rfid= substr($da,0,8);
  589. $rssi1= hexdec(substr($da,16,2));
  590. $rssi2= hexdec(substr($da,18,2));
  591. $rssi3= hexdec(substr($da,20,2));
  592. $rssi4= hexdec(substr($da,22,2));
  593. // $rc1 = ($rssi1 == 255 ? 0 : 1);
  594. // $rc2 = ($rssi2 == 255 ? 0 : 1);
  595. // $rc3 = ($rssi3 == 255 ? 0 : 1);
  596. // $rc4 = ($rssi4 == 255 ? 0 : 1);
  597. $DA=[
  598. 'mac' => $mac,
  599. 'label' =>$rfid,
  600. 'rssi1' => $rssi1,
  601. 'rssi2' => $rssi2,
  602. 'rssi3' => $rssi3,
  603. 'rssi4' => $rssi4,
  604. 'report_time'=>$time
  605. ];
  606. $field = $mac."_".$rfid;
  607. $info = $ues_redis->hget("parea_rfidinfos",$field);
  608. debug_log("pare_InAndOUT","数据:".json_encode($DA,true));
  609. if($rssi1 ==255 && $rssi2 == 255 && $rssi3 == 255 && $rssi4 == 255){
  610. debug_log("pare_InAndOUT","无效数据:".json_encode($DA,true));
  611. }else{
  612. if(!$info){
  613. $info = [
  614. "mac" => $mac,
  615. "id" => $rfid,
  616. "firs_time" => $time,
  617. "time" => $time,
  618. "status" => 2,//2出状态,1进状态
  619. "rssi" => [
  620. [
  621. "front" => $rssi1,
  622. "behind" => $rssi2,
  623. "left" => $rssi3,
  624. "right" => $rssi4,
  625. "time" => $time
  626. ]
  627. ]
  628. ];
  629. $ues_redis->hset("parea_rfidinfos",$field, json_encode($info,true));
  630. debug_log("parea_rfidinfos_redis_set_record","redis更新记录".json_encode($info,true));
  631. }else{
  632. $info = json_decode($info,true);
  633. $config = $ues_redis->hget("anbang_four_wire", $info["mac"]);
  634. if (!$config) {
  635. # code...
  636. $config = [
  637. "front_in" => 80,
  638. "behind_in" => 80,
  639. "left_in" => 80,
  640. "right_in" => 80,
  641. "front_out" => 255,
  642. "behind_out" => 255,
  643. "left_out" => 255,
  644. "right_out" => 255,
  645. "expInt" => 12,
  646. "effSigNum" => 6
  647. ];
  648. }else{
  649. $config = json_decode($config,true);
  650. }
  651. // var_dump("+++++++++++++++++",$config);
  652. $info["time"] = $time;
  653. $newRssi = [
  654. "front" => $rssi1,
  655. "behind" => $rssi2,
  656. "left" => $rssi3,
  657. "right" => $rssi4,
  658. "time" => $time
  659. ];
  660. $rssisArr = $info["rssi"];
  661. // var_dump("+++++++++++++++++", $time, $newRssi["time"]);
  662. foreach ($rssisArr as $k => $v) {
  663. # code...
  664. if( ($time - $v["time"] ) > $config['expInt'] ){
  665. unset($rssisArr[$k]);
  666. }
  667. }
  668. // var_dump("+++++++++++++++++",$rssisArr);
  669. if(count($rssisArr) == $config['effSigNum']){
  670. array_shift($rssisArr);
  671. array_push($rssisArr, $newRssi);
  672. }else{
  673. array_push($rssisArr, $newRssi);
  674. }
  675. $rssisArr =array_values($rssisArr);
  676. // var_dump("+++++++++++++++++",$rssisArr);
  677. $info["rssi"] = $rssisArr;
  678. // var_dump("------------",$info["rssi"]);
  679. $cacCount = count($rssisArr);
  680. // if($cacCount > $EFF_SIG_NUM){
  681. $sum1 = 0;
  682. $sum2 = 0;
  683. $sum3 = 0;
  684. $sum4 = 0;
  685. foreach ($rssisArr as $k => $v) {
  686. # code...
  687. $sum1 += ($v["front"] == 255 ? 90 : $v["front"]);
  688. $sum2 += ($v["behind"] == 255 ? 90 : $v["behind"]);
  689. $sum3 += ($v["left"] == 255 ? 90 : $v["left"]);
  690. $sum4 += ($v["right"] == 255 ? 90 : $v["right"]);
  691. }
  692. $info["avg"] = [
  693. "front" => number_format( $sum1/$cacCount, 2 ),
  694. "behind" => number_format( $sum2/$cacCount, 2 ),
  695. "left" => number_format( $sum3/$cacCount, 2 ),
  696. "right" => number_format( $sum4/$cacCount, 2 ),
  697. ];
  698. // var_dump($cacCount, $EFF_SIG_NUM, "dddddddd");
  699. if ($cacCount == $config['effSigNum']) {
  700. # code...
  701. $info = $this->compAndPush($info ,$config, $ues_redis);
  702. }
  703. $ues_redis->hset("parea_rfidinfos",$field, json_encode($info,true));
  704. debug_log("parea_rfidinfos_redis_set_record","redis更新记录".json_encode($info,true));
  705. }
  706. }
  707. $text=substr($text,24);
  708. }else{
  709. $text=substr($text,1);
  710. }
  711. }
  712. return $text ?$text : "";
  713. }
  714. //消息处理--室内
  715. public function handleMessageIndoor($text, $mac, $time, $ues_redis){
  716. while(strlen($text)>=24){
  717. $da=substr($text,0,24);
  718. $t1 = substr($da,8,2)=='00'||substr($da,8,2)=='10'||substr($da,8,2)=='01' ? true:false;
  719. $t2 =substr($da,10,6)=="FFFFFF"||substr($da,10,6)=="000000" ?true:false;
  720. if($t1&&$t2){
  721. // var_dump($text);
  722. $rfid= substr($da,0,8);
  723. $rssi1= hexdec(substr($da,16,2));
  724. $rssi2= hexdec(substr($da,18,2));
  725. $rssi3= hexdec(substr($da,20,2));
  726. $rssi4= hexdec(substr($da,22,2));
  727. $DA=[
  728. 'mac' => $mac,
  729. 'label' =>$rfid,
  730. 'rssi1' => $rssi1,
  731. 'rssi2' => $rssi2,
  732. 'rssi3' => $rssi3,
  733. 'rssi4' => $rssi4,
  734. 'report_time'=>$time
  735. ];
  736. $field = $mac."_".$rfid;
  737. $info = $ues_redis->hget("indoor_rfidinfos",$field);
  738. debug_log("indoor_InAndOUT","数据:".json_encode($DA,true));
  739. if($rssi1 ==255 && $rssi2 == 255 && $rssi3 == 255 && $rssi4 == 255){
  740. debug_log("indoor_InAndOUT","无效数据:".json_encode($DA,true));
  741. }else{
  742. if(!$info){
  743. $info = [
  744. "mac" => $mac,
  745. "id" => $rfid,
  746. "first_time" => $time,
  747. "time" => $time,
  748. "status" => 2,//2出状态,1进状态
  749. "rssi" => [
  750. [
  751. "front" => $rssi1,
  752. "behind" => $rssi2,
  753. "left" => $rssi3,
  754. "right" => $rssi4,
  755. "time" => $time
  756. ]
  757. ]
  758. ];
  759. $ues_redis->hset("indoor_rfidinfos",$field, json_encode($info,true));
  760. debug_log("indoor_rfidinfos_redis_set_record","redis更新记录".json_encode($info,true));
  761. }else{
  762. $info = json_decode($info,true);
  763. $config = $ues_redis->hget("anbang_four_wire", $info["mac"]);
  764. if (!$config) {
  765. # code...
  766. $config = [
  767. "front_in" => 80,
  768. "behind_in" => 80,
  769. "left_in" => 80,
  770. "right_in" => 80,
  771. "front_out" => 255,
  772. "behind_out" => 255,
  773. "left_out" => 255,
  774. "right_out" => 255,
  775. "expInt" => 12,
  776. "effSigNum" => 6
  777. ];
  778. }else{
  779. $config = json_decode($config,true);
  780. }
  781. // var_dump("+++++++++++++++++",$config);
  782. $info["time"] = $time;
  783. $newRssi = [
  784. "front" => $rssi1,
  785. "behind" => $rssi2,
  786. "left" => $rssi3,
  787. "right" => $rssi4,
  788. "time" => $time
  789. ];
  790. $rssisArr = $info["rssi"];
  791. // var_dump("+++++++++++++++++", $time, $newRssi["time"]);
  792. foreach ($rssisArr as $k => $v) {
  793. # code...
  794. if( ($time - $v["time"] ) > $config['expInt'] ){
  795. unset($rssisArr[$k]);
  796. }
  797. }
  798. // var_dump("+++++++++++++++++",$rssisArr);
  799. if(count($rssisArr) == $config['effSigNum']){
  800. array_shift($rssisArr);
  801. array_push($rssisArr, $newRssi);
  802. }else{
  803. array_push($rssisArr, $newRssi);
  804. }
  805. $rssisArr =array_values($rssisArr);
  806. // var_dump("+++++++++++++++++",$rssisArr);
  807. $info["rssi"] = $rssisArr;
  808. // var_dump("------------",$info["rssi"]);
  809. $cacCount = count($rssisArr);
  810. // if($cacCount > $EFF_SIG_NUM){
  811. $sum1 = 0;
  812. $sum2 = 0;
  813. $sum3 = 0;
  814. $sum4 = 0;
  815. foreach ($rssisArr as $k => $v) {
  816. # code...
  817. $sum1 += ($v["front"] == 255 ? 90 : $v["front"]);
  818. $sum2 += ($v["behind"] == 255 ? 90 : $v["behind"]);
  819. $sum3 += ($v["left"] == 255 ? 90 : $v["left"]);
  820. $sum4 += ($v["right"] == 255 ? 90 : $v["right"]);
  821. }
  822. $info["avg"] = [
  823. "front" => number_format( $sum1/$cacCount, 2 ),
  824. "behind" => number_format( $sum2/$cacCount, 2 ),
  825. "left" => number_format( $sum3/$cacCount, 2 ),
  826. "right" => number_format( $sum4/$cacCount, 2 ),
  827. ];
  828. // var_dump($cacCount, $EFF_SIG_NUM, "dddddddd");
  829. if ($cacCount == $config['effSigNum']) {
  830. # code...
  831. $info = $this->compAndPushIndoor($info ,$config, $ues_redis);
  832. }
  833. $ues_redis->hset("indoor_rfidinfos",$field, json_encode($info,true));
  834. debug_log("indoor_rfidinfos_redis_set_record","redis更新记录".json_encode($info,true));
  835. }
  836. }
  837. $text=substr($text,24);
  838. }else{
  839. $text=substr($text,1);
  840. }
  841. }
  842. return $text ?$text : "";
  843. }
  844. //判断进出和推送--室内考勤
  845. public function compAndPushIndoor($info, $config, $ues_redis){
  846. //标签多,数据多时候,判断完成后放入redis,异步推送,当前暂时直接推
  847. // $config = $ues_redis->hget("anbang_four_wire", $info["mac"]);
  848. //{"front_in":44,"front_out":44,"behind_in":50,"behind_out":50,"left_in":55,"left_out":55,"right_out":44,"right_out":44}
  849. $avg = $info['avg'];
  850. $status = $info['status'];
  851. $flagIn = $avg["front"] < $config["front_in"] || $avg["behind"] < $config["behind_in"] || $avg["left"] < $config["left_in"] || $avg["right"] < $config["right_in"];
  852. $flagOut = $avg["front"] > $config["front_out"] && $avg["behind"] > $config["behind_out"] && $avg["left"] > $config["left_out"] && $avg["right"] > $config["right_out"];
  853. $url="http://localhost:8115/api/api/accessClassReport";
  854. // $url="http://61.175.203.188:10001/api/accessClassReport";
  855. // if($flagIn && $status == 2){
  856. if($flagIn){
  857. if ($info["pushTime"] && (time()-$info['pushTime']) < 120 ) {
  858. # code...
  859. return $info;
  860. }
  861. //推送进
  862. $info['status'] = 1;
  863. $url_data = [
  864. "mac" => $info["mac"],
  865. "data" => [
  866. [
  867. "label" => $info["id"],
  868. "time" => $info["time"],
  869. "dirt" => 1,
  870. "rssi" => $info["rssi"],//数组 [{"front":72,"behind":255,"left":255,"right":255,"time":1685067709},{"front":76,"behind":255,"left":255,"right":255,"time":1685067710}]
  871. "avg" => $info["avg"] //{"front":"77.17","behind":"90.00","left":"90.00","right":"90.00"}
  872. ]
  873. ]
  874. ];
  875. $ues_redis->lpush("indoor_inoutres_push", json_encode($url_data));
  876. $info['pushTime'] = time();
  877. // debug_log("push_indoor_res","进推送依赖:".json_encode($info));
  878. // $url_res= curl_http_post(json_encode($url_data),$url,false);
  879. // debug_log("push_indoor_res","远程返回结果".$url_res);
  880. }
  881. // if($info['id'] == "E2B15AD5"){
  882. // var_dump($flagIn, $flagOut, $status, $avg["front"],$avg["behind"],$avg["left"], $avg["right"]);
  883. // }
  884. if($flagOut && $status == 1){
  885. if ($info["pushTime"] && (time()-$info['pushTime']) < 5 ) {
  886. # code...
  887. return $info;
  888. }
  889. //推送出
  890. $info['status'] = 2;
  891. $url_data = [
  892. "mac" => $info["mac"],
  893. "data" => [
  894. [
  895. "label" => $info["id"],
  896. "time" => $info["time"],
  897. "dirt" => 2,
  898. "rssi" => $info["rssi"],//数组 [{"front":72,"behind":255,"left":255,"right":255,"time":1685067709},{"front":76,"behind":255,"left":255,"right":255,"time":1685067710}]
  899. "avg" => $info["avg"] //{"front":"77.17","behind":"90.00","left":"90.00","right":"90.00"}
  900. ]
  901. ]
  902. ];
  903. $ues_redis->lpush("indoor_inoutres_push", json_encode($url_data));
  904. // debug_log("push_indoor_res","出推送依赖:".json_encode($info));
  905. // $url_res= curl_http_post(json_encode($url_data),$url,false);
  906. $info['pushTime'] = time();
  907. // debug_log("push_indoor_res","远程返回结果".$url_res);
  908. }
  909. return $info;
  910. }
  911. //判断进出和推送
  912. public function compAndPush($info, $config,$ues_redis){
  913. //标签多,数据多时候,判断完成后放入redis,异步推送,当前暂时直接推
  914. $avg = $info['avg'];
  915. $status = $info['status'];
  916. $flagIn = $avg["front"] < $config["front_in"] || $avg["behind"] < $config["behind_in"] || $avg["left"] < $config["left_in"] || $avg["right"] < $config["right_in"];
  917. $flagOut = $avg["front"] > $config["front_out"] && $avg["behind"] > $config["behind_out"] && $avg["left"] > $config["left_out"] && $avg["right"] > $config["right_out"];
  918. if($flagIn && $status == 2){
  919. // if($flagIn){
  920. $inoutIntFilter = $ues_redis->hget("anbang_four_wire", "anbang_4rssi_intFilter");
  921. $inoutIntFilter = $inoutIntFilter ? $inoutIntFilter : 20;
  922. if ($info["pushTime"] && (time()-$info['pushTime']) < $inoutIntFilter ) {
  923. # code...
  924. return $info;
  925. }
  926. //推送进
  927. $info['status'] = 1;
  928. $url_data = [
  929. "mac" => $info["mac"],
  930. "data" => [
  931. [
  932. "label" => $info["id"],
  933. "time" => $info["time"],
  934. "first_time" => $info["first_time"],
  935. "dirt" => 1,
  936. "rssi" => $info["rssi"],//数组 [{"front":72,"behind":255,"left":255,"right":255,"time":1685067709},{"front":76,"behind":255,"left":255,"right":255,"time":1685067710}]
  937. "avg" => $info["avg"] //{"front":"77.17","behind":"90.00","left":"90.00","right":"90.00"}
  938. ]
  939. ]
  940. ];
  941. // debug_log("pushPareaRes","进推送依赖:".json_encode($info));
  942. // $url_res= curl_http_post(json_encode($url_data),$url,false);
  943. $ues_redis->lpush("parea_inoutres_push", json_encode($url_data));
  944. $info['pushTime'] = time();
  945. // debug_log("pushPareaRes","远程返回结果".$url_res);
  946. }
  947. // if($info['id'] == "E2B15AD5"){
  948. // var_dump($flagIn, $flagOut, $status, $avg["front"],$avg["behind"],$avg["left"], $avg["right"]);
  949. // }
  950. if($flagOut && $status == 1){
  951. if ($info["pushTime"] && (time()-$info['pushTime']) < 5 ) {
  952. # code...
  953. return $info;
  954. }
  955. //推送出
  956. $info['status'] = 2;
  957. $url_data = [
  958. "mac" => $info["mac"],
  959. "data" => [
  960. [
  961. "label" => $info["id"],
  962. "time" => $info["time"],
  963. "dirt" => 2,
  964. "rssi" => $info["rssi"],//数组 [{"front":72,"behind":255,"left":255,"right":255,"time":1685067709},{"front":76,"behind":255,"left":255,"right":255,"time":1685067710}]
  965. "avg" => $info["avg"] //{"front":"77.17","behind":"90.00","left":"90.00","right":"90.00"}
  966. ]
  967. ]
  968. ];
  969. // debug_log("pushPareaRes","出推送依赖:".json_encode($info));
  970. // $url_res= curl_http_post(json_encode($url_data),$url,false);
  971. $ues_redis->lpush("parea_inoutres_push", json_encode($url_data));
  972. $info['pushTime'] = time();
  973. // debug_log("pushPareaRes","远程返回结果".$url_res);
  974. }
  975. if($flagIn && $info['status'] == 1){
  976. $inoutIntFilter = $ues_redis->hget("anbang_four_wire", "anbang_4rssi_intFilter");
  977. $inoutIntFilter = $inoutIntFilter ? $inoutIntFilter : 20;
  978. if ($info["camPushTime"] && (time()-$info['camPushTime']) < $inoutIntFilter ) {
  979. # code...
  980. return $info;
  981. }
  982. //推送进
  983. $url_data = [
  984. "mac" => $info["mac"],
  985. "first_time" => $info["first_time"],
  986. "data" => [
  987. [
  988. "label" => $info["id"],
  989. "time" => $info["time"],
  990. "dirt" => 1,
  991. "rssi" => $info["rssi"],//数组 [{"front":72,"behind":255,"left":255,"right":255,"time":1685067709},{"front":76,"behind":255,"left":255,"right":255,"time":1685067710}]
  992. "avg" => $info["avg"] //{"front":"77.17","behind":"90.00","left":"90.00","right":"90.00"}
  993. ]
  994. ]
  995. ];
  996. $ues_redis->lpush("parea_inoutres_push", json_encode($url_data));
  997. $info["camPushTime"] = time();
  998. }
  999. return $info;
  1000. }
  1001. public function test(){
  1002. try{
  1003. $ues_redis=Cache::store('redis')->handler();
  1004. $jsonData= $ues_redis->rpop("mqtt_data");
  1005. debug_log("InAndOUT","1212");
  1006. }catch(Exception $e){
  1007. var_dump($e->getMessage());
  1008. }
  1009. }
  1010. /**
  1011. * 删除前1天的数据
  1012. *
  1013. * @return void
  1014. */
  1015. public function deleteHistory()
  1016. {
  1017. while(true)
  1018. {
  1019. $where[] = ['addTime','<',strtotime("-1 day")];
  1020. Db::name('tag_history')->where($where)->delete();
  1021. sleep(60*60*24);
  1022. }
  1023. }
  1024. /**
  1025. * 检测小程序版本版本 function
  1026. *
  1027. * @return void
  1028. */
  1029. public function detectionVersion(){
  1030. $token = $_GET['token'];
  1031. if (!$token || $token != '444333d3') {
  1032. json_fail('缺少token或者token不对');
  1033. }
  1034. $data["url"]="http://116.62.220.88:8112/static/app/蓝牙小程序/1.1.1/rl-release.apk";
  1035. $data["version"]="1.1.1";
  1036. json_success("查询版本成功",$data);
  1037. }
  1038. }