Api.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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. $text=null;
  57. while(1){
  58. $jsonData= $ues_redis->rpop("mqtt_data");
  59. debug_log("InAndOUT",'数据redis'.$jsonData);
  60. if(empty($jsonData)){
  61. debug_log("InAndOUT",'没有数据');
  62. sleep(1);
  63. continue;
  64. }
  65. // debug_log("InAndOUT",$jsonData);
  66. $data=json_decode($jsonData,true);
  67. // debug_log("InAndOUT",$data['cnt']);
  68. $time=$data['time'];
  69. $mac=$data['imei'];
  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. debug_log("InAndOUT","数据:".json_encode($DA,true));
  95. //保存计算中
  96. //分为8个桶
  97. // $num=Hexdec($label);
  98. // $Identification=$num%8;
  99. // $key="buckets".$Identification;
  100. // $ues_redis->rPush($key,json_encode($DA,true));
  101. try{
  102. $dispose = new dispose($ues_redis);
  103. $computedata=$dispose->computeData($DA);
  104. debug_log("InAndOUT","计算完成的数据:".json_encode($DA,true));
  105. $dispose->computeResout($computedata);
  106. }catch(Exception $e){
  107. debug_log("InAndOUT","抛出异常".json_encode($DA,true));
  108. }
  109. $text=substr($text,24);
  110. }else{
  111. $text=substr($text,1);
  112. }
  113. }
  114. // $tage = new Access();
  115. // $tage->saveAll($list);
  116. }
  117. }
  118. public function test(){
  119. try{
  120. $ues_redis=Cache::store('redis')->handler();
  121. $jsonData= $ues_redis->rpop("mqtt_data");
  122. debug_log("InAndOUT","1212");
  123. }catch(Exception $e){
  124. var_dump($e->getMessage());
  125. }
  126. }
  127. /**
  128. * 删除前1天的数据
  129. *
  130. * @return void
  131. */
  132. public function deleteHistory()
  133. {
  134. while(true)
  135. {
  136. $where[] = ['addTime','<',strtotime("-1 day")];
  137. Db::name('tag_history')->where($where)->delete();
  138. sleep(60*60*24);
  139. }
  140. }
  141. /**
  142. * 检测小程序版本版本 function
  143. *
  144. * @return void
  145. */
  146. public function detectionVersion(){
  147. $token = $_GET['token'];
  148. if (!$token || $token != '444333d3') {
  149. json_fail('缺少token或者token不对');
  150. }
  151. $data["url"]="http://116.62.220.88:8112/static/app/蓝牙小程序/1.1.1/rl-release.apk";
  152. $data["version"]="1.1.1";
  153. json_success("查询版本成功",$data);
  154. }
  155. }