Sample.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace app\api\controller;
  4. use app\common\controller\Api;
  5. use AlibabaCloud\SDK\Vod\V20170321\Vod;
  6. use \Exception;
  7. use AlibabaCloud\Tea\Exception\TeaError;
  8. use AlibabaCloud\Tea\Utils\Utils;
  9. use library\File;
  10. use Darabonba\OpenApi\Models\Config;
  11. use AlibabaCloud\SDK\Vod\V20170321\Models\CreateUploadVideoRequest;
  12. use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
  13. use AlibabaCloud\SDK\Vod\V20170321\Models\GetPlayInfoRequest;
  14. $path = __DIR__ . \DIRECTORY_SEPARATOR . '..' . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
  15. if (file_exists($path))require_once $path;
  16. class Sample extends Base
  17. {
  18. protected $id ;
  19. protected $key;
  20. protected $host;
  21. protected $accessKeyId = 'LTAI5tJ5p12drZegeWVG33xZ';
  22. protected $accessKeySecret = '82UWAiY5e5wH8tSkRvMtqVoGO0h8SB';
  23. protected $endpoint = 'outin-146bbb17cdb211ec935300163e1c7426.oss-cn-shanghai.aliyuncs.com';
  24. public function initialize(){
  25. $this->id = config('app.ali_set.Key');
  26. $this->key = config('app.ali_set.secret');
  27. $this->host = config('app.ali_set.host');
  28. }
  29. /**
  30. * 使用AK&SK初始化账号Client
  31. * @param string $accessKeyId
  32. * @param string $accessKeySecret
  33. * @return Vod Client
  34. */
  35. public static function createClient($accessKeyId, $accessKeySecret)
  36. {
  37. $config = new Config([
  38. // 您的 AccessKey ID
  39. "accessKeyId" => $accessKeyId,
  40. // 您的 AccessKey Secret
  41. "accessKeySecret" => $accessKeySecret
  42. ]);
  43. // 访问的域名
  44. $config->endpoint ='vod.cn-shanghai.aliyuncs.com';
  45. return new Vod($config);
  46. }
  47. // 文件上传
  48. public function upload()
  49. {
  50. if (!($file = $this->getUploadFile()) || empty($file)) $this->error('文件上传异常,文件可能过大或未上传!');
  51. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) $this->error('文件上传类型受限,请在后台配置!');
  52. if ($file->checkExt('php,sh')) $this->error('可执行文件禁止上传到本地服务器!');
  53. $size = $file->getSize();
  54. $file_name = $file->getInfo('name');
  55. $extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  56. $up_param = [
  57. 'fileName'=>$file_name,
  58. 'FileSize'=>$size,
  59. 'title'=>'视频上传',
  60. ];
  61. var_dump($up_param);
  62. $client = self::createClient($this->accessKeyId, $this->accessKeySecret);
  63. $createUploadVideoRequest = new CreateUploadVideoRequest($up_param);
  64. $runtime = new RuntimeOptions([]);
  65. try {
  66. // 复制代码运行请自行打印 API 的返回值
  67. $res = $client->createUploadVideoWithOptions($createUploadVideoRequest, $runtime);
  68. //$c = json_encode(simplexml_load_string($res, 'SimpleXMLElement', LIBXML_NOCDATA));
  69. var_dump(json_decode(json_encode($res),true));
  70. } catch (Exception $error) {
  71. if (!($error instanceof TeaError)) {
  72. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  73. }
  74. // 如有需要,请打印 error
  75. Utils::assertAsString($error->message);
  76. var_dump($error->message.'22222');
  77. }
  78. }
  79. /**
  80. * 获取本地文件对象
  81. * @return \think\File
  82. */
  83. private function getUploadFile()
  84. {
  85. try {
  86. return $this->request->file('file');
  87. } catch (\Exception $e) {
  88. $this->error(lang($e->getMessage()));
  89. }
  90. }
  91. }