Api.php 51 KB

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