Cdnrecord.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. class Model_Cdnrecord extends PhalApi_Model_NotORM {
  12. /* 直播回放 */
  13. public function getCdnRecord($id) {
  14. $result=DI()->notorm->live_record->select('id,starttime,endtime,stream,video_url')->where('id=?',$id)->fetchOne();
  15. if($result && !$result['video_url']){
  16. $configpri=getConfigPri();
  17. $cdn_switch=$configpri['cdn_switch'];
  18. $url='';
  19. switch($cdn_switch){
  20. case '1':
  21. $url=$this->alicdn($result);
  22. break;
  23. case '2':
  24. //$url=PrivateKey_tx($host,$stream,$type);
  25. break;
  26. case '3':
  27. //$url=PrivateKey_qn($host,$stream,$type);
  28. break;
  29. case '4':
  30. //$url=PrivateKey_ws($host,$stream,$type);
  31. break;
  32. case '5':
  33. //$url=PrivateKey_wy($host,$stream,$type);
  34. break;
  35. case '6':
  36. //$url=PrivateKey_ady($host,$stream,$type);
  37. break;
  38. }
  39. $result['video_url']=$url;
  40. }
  41. return $result;
  42. }
  43. /* 阿里云CDN */
  44. protected function alicdn($data){
  45. date_default_timezone_set("UTC");
  46. $video_url='';
  47. $configpri=getConfigPri();
  48. //阿里的配置信息
  49. $access_key_id=$configpri['aliy_key_id'];
  50. $access_key_secret=$configpri['aliy_key_secret'];
  51. //录播的流地址和应用名配置信息
  52. $DomainName = $configpri['pull_url'];
  53. $AppName = '5showcam';
  54. if(empty($access_key_id) || empty($access_key_secret) || empty($DomainName) || empty($AppName)){
  55. return $video_url;
  56. }
  57. //file_put_contents('./alicdn.txt',date('Y-m-d H:i:s').' 提交参数信息 :'.$reqParam."\r\n",FILE_APPEND);
  58. $live_starttime = $data['starttime']-200;
  59. $live_endtime = $data['endtime'] + 200;
  60. $StartTime=gmdate("Y-m-d\TH:i:s\Z",$live_starttime);
  61. $EndTime=gmdate("Y-m-d\TH:i:s\Z",$live_endtime);
  62. $StreamName=$data['stream'];
  63. $action = 'DescribeLiveStreamRecordIndexFiles';
  64. $specialParameter = array(
  65. 'AccessKeyId' => $access_key_id,
  66. 'Action' => $action,
  67. 'DomainName' => $DomainName,
  68. 'AppName' => $AppName,
  69. 'StreamName' => $StreamName,
  70. 'StartTime' => $StartTime,
  71. 'EndTime' => $EndTime,
  72. );
  73. //file_put_contents('./alicdn.txt',date('Y-m-d H:i:s').' 提交参数信息 specialParameter:'.json_encode($specialParameter)."\r\n",FILE_APPEND);
  74. $parameter = $this->setParameter($specialParameter);
  75. $url = $this->getStringToSign($parameter,$access_key_secret);
  76. $ret = $this->curl_get($url);
  77. $res_arr = json_decode($ret,true);
  78. //file_put_contents('./alicdn.txt',date('Y-m-d H:i:s').' 提交参数信息 res_arr:'.json_encode($res_arr)."\r\n",FILE_APPEND);
  79. if(!$res_arr['RecordIndexInfoList']['RecordIndexInfo']){
  80. return $video_url;
  81. }
  82. $video_url = $res_arr['RecordIndexInfoList']['RecordIndexInfo'][0]['RecordUrl'];
  83. DI()->notorm->live_record->where('id=?',$data['id'])->update( array('video_url'=>$video_url) );
  84. return $video_url;
  85. }
  86. protected function curl_get($url){
  87. $ch = curl_init();
  88. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // https请求 不验证证书和hosts
  89. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  90. curl_setopt($ch, CURLOPT_URL, $url);
  91. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // 要求结果为字符串且输出到屏幕上
  92. curl_setopt($ch, CURLOPT_HEADER, 0); // 不要http header 加快效率
  93. curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');
  94. curl_setopt($ch, CURLOPT_TIMEOUT, 15);
  95. $output = curl_exec($ch);
  96. curl_close($ch);
  97. return $output;
  98. }
  99. protected function setParameter($specialParameter){
  100. $Timestamp = gmdate("Y-m-d\TH:i:s\Z",time());
  101. $signature_nonce = '';
  102. for($i =0 ; $i < 14; $i++){
  103. $signature_nonce .= mt_rand(0,9);
  104. }
  105. $publicParameter = array(
  106. 'Format' => 'JSON',
  107. 'Version' => '2016-11-01',
  108. 'SignatureMethod' => 'HMAC-SHA1',
  109. 'Timestamp' => $Timestamp,
  110. 'SignatureVersion' => '1.0',
  111. 'SignatureNonce' => $signature_nonce,
  112. );
  113. $parameter = array_merge($publicParameter, $specialParameter);
  114. return $parameter;
  115. }
  116. protected function getStringToSign($parameter,$access_key_secret){
  117. ksort($parameter);
  118. foreach($parameter as $key => $value){
  119. $str[] = rawurlencode($key). "=" .rawurlencode($value);
  120. }
  121. $ss = "";
  122. if(!empty($str)){
  123. for($i=0; $i<count($str); $i++){
  124. if(!isset($str[$i+1])){
  125. $ss .= $str[$i];
  126. }else{
  127. $ss .= $str[$i]."&";
  128. }
  129. }
  130. }
  131. $StringToSign = "GET" . "&" . rawurlencode("/") . "&" . rawurlencode($ss);
  132. $signature = base64_encode(hash_hmac("sha1", $StringToSign, $access_key_secret."&", true));
  133. $url = "https://live.aliyuncs.com/?" . $ss . "&Signature=" . rawurlencode($signature);
  134. return $url;
  135. }
  136. /* 阿里云CDN */
  137. }