<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ThinkChat2.0新版上線,更智能更精彩,支持會話、畫圖、視頻、閱讀、搜索等,送10W Token,即刻開啟你的AI之旅 廣告
                ## 阿里云盤 阿里云盤是阿里巴巴集團推出的一款個人云存儲服務產品。它為用戶提供了一個安全、穩定、高效的云端存儲空間,用戶可以在其中存儲、管理和同步各種類型的文件和數據。 阿里云盤是個人和團隊管理數字資產的有力工具,尤其適合需要在多設備間同步工作文件和數據的用戶。 ## 開放平臺 阿里云盤開放個人云存儲能力,允許開發者通過對接 API 的方式,集成阿里云盤個人云存儲能力到開發者的應用中。 目前開放的能力包括文件上傳下載等基礎文件管理能力、音視頻文件的在線轉碼與播放等媒體在線播放能力、用戶授權與信息查詢等能力。 > 阿里云網盤對接文檔地址:https://www.yuque.com/aliyundrive/zpfszx/gogo34oi2gy98w5d ![](https://img.kancloud.cn/37/1d/371d4d1512860717bdcf952da88e42fa_1920x1035.png) ## 接入流程 > 服務端 API 調用流程如下圖所示 ![](https://img.kancloud.cn/23/1a/231aec2d4666110e1567861d26d5e2fc_821x96.png) ### 創建應用 ![](https://img.kancloud.cn/71/d6/71d634e66a476637d2b87cce506e0a7b_735x546.png) ![](https://img.kancloud.cn/f7/c6/f7c6d7b3538752b4e2b016432e7476cc_1275x606.png) > 創建應用以獲取應用接入憑證,包括 `appid`、`secret` ### 編寫應用 核心調用類 ``` <?php /** * @desc ADrive https://www.yuque.com/aliyundrive/zpfszx * @author Tinywan(ShaoBo Wan) * @date 2024/8/7 22:57 */ declare(strict_types=1); namespace app\common\service; use Psr\SimpleCache\InvalidArgumentException; use support\exception\BusinessException; use support\Log; use think\facade\Cache; class ADrive { const ACCESS_TOKEN = 'ADRIVE_ACCESS_TOKEN:'; /** @var array */ private array $config = []; /** @var string */ private string $http = 'https://openapi.aliyundrive.com/'; /** @var string */ private string $redirect_uri = 'http://webman2024.tinywan.com:8484/test/adrive-callback'; /** @var array */ private array $url = [ 'access_token' => 'oauth/access_token', 'authorize' => 'oauth/authorize', 'drive' => 'adrive/v1.0/user/getDriveInfo', 'create' => 'adrive/v1.0/openFile/create', 'complete' => 'adrive/v1.0/openFile/complete', 'fileList' => 'adrive/v1.0/openFile/list', 'deleteFile' => 'adrive/v1.0/openFile/recyclebin/trash', 'searchList' => 'adrive/v1.0/openFile/search', 'updateFile' => 'adrive/v1.0/openFile/update', 'starredList' => 'adrive/v1.0/openFile/starredList', 'getDownloadUrl' => 'adrive/v1.0/openFile/getDownloadUrl' ]; /** * @var PublicHttp|null */ private ?PublicHttp $publicHttp = null; /** * @param int $agencyId */ public function __construct(int $agencyId = 0) { $agencyInfo['id'] = 2024; $agencyInfo['aly_appid'] = '282392bf68014e13b5db2a2b35d9b3ce'; $agencyInfo['aly_secret'] = 'a524d58d17a44c1faaa914db460be16a'; if ($this->publicHttp == null) { $this->publicHttp = new PublicHttp(); } $this->config = $agencyInfo; } /** * @desc 登錄授權 * @author Tinywan(ShaoBo Wan) */ public function authorize(): string { return $this->http . $this->url['authorize'] . '?client_id=' . $this->config['aly_appid'] . '&redirect_uri=' . $this->redirect_uri . '&scope=user:base,file:all:read,file:all:write&response_type=code&state=' . $this->config['id']; } /** * @desc getToken * @param int $type * @param string $code * @return bool|mixed|string * @throws InvalidArgumentException * @author Tinywan(ShaoBo Wan) */ public function getToken(string $code, int $type = 1) { $info = [ 'client_id' => $this->config['aly_appid'], 'client_secret' => $this->config['aly_secret'], 'grant_type' => $type == 1 ? 'authorization_code' : 'refresh_token', ]; if ($type == 1) { $info['code'] = $code; } else { if (empty($this->config['id'])) { throw new \Exception('未傳入旅行社標識'); } $token = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($token)) { throw new \Exception('未有阿里云盤緩存'); } $value = $token['refresh_token']; $info['refresh_token'] = $value; } $result = $this->publicHttp->postAlyFile($this->http . $this->url['access_token'], $info); Log::info('[阿里云云盤獲取令牌]' . json_encode($result, JSON_UNESCAPED_UNICODE)); if (!is_array($result)) { $result = json_decode($result, true); } Cache::set(self::ACCESS_TOKEN . $this->config['id'], $result, 7200); return $result; } /** * @desc 獲取阿里云盤用戶drive_id * @throws \Exception * @author Tinywan(ShaoBo Wan) */ public function getUserDrive(): array { $userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($userToken)) { throw new \Exception('登錄失效,請重新授權阿里網盤'); } $result = $this->publicHttp->postAlyFile($this->http . $this->url['drive'], [], ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if (!is_array($result)) { $result = json_decode($result, true); } if (empty($result['default_drive_id'])) { throw new \Exception('獲取阿里云盤drive_id失敗'); } Cache::set('aly_drive_' . $this->config['id'], $result['default_drive_id']); Cache::set('aly_userInfo_' . $this->config['id'], $result); return ['status' => 0, 'msg' => '獲取用戶drive成功', 'data' => $result['default_drive_id']]; } /** * 阿里云盤文件上傳 * file_name 文件名稱 * file_path 文件路徑 * file_id 上傳的目錄 */ public function updateFile(array $input): array { $userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($userToken)) { throw new \Exception('登錄失效,請重新授權阿里網盤'); } $drive = Cache::get('aly_drive_' . $this->config['id']); if (empty($drive)) { try { $driveInfo = $this->getUserDrive(); $drive = $driveInfo['data']; } catch (\Throwable $exception) { return ['status' => 1, 'msg' => $exception->getMessage()]; } } $fileName = $input['file_name'] . date('Y-m-d-H:i:s'); $result = $this->publicHttp->postAlyFile($this->http . $this->url['create'], [ 'drive_id' => $drive, 'parent_file_id' => empty($input['file_id']) ? 'root' : $input['file_id'], 'type' => 'file', 'check_name_mode' => 'ignore', 'name' => $fileName, ], ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if (!is_array($result)) { $result = json_decode($result, true); } if (empty($result['part_info_list'][0]['upload_url'])) { throw new \Exception('獲取上傳路徑失敗'); } $sourceFile = fopen($input['file_path'], "rb"); $res = $this->publicHttp->putAlyFile($result['part_info_list'][0]['upload_url'], $sourceFile, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if ($res['code'] != 1) { throw new \Exception('上傳文件失敗'); } //上傳成功后調用上傳完畢 $onMsg = $this->publicHttp->postAlyFile($this->http . $this->url['complete'], [ 'drive_id' => $drive, 'file_id' => $result['file_id'], 'upload_id' => $result['upload_id'], ], ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if (!is_array($onMsg)) { $onMsg = json_decode($onMsg, true); } if (empty($onMsg['name'])) { throw new \Exception('同步阿里云網盤失敗'); } return ['status' => 0, 'msg' => '上傳文件成功', 'file_id' => $result['file_id']]; } /** * 新建文件夾 * file_name 文件夾名稱 * file_type =1 不追加日期 =2追加日期 **/ public function addFile($input) { $userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($userToken)) { throw new \Exception('登錄失效,請重新授權阿里網盤'); } $drive = Cache::get('aly_drive_' . $this->config['id']); if (empty($drive)) { try { $driveInfo = $this->getUserDrive(); $drive = $driveInfo['data']; } catch (\Throwable $exception) { return ['status' => 1, 'msg' => $exception->getMessage()]; } } $list = [ 'drive_id' => $drive, 'parent_file_id' => empty($input['file_id']) ? 'root' : $input['file_id'], 'type' => 'folder', 'check_name_mode' => 'ignore', 'name' => ($input['file_type'] == 1 ? '' : $input['file_name'] . '-時間:' . date('Y-m-d H:i:s')) ]; $result = $this->publicHttp->postAlyFile($this->http . $this->url['create'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if (!is_array($result)) { $result = json_decode($result, true); } if (empty($result['file_id'])) { return ['status' => 1, 'msg' => '新建文件失敗']; } return ['status' => 0, 'msg' => '操作成功', 'file_id' => $result['file_id']]; } /** * 獲取文件夾列表 * limit 最大數量 50-100 * marker 分頁標記 * parent_file_id root 等于根目錄 否則傳入文件列表ID * order_by 排序字段 updated_at created_at name size * order_direction DESC ASC * */ public function fileList($input) { $userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($userToken)) { throw new \Exception('登錄失效,請重新授權阿里網盤'); } $drive = Cache::get('aly_drive_' . $this->config['id']); if (empty($drive)) { try { $driveInfo = $this->getUserDrive(); $drive = $driveInfo['data']; } catch (\Throwable $exception) { return ['status' => 1, 'msg' => $exception->getMessage()]; } } $list = [ 'drive_id' => $drive, 'order_by' => empty($input['order_by']) ? 'updated_at' : $input['order_by'], 'order_direction' => empty($input['order_direction']) ? 'DESC' : $input['order_direction'], 'parent_file_id' => empty($input['parent_file_id']) ? 'root' : $input['parent_file_id'], 'type' => 'all', 'limit' => (int)$input['limit'], 'fields' => '*' ]; if (!empty($input['marker'])) { $list['marker'] = $input['marker']; } $result = $this->publicHttp->postAlyFile($this->http . $this->url['fileList'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if (!is_array($result)) { $result = json_decode($result, true); } foreach ($result['items'] as &$value) { $value['created_at'] = date('Y-m-d H:i:s', strtotime($value['created_at'])); $value['updated_at'] = date('Y-m-d H:i:s', strtotime($value['updated_at'])); $value['show_ico'] = false; if ($value['type'] == 'folder') { $value['type_name'] = '文件夾'; } else { $value['type_name'] = '文件'; } } return ['status' => 0, 'rows' => $result['items'], 'next_marker' => $result['next_marker']]; } /** * @desc 文件名稱 * keyword 文件名稱 * limit 條數 * @param array $input * @return array * @throws \Exception * @author Tinywan(ShaoBo Wan) */ public function searchList(array $input) { $userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($userToken)) { throw new \Exception('登錄失效,請重新授權阿里網盤'); } $drive = Cache::get('aly_drive_' . $this->config['id']); if (empty($drive)) { try { $driveInfo = $this->getUserDrive(); $drive = $driveInfo['data']; } catch (\Throwable $exception) { return ['status' => 1, 'msg' => $exception->getMessage()]; } } $list = [ 'drive_id' => $drive, 'limit' => (int)$input['limit'], 'fields' => '*', 'query' => 'name match "' . $input['keyword'] . '"' ]; if (!empty($input['marker'])) { $list['marker'] = $input['marker']; } $result = $this->publicHttp->postAlyFile($this->http . $this->url['searchList'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if (!is_array($result)) { $result = json_decode($result, true); } foreach ($result['items'] as &$value) { $value['created_at'] = date('Y-m-d H:i:s', strtotime($value['created_at'])); $value['updated_at'] = date('Y-m-d H:i:s', strtotime($value['updated_at'])); $value['show_ico'] = false; if ($value['type'] == 'folder') { $value['type_name'] = '文件夾'; } else { $value['type_name'] = '文件'; } } return ['status' => 0, 'rows' => $result['items'], 'next_marker' => $result['next_marker']]; } /** * @desc 獲取收藏列表 * @param $input * @return array * @throws BusinessException|InvalidArgumentException * @author Tinywan(ShaoBo Wan) */ public function starredList($input): array { $userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($userToken)) { throw new BusinessException('登錄失效,請重新授權阿里網盤'); } $drive = Cache::get('aly_drive_' . $this->config['id']); if (empty($drive)) { try { $driveInfo = $this->getUserDrive(); $drive = $driveInfo['data']; } catch (\Throwable $exception) { return ['status' => 1, 'msg' => $exception->getMessage()]; } } $list = [ 'drive_id' => $drive, 'order_by' => empty($input['order_by']) ? 'updated_at' : $input['order_by'], 'order_direction' => empty($input['order_direction']) ? 'DESC' : $input['order_direction'], 'limit' => (int)$input['limit'], ]; if (!empty($input['marker'])) { $list['marker'] = $input['marker']; } $result = $this->publicHttp->postAlyFile($this->http . $this->url['starredList'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if (!is_array($result)) { $result = json_decode($result, true); } foreach ($result['items'] as &$value) { $value['created_at'] = date('Y-m-d H:i:s', strtotime($value['created_at'])); $value['updated_at'] = date('Y-m-d H:i:s', strtotime($value['updated_at'])); $value['show_ico'] = false; if ($value['type'] == 'folder') { $value['type_name'] = '文件夾'; } else { $value['type_name'] = '文件'; } } return ['status' => 0, 'rows' => $result['items'], 'next_marker' => $result['next_marker']]; } /** * @desc 文件重命名或收藏 * @param $input * @return array * @throws \Exception|InvalidArgumentException * @author Tinywan(ShaoBo Wan) */ public function fileRename($input) { $userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($userToken)) { throw new \Exception('登錄失效,請重新授權阿里網盤'); } $drive = Cache::get('aly_drive_' . $this->config['id']); if (empty($drive)) { try { $driveInfo = $this->getUserDrive(); $drive = $driveInfo['data']; } catch (\Throwable $exception) { return ['status' => 1, 'msg' => $exception->getMessage()]; } } $list = [ 'drive_id' => $drive, 'file_id' => $input['file_id'], 'name' => $input['name'], 'starred' => $input['starred'] ]; $result = $this->publicHttp->postAlyFile($this->http . $this->url['updateFile'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if (!is_array($result)) { $result = json_decode($result, true); } if (empty($result['file_id'])) { return ['status' => 1, 'msg' => '操作失敗']; } return ['status' => 0, 'msg' => '操作成功']; } /** * @desc 放入回收站 * @param array $input * @return array * @throws \Exception * @author Tinywan(ShaoBo Wan) */ public function deleteFile(array $input): array { $userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($userToken)) { throw new \Exception('登錄失效,請重新授權阿里網盤'); } $drive = Cache::get('aly_drive_' . $this->config['id']); if (empty($drive)) { try { $driveInfo = $this->getUserDrive(); $drive = $driveInfo['data']; } catch (\Throwable $exception) { return ['status' => 1, 'msg' => $exception->getMessage()]; } } $this->publicHttp->postAlyFile($this->http . $this->url['deleteFile'], [ 'drive_id' => $drive, 'file_id' => $input['file_id'] ], ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); return ['status' => 0, 'msg' => '放入成功']; } /** * @desc 獲取下載鏈接 * @param array $input * @return array * @throws \Exception * @throws InvalidArgumentException * @author Tinywan(ShaoBo Wan) */ public function getDownloadUrl(array $input): array { $userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']); if (empty($userToken)) { throw new \Exception('登錄失效,請重新授權阿里網盤'); } $drive = Cache::get('aly_drive_' . $this->config['id']); if (empty($drive)) { try { $driveInfo = $this->getUserDrive(); $drive = $driveInfo['data']; } catch (\Throwable $exception) { return ['status' => 1, 'msg' => $exception->getMessage()]; } } $list = [ 'drive_id' => $drive, 'file_id' => $input['file_id'], ]; $result = $this->publicHttp->postAlyFile($this->http . $this->url['getDownloadUrl'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]); if (!is_array($result)) { $result = json_decode($result, true); } if (empty($result['url'])) { return ['status' => 1, 'msg' => '獲取下載鏈接失敗']; } return ['status' => 0, 'msg' => '操作成功', 'url' => $result['url']]; } } ``` 簡單請求類 ``` <?php /** * @desc PublicHttp.php 描述信息 * @author Tinywan(ShaoBo Wan) * @date 2024/8/7 23:05 */ declare(strict_types=1); namespace app\common\service; class PublicHttp { /** * @desc postAlyFile * @param string $_url * @param array $params * @param array $header * @return bool|string * @author Tinywan(ShaoBo Wan) */ public function postAlyFile(string $_url, array $params,array $header=[]) { $headerArray = array("Content-Type:application/json;charset=utf-8", "Accept:application/json"); if (!empty($header)) { $headerArray = array_merge($headerArray, $header); } $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch, CURLOPT_URL, $_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)'); curl_setopt($ch, CURLOPT_TIMEOUT, 15); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($params)); curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArray); $output = curl_exec($ch); curl_close($ch); return $output; } /** * @desc put請求 * @param string $url * @param $sourceFile * @param array $headerArr * @param int $timeout * @return array * @author Tinywan(ShaoBo Wan) */ function putAlyFile(string $url, $sourceFile, array $headerArr = [], int $timeout = 30): array { $ch = curl_init(); //初始化curl curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //返回字符串,而不直接輸出 curl_setopt($ch, CURLOPT_URL, $url); //設置put到的url curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArr); curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); curl_setopt($ch, CURLOPT_HEADER, 1); // 啟用時會將頭文件的信息作為數據流輸出。 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); //設置請求方式 curl_setopt($ch, CURLOPT_PUT, true); //設置為PUT請求 curl_setopt($ch, CURLOPT_INFILE, $sourceFile); //設置資源句柄 $response = curl_exec($ch); if ($error = curl_error($ch)){ $bkArr = array( 'code' => 0, 'msg' => $error, ); } else{ $bkArr = array( 'code' => 1, 'msg' => 'ok', 'data' => $response ); } curl_close($ch); // 關閉 cURL 釋放資源 return $bkArr; } } ``` ### 調用編寫 獲取授權碼 ```php /** * @desc: 獲取授權碼 * @param Request $request * @return Response * @author Tinywan(ShaoBo Wan) */ public function authorize(Request $request): Response { $aDriver = new ADrive(); return redirect($aDriver->authorize()); } ``` 回調配置參考 ``` /** * @param Request $request * @return Response * @throws InvalidArgumentException * @author Tinywan(ShaoBo Wan) */ public function aDriveCallback(Request $request): Response { Log::info('[請求回調參數]:'.json_encode($request->get())); $code = $request->get()['code']; $aDriver = new ADrive(); $token = $aDriver->getToken($code); Log::info('[獲取訪問憑證 (access_token)]:'.json_encode($token)); return response_json(200, '請求成功',['token'=>$token]); } ``` > 以上回調地址必須可以通過公網訪問的到。我這里配置的回調地址是`http://webman2024.tinywan.com:8484/test/adrive-callback` 令牌響應格式為: ```json { "token_type": "Bearer", "access_token": "eyJraWQiOiJxxxxxxxxxxxx", "refresh_token": "eyJ0eXAxxxxxxxxxxxxxxmt7WOaMbEXVWNKJdw", "expires_in": 7200 } ``` > 阿里云盤開放平臺使用 OAuth 2.0 授權標準,接入前請閱讀。https://www.yuque.com/aliyundrive/zpfszx/rgg2p1qnsfdux61r?singleDoc# ### 授權應用 > 獲取授權頁面鏈接:http://webman2024.tinywan.com:8484/test/authorize ![](https://img.kancloud.cn/2c/20/2c20df206f059c1d44a7c8aadb2ebbec_408x829.png) 瀏覽器打開鏈接后使用阿里云網盤掃碼授權成功后,回調獲取用戶信息就可以直接調用用戶的阿里云網盤功能. ## 上傳文件 ``` /** * @desc 文件上傳 * @param Request $request * @return Response * @throws \Exception * @author Tinywan(ShaoBo Wan) */ public function uploadFile(Request $request): Response { $aDriver = new ADrive(); $param = [ 'file_name' => '開源技術小棧-文件上傳測試', 'file_path' => runtime_path().DIRECTORY_SEPARATOR.'swoole.jpg', ]; $res = $aDriver->updateFile($param); Log::info('[文件上傳-響應結果] '.json_encode($res)); return response_json(200, '請求成功',$res); } ``` 響應結果 ```json { "code": 200, "msg": "請求成功", "data": { "status": 0, "msg": "上傳文件成功", "file_id": "66b5b06c8e278ff7d300479fac0fb623fdfe299a" } } ``` > 云盤上傳結果 ![](https://img.kancloud.cn/04/bc/04bcff830956c4689af65daebc63b05d_1278x576.png)
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看