urbanu619 пре 6 месеци
родитељ
комит
22e599aac5
2 измењених фајлова са 16 додато и 7 уклоњено
  1. 15 6
      web/PhalApi/Appapi/Api/Live.php
  2. 1 1
      web/PhalApi/Appapi/Api/Token.php

+ 15 - 6
web/PhalApi/Appapi/Api/Live.php

@@ -804,15 +804,24 @@ class Api_Live extends PhalApi_Api {
 		
 		$live_info=$domain->getLiveInfo($liveuid);
 		$pull=$live_info['pull'];
-		if($live_info['isvideo']!=1){
-			$pull=PrivateKeyA('rtmp',$stream,0);
-		}
+//		if($live_info['isvideo']!=1){
+//			$pull=PrivateKeyA('rtmp',$stream,0);
+//		}
 
         // 获取主播的 头像=live_avatar , 名字=live_nicename
         $live_info_json = DI()->redis  -> get('userinfo_'.$liveuid);
-        $live_d = json_decode($live_info_json, true);
-        $info['user_nicename'] = $live_d['user_nicename'];
-        $info['live_avatar'] = $live_d['live_avatar'];
+        // 检查值是否存在
+        if ($live_info_json !== false) {
+            $live_d = json_decode($live_info_json, true);
+            $info['user_nicename'] = $live_d['user_nicename'];
+            $info['live_avatar'] = $live_d['live_avatar'];
+        } else {
+            // 键不存在,输出提示信息
+//            echo '指定的键在 Redis 中不存在';
+            $rs['code'] = 404;
+            $rs['msg'] = '请输入正常开播的房间号';
+            return $rs;
+        }
 
 		$info['pull']=html_entity_decode($pull);
 		$info['userlists']=$userlists['userlist'];

+ 1 - 1
web/PhalApi/Appapi/Api/Token.php

@@ -132,7 +132,7 @@ class Api_Token extends PhalApi_Api {
 
 //        $token=md5(md5($param.time()));
             $nowtime = time();
-            $expiretime = $nowtime + 60 * 60 * 24 * 300;
+            $expiretime = $nowtime + 60 * 60 * 24 * 7;
 
             $rs['info'] = [
                 'uid' => $param,