Api.php 49 KB

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