123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- // This file is auto-generated, don't edit it. Thanks.
- namespace app\api\controller;
- use app\common\controller\Api;
- use AlibabaCloud\SDK\Vod\V20170321\Vod;
- use \Exception;
- use AlibabaCloud\Tea\Exception\TeaError;
- use AlibabaCloud\Tea\Utils\Utils;
- use library\File;
- use Darabonba\OpenApi\Models\Config;
- use AlibabaCloud\SDK\Vod\V20170321\Models\CreateUploadVideoRequest;
- use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
- use AlibabaCloud\SDK\Vod\V20170321\Models\GetPlayInfoRequest;
- $path = __DIR__ . \DIRECTORY_SEPARATOR . '..' . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
- if (file_exists($path))require_once $path;
- class Sample extends Base
- {
- protected $id ;
- protected $key;
- protected $host;
- protected $accessKeyId = 'LTAI5tJ5p12drZegeWVG33xZ';
- protected $accessKeySecret = '82UWAiY5e5wH8tSkRvMtqVoGO0h8SB';
- protected $endpoint = 'outin-146bbb17cdb211ec935300163e1c7426.oss-cn-shanghai.aliyuncs.com';
- public function initialize(){
- $this->id = config('app.ali_set.Key');
- $this->key = config('app.ali_set.secret');
- $this->host = config('app.ali_set.host');
- }
- /**
- * 使用AK&SK初始化账号Client
- * @param string $accessKeyId
- * @param string $accessKeySecret
- * @return Vod Client
- */
- public static function createClient($accessKeyId, $accessKeySecret)
- {
- $config = new Config([
- // 您的 AccessKey ID
- "accessKeyId" => $accessKeyId,
- // 您的 AccessKey Secret
- "accessKeySecret" => $accessKeySecret
- ]);
- // 访问的域名
- $config->endpoint ='vod.cn-shanghai.aliyuncs.com';
- return new Vod($config);
- }
- // 文件上传
- public function upload()
- {
- if (!($file = $this->getUploadFile()) || empty($file)) $this->error('文件上传异常,文件可能过大或未上传!');
- if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) $this->error('文件上传类型受限,请在后台配置!');
- if ($file->checkExt('php,sh')) $this->error('可执行文件禁止上传到本地服务器!');
- $size = $file->getSize();
- $file_name = $file->getInfo('name');
- $extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
- $up_param = [
- 'fileName'=>$file_name,
- 'FileSize'=>$size,
- 'title'=>'视频上传',
- ];
- var_dump($up_param);
- $client = self::createClient($this->accessKeyId, $this->accessKeySecret);
- $createUploadVideoRequest = new CreateUploadVideoRequest($up_param);
- $runtime = new RuntimeOptions([]);
- try {
- // 复制代码运行请自行打印 API 的返回值
- $res = $client->createUploadVideoWithOptions($createUploadVideoRequest, $runtime);
- //$c = json_encode(simplexml_load_string($res, 'SimpleXMLElement', LIBXML_NOCDATA));
- var_dump(json_decode(json_encode($res),true));
- } catch (Exception $error) {
- if (!($error instanceof TeaError)) {
- $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
- }
- // 如有需要,请打印 error
- Utils::assertAsString($error->message);
- var_dump($error->message.'22222');
- }
- }
- /**
- * 获取本地文件对象
- * @return \think\File
- */
- private function getUploadFile()
- {
- try {
- return $this->request->file('file');
- } catch (\Exception $e) {
- $this->error(lang($e->getMessage()));
- }
- }
- }
|