VideoDemand.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <?php
  2. namespace app\api\controller;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Client\Exception\ClientException;
  5. use AlibabaCloud\Client\Exception\ServerException;
  6. use AlibabaCloud\SDK\Vod\V20170321\Vod;
  7. use AlibabaCloud\SDK\Vod\V20170321\Models\GetPlayInfoRequest;
  8. use AlibabaCloud\Tea\Exception\TeaError;
  9. use Darabonba\OpenApi\Models\Config;
  10. use AlibabaCloud\SDK\Vod\V20170321\Models\CreateUploadVideoRequest;
  11. use AlibabaCloud\SDK\Vod\V20170321\Models\RefreshUploadVideoRequest;
  12. use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
  13. use AlibabaCloud\Tea\Utils\Utils;
  14. use \Exception;
  15. use AlibabaCloud\SDK\Vod\V20170321\Models\GetVideoPlayAuthRequest;
  16. require_once '../vendor/aliyunmail/aliyun-php-sdk-core/Config.php'; // 假定您的源码文件和aliyun-php-sdk处于同一目录
  17. $path = __DIR__ . \DIRECTORY_SEPARATOR . '..' . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
  18. if (file_exists($path)) require_once $path;
  19. /**
  20. * @title 阿里云视频点播【接口数据及格式为视频点播接口返回】
  21. * @controller VideoDemand
  22. * @group base
  23. */
  24. class VideoDemand extends Base
  25. {
  26. protected $account_name = 'vod@1122764885952286.onaliyun.com'; // 账号
  27. protected $login_secret = 'NKna#5y1mKBp58k)qqwJHhRcrUE!{ECT';// 密码
  28. protected $account_uid = '285664060640337784';// uid
  29. protected $access_key = 'LTAI5tN5SwDsN2km6PgZPScp';// key
  30. protected $access_secret = 'SqRcmQNYG8d7l2vjDLpVvibwT59bSj';//secret
  31. protected $role_arn= 'acs:ram::1122764885952286:role/voderole';//role_arn
  32. protected $role_session_name= 'voderole';//role_session_name
  33. /**
  34. * 使用AK&SK初始化账号Client
  35. * @param string $accessKeyId
  36. * @param string $accessKeySecret
  37. * @return Vod Client
  38. */
  39. public static function createClient($accessKeyId, $accessKeySecret){
  40. $config = new Config([
  41. // 您的 AccessKey ID
  42. "accessKeyId" => $accessKeyId,
  43. // 您的 AccessKey Secret
  44. "accessKeySecret" => $accessKeySecret
  45. ]);
  46. // 访问的域名
  47. $config->endpoint = "vod.cn-shanghai.aliyuncs.com";
  48. return new Vod($config);
  49. }
  50. /**
  51. * 获取本地文件对象
  52. * @return \think\File
  53. */
  54. private function getUploadFile()
  55. {
  56. try {
  57. return $this->request->file('file');
  58. } catch (\Exception $e) {
  59. $this->error(lang($e->getMessage()));
  60. }
  61. }
  62. /**
  63. * @title 获取视频播放凭证[STS方式]
  64. * @desc 获取视频播放凭证[STS方式]
  65. * @author qc
  66. * @url /api/Video_demand/getVideoCredentials
  67. * @method GET
  68. * @tag 视频播放凭证
  69. * @header name:Authorization require:1 desc:Token
  70. * @return name:RequestId type:string default:-- desc:RequestId
  71. * @return name:Arn type:string default:-- desc:RoleArn(Arn)
  72. * @return name:AssumedRoleId type:string default:-- desc:AssumedRoleId
  73. * @return name:SecurityToken type:string default:-- desc:SecurityToken
  74. * @return name:AccessKeyId type:string default:-- desc:AccessKeyId
  75. * @return name:AccessKeySecret type:string default:-- desc:AccessKeySecret
  76. * @return name:Expiration type:string default:-- desc:Expiration
  77. */
  78. public function getVideoCredentials()
  79. {
  80. //构建一个阿里云客户端,用于发起请求。
  81. //设置调用者(RAM用户或RAM角色)的AccessKey ID和AccessKey Secret。
  82. AlibabaCloud::accessKeyClient($this->access_key, $this->access_secret)->regionId('cn-hangzhou')->asDefaultClient();
  83. //设置参数,发起请求。
  84. try {
  85. $result = AlibabaCloud::rpc()
  86. ->product('Sts')
  87. ->scheme('https') // https | http
  88. ->version('2015-04-01')
  89. ->action('AssumeRole')
  90. ->method('POST')
  91. ->host('sts.aliyuncs.com')
  92. ->options([
  93. 'query' => [
  94. 'RegionId' => "cn-hangzhou",
  95. 'RoleArn' => $this->role_arn,
  96. 'RoleSessionName' =>$this->role_session_name,
  97. ],])
  98. ->request();
  99. $ret = $result->toArray();
  100. $ret['Credentials']['region'] = 'cn-shanghai';
  101. $this->success('请求成功',$ret);
  102. } catch (ClientException $e) {
  103. $this->error($e->getErrorMessage() . PHP_EOL);
  104. } catch (ServerException $e) {
  105. $this->error($e->getErrorMessage() . PHP_EOL);
  106. }
  107. }
  108. /**
  109. * @title 获取视频上传凭证
  110. * @desc 获取视频上传凭证
  111. * @author qc
  112. * @url /api/Video_demand/createUploadVideo
  113. * @method POST
  114. * @tag 获取视频上传凭证
  115. * @header name:Authorization require:1 desc:Token
  116. * @name name:file type:string default:-- desc:视频文件
  117. * @return name:requestId type:string default:-- desc:requestId
  118. * @return name:uploadAddress type:string default:-- desc:uploadAddress
  119. * @return name:uploadAuth type:string default:-- desc:uploadAuth
  120. * @return name:videoId type:string default:-- desc:videoId
  121. */
  122. public function createUploadVideo(){
  123. if (!($file = $this->getUploadFile()) || empty($file)) $this->error('文件上传异常,文件可能过大或未上传!');
  124. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) $this->error('文件上传类型受限,请在后台配置!');
  125. if ($file->checkExt('php,sh')) $this->error('可执行文件禁止上传到本地服务器!');
  126. $size = $file->getSize();
  127. $file_name = $file->getInfo('name');
  128. $extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  129. $up_param = [
  130. 'fileName'=>$file_name,
  131. 'FileSize'=>$size,
  132. 'title'=>'视频上传',
  133. ];
  134. try {
  135. $client = self::createClient($this->access_key, $this->access_secret);
  136. $createUploadVideoRequest = new CreateUploadVideoRequest($up_param);
  137. $runtime = new RuntimeOptions([]);
  138. $res = $client->createUploadVideoWithOptions($createUploadVideoRequest, $runtime);
  139. $json_res = json_encode($res,true);
  140. $res_arr = json_decode($json_res,true);
  141. }catch (\Exception $error){
  142. if (!($error instanceof TeaError)) {
  143. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  144. }
  145. $this->error($error->message);
  146. }
  147. $this->success('ok',$res_arr['body']);
  148. }
  149. /**
  150. * @title 刷新视频上传凭证
  151. * @desc 刷新视频上传凭证
  152. * @author qc
  153. * @url /api/Video_demand/refreshUploadVideoToken
  154. * @method GET
  155. * @tag 刷新视频上传凭证
  156. * @header name:Authorization require:1 desc:Token
  157. * @header name:Authorization require:1 desc:Token
  158. * @param name:ali_vid type:string default:-- desc:videoId
  159. * @return name:uploadAddress type:string default:-- desc:uploadAddress
  160. * @return name:uploadAuth type:string default:-- desc:uploadAuth
  161. * @return name:videoId type:string default:-- desc:videoId
  162. */
  163. public function refreshUploadVideoToken()
  164. {
  165. $client = self::createClient($this->access_key, $this->access_secret);
  166. $refreshUploadVideoRequest = new RefreshUploadVideoRequest([
  167. 'videoId'=>input('ali_vid'),
  168. ]);
  169. $runtime = new RuntimeOptions([]);
  170. try {
  171. // 复制代码运行请自行打印 API 的返回值
  172. $res = $client->refreshUploadVideoWithOptions($refreshUploadVideoRequest, $runtime);
  173. $json_res = json_encode($res,true);
  174. $res_arr = json_decode($json_res,true);
  175. }
  176. catch (\Exception $error) {
  177. if (!($error instanceof TeaError)) {
  178. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  179. }
  180. $this->error($error->message);
  181. }
  182. $this->success('ok',$res_arr['body'] );
  183. }
  184. /**
  185. * @title 获取视频播放凭证[通过视频ID获取]
  186. * @desc 获取视频播放凭证[通过视频ID获取]
  187. * @author qc
  188. * @url /api/Video_demand/getVideoCredentials
  189. * @method GET
  190. * @tag 视频播放凭证
  191. * @header name:Authorization require:1 desc:Token
  192. * @param name:ali_vid type:int require:1 default:0 desc:ali_vid
  193. * @return name:playAuth type:string default:-- desc:playAuth(时效3000s)
  194. * @return name:requestId type:string default:-- desc:requestId
  195. */
  196. public function getVideoCredentialsByVideoId()
  197. {
  198. $client = self::createClient($this->access_key, $this->access_secret);
  199. $getVideoPlayAuthRequest = new GetVideoPlayAuthRequest([
  200. 'videoId'=>input('ali_vid'),
  201. "authInfoTimeout" => 3000
  202. ]);
  203. $runtime = new RuntimeOptions([]);
  204. try {
  205. $res = $client->getVideoPlayAuthWithOptions($getVideoPlayAuthRequest, $runtime);
  206. $json_res = json_encode($res,true);
  207. $res_arr = json_decode($json_res,true);
  208. }catch (\Exception $error){
  209. if (!($error instanceof TeaError)) {
  210. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  211. }
  212. $this->error($error->message);
  213. }
  214. // 复制代码运行请自行打印 API 的返回值
  215. $this->success('ok',$res_arr['body'] );
  216. }
  217. /**
  218. * @title 获取视频播放地址[通过视频ID获取]
  219. * @desc 获取视频播放地址[通过视频ID获取]
  220. * @author qc
  221. * @url /api/Video_demand/getVideoPath
  222. * @method GET
  223. * @tag 视频播放凭证
  224. * @header name:Authorization require:1 desc:Token
  225. * @param name:ali_vid type:int require:1 default:0 desc:ali_vid
  226. * @return name:playInfoList type:array default:-- desc:playInfoList
  227. * @return name:playInfoList.playInfo.playURL type:string default:-- desc:播放地址
  228. */
  229. public function getVideoPath()
  230. {
  231. $client = self::createClient($this->access_key, $this->access_secret);
  232. $getVideoPlayAuthRequest = new GetPlayInfoRequest(['videoId'=>input('ali_vid')]);
  233. $runtime = new RuntimeOptions([]);
  234. try {
  235. $res = $client->getPlayInfoWithOptions($getVideoPlayAuthRequest, $runtime);
  236. $json_res = json_encode($res,true);
  237. $res_arr = json_decode($json_res,true);
  238. }catch (\Exception $error){
  239. if (!($error instanceof TeaError)) {
  240. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  241. }
  242. $this->error($error->message);
  243. }
  244. $this->success('ok',$res_arr['body'] );
  245. }
  246. // 测试上传网络视频
  247. function testUploadWebVideo()
  248. {
  249. if (!($file = $this->getUploadFile()) || empty($file)) $this->error('文件上传异常,文件可能过大或未上传!');
  250. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) $this->error('文件上传类型受限,请在后台配置!');
  251. if ($file->checkExt('php,sh')) $this->error('可执行文件禁止上传到本地服务器!');
  252. $size = $file->getSize();
  253. $file_name = $file->getInfo('name');
  254. $extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  255. var_dump($file);die();
  256. $up_param = [
  257. 'fileName'=>$file_name,
  258. 'FileSize'=>$size,
  259. 'title'=>'视频上传',
  260. ];
  261. try {
  262. $uploader = new \AliyunVodUploader($this->access_key, $this->access_secret);
  263. $uploadVideoRequest = new \UploadVideoRequest($fileURL, 'testUploadWebVideo via PHP-SDK');
  264. $res = $uploader->uploadWebVideo($uploadVideoRequest);
  265. print_r($res);
  266. } catch (Exception $e) {
  267. printf("testUploadWebVideo Failed, ErrorMessage: %s\n Location: %s %s\n Trace: %s\n",
  268. $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
  269. }
  270. }
  271. }