LivebackController.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. /**
  12. * 直播回放
  13. */
  14. namespace app\appapi\controller;
  15. use cmf\controller\HomeBaseController;
  16. use think\Db;
  17. class livebackController extends HomebaseController {
  18. /*
  19. 回调数据格式
  20. {
  21. "channel_id": "2121_15919131751",
  22. "end_time": 1473125627,
  23. "event_type": 100,
  24. "file_format": "flv",
  25. "file_id": "9192487266581821586",
  26. "file_size": 9749353,
  27. "sign": "fef79a097458ed80b5f5574cbc13e1fd",
  28. "start_time": 1473135647,
  29. "stream_id": "2121_15919131751",
  30. "t": 1473126233,
  31. "video_id": "200025724_ac92b781a22c4a3e937c9e61c2624af7",
  32. "video_url": "http://200025724.vod.myqcloud.com/200025724_ac92b781a22c4a3e937c9e61c2624af7.f0.flv"
  33. }
  34. */
  35. public function index(){
  36. $request = file_get_contents("php://input");
  37. $this->callbacklog('callback request:'.json_encode($request));
  38. $result = array( 'code' => 0 );
  39. $data = json_decode($request, true);
  40. if(!$data){
  41. $this->callbacklog("request para json format error");
  42. $result['code']=4001;
  43. echo json_encode($result);
  44. exit;
  45. }
  46. if(array_key_exists("event_type",$data) && array_key_exists("stream_id",$data))
  47. {
  48. $event_type = $data['event_type'];
  49. $stream_id = $data['stream_id'];
  50. }else {
  51. $this->callbacklog("request para error");
  52. $result['code']=4002;
  53. echo json_encode($result);
  54. exit;
  55. }
  56. if($event_type == 100){
  57. /* 回放回调 */
  58. if(array_key_exists("video_id",$data) &&
  59. array_key_exists("video_url",$data) &&
  60. array_key_exists("start_time",$data) &&
  61. array_key_exists("end_time",$data) ){
  62. $video_id = $data['video_id'];
  63. $video_url = $data['video_url'];
  64. $start_time = $data['start_time'];
  65. $end_time = $data['end_time'];
  66. }else{
  67. $this->callbacklog("request para error:回放信息参数缺少" );
  68. $result['code']=4002;
  69. echo json_encode($result);
  70. exit;
  71. }
  72. }
  73. $ret=0;
  74. if($event_type == 0){
  75. /* 状态回调 断流 */
  76. $this->upOfftime(1,'',$stream_id);
  77. }elseif ($event_type == 1){
  78. /* 推流 */
  79. $this->upOfftime(0,'',$stream_id);
  80. }elseif ($event_type == 100){
  81. $data=array(
  82. "video_url"=>$video_url,
  83. );
  84. Db::name("live_record")->where(["stream"=>$stream_id])->update($data);
  85. }
  86. $result['code']=$ret;
  87. echo json_encode($result);
  88. exit;
  89. }
  90. public function GetCallBackSign($txTime){
  91. $config=getConfigPri();
  92. $md5_val = md5($config['live_push_key'] . strval($txTime));
  93. return $md5_val;
  94. }
  95. public function callbacklog($msg){
  96. }
  97. public function upOfftime($isoff=1,$uid='',$stream=''){
  98. $where['islive']=1;
  99. if($uid){
  100. $where['uid']=$uid;
  101. }else{
  102. $where['stream']=$stream;
  103. }
  104. $data=[
  105. 'isoff'=>$isoff,
  106. 'offtime'=>0,
  107. ];
  108. if($isoff==1){
  109. $data['offtime']=time();
  110. }
  111. $info=Db::name('live')->where($where)->update($data);
  112. return 0;
  113. }
  114. public function stopRoom($uid='',$stream=''){
  115. file_put_contents(CMF_ROOT.'data/uplive_'.date('Y-m-d').'.txt',date('Y-m-d H:i:s').' 提交参数信息 :'.$uid.'--'.$stream."\r\n",FILE_APPEND);
  116. $where['islive']=1;
  117. if($uid){
  118. $where['uid']=$uid;
  119. }else{
  120. $where['stream']=$stream;
  121. }
  122. $info=Db::name('live')->field('uid,showid,starttime,title,province,city,stream,lng,lat,type,type_val,liveclassid,deviceinfo')->where($where)->find();
  123. if($info){
  124. $stream=$info['stream'];
  125. Db::name('live')->where(['stream'=>$stream])->delete();
  126. $uid=$info['uid'];
  127. $live_type=$info['live_type'];
  128. $nowtime=time();
  129. $info['endtime']=$nowtime;
  130. $info['time']=date("Y-m-d",$info['showid']);
  131. $where2['uid']=['neq',$uid];
  132. $where2['touid']=$uid;
  133. $where2['showid']=$info['showid'];
  134. $votes=Db::name('user_coinrecord')
  135. ->where($where2)
  136. ->sum('totalcoin');
  137. $info['votes']=0;
  138. if($votes){
  139. $info['votes']=$votes;
  140. }
  141. $nums=zSize('user_'.$stream);
  142. hDel("livelist",$uid);
  143. delcache($uid.'_zombie');
  144. delcache($uid.'_zombie_uid');
  145. delcache('attention_'.$uid);
  146. delcache('user_'.$stream);
  147. $info['nums']=$nums;
  148. $result=Db::name('live_record')->insert($info);
  149. }
  150. return 0;
  151. }
  152. /* 定时处理关播-允许短时间 断流续推 */
  153. public function uplive(){
  154. $notime=time();
  155. $offtime=$notime - 30;
  156. $where=[];
  157. $where[]=['islive','=','1'];
  158. $where[]=['isvideo','=','0'];
  159. $where[]=['isoff','=','1'];
  160. $where[]=['offtime','<',$offtime];
  161. $list=Db::name("live")->where($where)->select();
  162. $list->each(function($v,$k){
  163. $this->stopRoom('',$v['stream']);
  164. });
  165. echo 'OK';
  166. exit;
  167. }
  168. }