nana_sen 1 рік тому
батько
коміт
8630fc67ea
2 змінених файлів з 10 додано та 7 видалено
  1. 1 1
      catch/api/controller/Api.php
  2. 9 6
      task_script/PAREA_INOUTRES_PUSH.php

+ 1 - 1
catch/api/controller/Api.php

@@ -620,7 +620,7 @@ class Api extends CatchController
                         // var_dump($cacCount, $EFF_SIG_NUM, "dddddddd");
                         if ($cacCount == $config['effSigNum']) {
                             # code...
-                           $info = $this->compAndPush($info ,$config);
+                           $info = $this->compAndPush($info ,$config, $ues_redis);
                         }
                         $ues_redis->hset("parea_rfidinfos",$field, json_encode($info,true));
                         

+ 9 - 6
task_script/PAREA_INOUTRES_PUSH.php

@@ -60,7 +60,7 @@ function rlog(...$args)
         return;
     }
     static $LOG_CONSOLE = false; //是否输出到控制台
-    static $LOG_NAME = "indoor_inoutres_push.log"; //值为空时 不写入文件
+    static $LOG_NAME = "parea_inoutres_push.log"; //值为空时 不写入文件
     static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
 
     static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
@@ -256,7 +256,7 @@ while (true) {
             echo 'redis连接错误!' . PHP_EOL;
             continue;
         }
-        $data = app_redis()->lpop('indoor_inoutres_push');
+        $data = app_redis()->lpop('parea_inoutres_push');
 
         if(!$data){
             // var_dump($data);
@@ -273,15 +273,18 @@ while (true) {
         
         http($url, $url_data, [], 'POST');
 
-        if($url_data["data"]["dirt"] == 1){
+        if($url_data["data"][0]["dirt"] == 1){
             $camData = [
                 "station" => $url_data["mac"],
                 "list" => [
-                    "label" =>$url_data["data"]["label"],
-                    "time" => $url_data["time"]
+                    [
+                        "label" =>$url_data["data"][0]["label"],
+                        "time" => $url_data["data"][0]["time"]
+                    ]
                 ]
             ];
-            http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
+            $resp = http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
+            // rlog("CAM api RESP",$resp);
         }
 
         rlog("PUSH INFO","推送依赖数据", $data);