From 09df400a94a80a4ef9584ef9e9808e09f86b1fb3 Mon Sep 17 00:00:00 2001 From: Chenx221 Date: Thu, 11 Apr 2024 18:46:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D"=E6=96=87=E4=BB=B6=E8=A7=A3?= =?UTF-8?q?=E5=8E=8B=E4=BD=8D=E7=BD=AE=E9=94=99=E8=AF=AF"=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20*=E7=8E=B0=E5=9C=A8=E8=A7=A3=E5=8E=8B=E4=B8=8D?= =?UTF-8?q?=E7=AE=A1=E6=88=90=E4=B8=8D=E6=88=90=E5=8A=9F=EF=BC=8C=E9=83=BD?= =?UTF-8?q?=E4=BC=9A=E9=87=8D=E6=96=B0=E5=8A=A0=E8=BD=BD=E5=BD=93=E5=89=8D?= =?UTF-8?q?=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- controllers/HomeController.php | 44 ++++++++++++++++++---------------- web/js/home_script.js | 15 +++++------- 2 files changed, 29 insertions(+), 30 deletions(-) diff --git a/controllers/HomeController.php b/controllers/HomeController.php index 7dab0c9..c632779 100644 --- a/controllers/HomeController.php +++ b/controllers/HomeController.php @@ -40,7 +40,7 @@ class HomeController extends Controller 'rules' => [ [ 'allow' => true, - 'actions' => ['index', 'download', 'preview', 'rename', 'delete', 'upload', 'new-folder', 'download-folder', 'multi-ff-zip-dl', 'zip', 'unzip', 'paste', 'search','checksum'], + 'actions' => ['index', 'download', 'preview', 'rename', 'delete', 'upload', 'new-folder', 'download-folder', 'multi-ff-zip-dl', 'zip', 'unzip', 'paste', 'search', 'checksum'], 'roles' => ['user'], ], ], @@ -635,36 +635,33 @@ class HomeController extends Controller throw new NotFoundHttpException('Failed to open the archive.'); } $now_time = time(); - $targetDirectory = Yii::getAlias(Yii::$app->params['dataDirectory']) . '/' . Yii::$app->user->id . '/' . pathinfo($relativePath, PATHINFO_FILENAME) . '_' . $now_time; +// $targetDirectory = Yii::getAlias(Yii::$app->params['dataDirectory']) . '/' . Yii::$app->user->id . '/' . pathinfo($relativePath, PATHINFO_FILENAME) . '_' . $now_time; + $targetDirectory = dirname($absolutePath) . '/' . pathinfo($relativePath, PATHINFO_FILENAME) . '_unpacked_' . $now_time; if (!is_dir($targetDirectory)) { mkdir($targetDirectory, 0777, true); } try { - $archive->extract($targetDirectory); - Yii::$app->response->format = Response::FORMAT_JSON; - if (!FileSizeHelper::hasEnoughSpace()) { - $this->deleteDirectory($targetDirectory); + if (!FileSizeHelper::hasEnoughSpace($archive->getOriginalSize())) { Yii::$app->session->setFlash('error', '解压失败,空间不足'); return [ 'status' => 500, - 'directory' => pathinfo($relativePath, PATHINFO_FILENAME) . '_' . $now_time, 'parentDirectory' => dirname($relativePath), ]; - } else { - Yii::$app->session->setFlash('success', '解压成功'); - return [ - 'status' => 200, - 'directory' => pathinfo($relativePath, PATHINFO_FILENAME) . '_' . $now_time, - ]; } + $archive->extract($targetDirectory); + Yii::$app->response->format = Response::FORMAT_JSON; + Yii::$app->session->setFlash('success', '解压成功'); + return [ + 'status' => 200, + 'parentDirectory' => dirname($relativePath), + ]; } catch (ArchiveExtractionException) { $this->deleteDirectory($targetDirectory); Yii::$app->session->setFlash('error', '解压过程中出现错误'); Yii::$app->response->format = Response::FORMAT_JSON; return [ 'status' => 500, - 'directory' => pathinfo($relativePath, PATHINFO_FILENAME) . '_' . $now_time, 'parentDirectory' => dirname($relativePath), ]; } @@ -675,7 +672,8 @@ class HomeController extends Controller * * @return Response */ - public function actionPaste(): Response + public + function actionPaste(): Response { // 获取请求中的操作类型、相对路径和目标目录 $operation = Yii::$app->request->post('operation'); @@ -764,7 +762,8 @@ class HomeController extends Controller * @param string $destination 目标目录路径 * @return bool 操作是否成功 */ - protected function copyDirectory(string $source, string $destination): bool + protected + function copyDirectory(string $source, string $destination): bool { // 创建目标目录 if (!mkdir($destination)) { @@ -809,7 +808,8 @@ class HomeController extends Controller * @param string $destination 目标目录路径 * @return bool 操作是否成功 */ - protected function moveDirectory(string $source, string $destination): bool + protected + function moveDirectory(string $source, string $destination): bool { // 创建目标目录 if (!mkdir($destination)) { @@ -858,7 +858,8 @@ class HomeController extends Controller * @return array * @throws NotFoundHttpException */ - public function actionChecksum(): array + public + function actionChecksum(): array { $relativePath = Yii::$app->request->post('relativePath'); if (!preg_match($this->pattern, $relativePath) || str_contains($relativePath, '..')) { @@ -883,10 +884,11 @@ class HomeController extends Controller /** * @throws NotFoundHttpException */ - public function actionSearch(): Response + public + function actionSearch(): Response { if (Yii::$app->request->isAjax) { - $directory = empty(Yii::$app->request->post('directory'))?'.':Yii::$app->request->post('directory'); + $directory = empty(Yii::$app->request->post('directory')) ? '.' : Yii::$app->request->post('directory'); $keyword = Yii::$app->request->post('keyword'); if ($keyword == null) { return $this->asJson(['status' => 'error', 'message' => '关键词不能为空']); @@ -909,7 +911,7 @@ class HomeController extends Controller $results[] = [ 'name' => $file->getFilename(), 'type' => FileTypeDetector::detect($file->getPathname()), - 'relativePath' => $directory.str_replace($absolutePath, '', $file->getPath()) + 'relativePath' => $directory . str_replace($absolutePath, '', $file->getPath()) ]; } } diff --git a/web/js/home_script.js b/web/js/home_script.js index 8fb2a01..63e663a 100644 --- a/web/js/home_script.js +++ b/web/js/home_script.js @@ -104,13 +104,10 @@ $(document).on('click', '.unzip-btn', function () { dataType: "json", // 期望从服务器接收json格式的响应 success: function (response) { // 如果服务器返回的状态码是200,说明解压成功 - if (response.status === 200) { - // 刷新页面,加载到解压后的目录 - window.location.href = 'index.php?r=home%2Findex&directory=' + encodeURIComponent(response.directory); - } else { + if (response.status !== 200) { console.error('Unzip failed: ' + response.message); - window.location.href = 'index.php?r=home%2Findex&directory=' + encodeURIComponent(response.parentDirectory); } + window.location.href = 'index.php?r=home%2Findex&directory=' + encodeURIComponent(response.parentDirectory); }, error: function () { // 处理错误 @@ -683,10 +680,10 @@ $(document).on('click', '#btnSearch', function () { success: function (response) { if (response.status === 'success') { var table = ''; - $.each(response.data, function(index, item) { + $.each(response.data, function (index, item) { let path = item.relativePath; let correctedPath = path.replace(/\\/g, '/'); - table += '' + ''; + table += '' + ''; }); table += '
文件/文件夹名位置
'+item.name + '' + item.relativePath + '
' + item.name + '' + item.relativePath + '
'; $('#search-result').html(table); @@ -699,10 +696,10 @@ $(document).on('click', '#btnSearch', function () { error: function () { $('#search-result').html('An error occurred while processing your request.'); }, - beforeSend: function() { + beforeSend: function () { $('#loading').show(); }, - complete: function() { + complete: function () { $('#loading').hide(); }, });