From 56df346c920d98894ea70bf6b2fe3454189c5f58 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Tue, 6 Dec 2022 11:53:31 -0800 Subject: [PATCH] download: fix zip file name --- lib/Controller/AlbumsController.php | 3 ++- lib/Controller/DownloadController.php | 23 ++++++++++++++--------- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/lib/Controller/AlbumsController.php b/lib/Controller/AlbumsController.php index 4c08ec39..081bd990 100644 --- a/lib/Controller/AlbumsController.php +++ b/lib/Controller/AlbumsController.php @@ -77,7 +77,8 @@ class AlbumsController extends ApiBase } // Get download handle - $handle = \OCA\Memories\Controller\DownloadController::createHandle($files); + $albumName = explode('/', $name)[1]; + $handle = \OCA\Memories\Controller\DownloadController::createHandle($albumName, $files); return new JSONResponse(['handle' => $handle], Http::STATUS_OK); } diff --git a/lib/Controller/DownloadController.php b/lib/Controller/DownloadController.php index 24b1d7de..0eb7835d 100644 --- a/lib/Controller/DownloadController.php +++ b/lib/Controller/DownloadController.php @@ -47,18 +47,20 @@ class DownloadController extends ApiBase } // Return id - return new JSONResponse(['handle' => $this->createHandle($files)]); + $handle = self::createHandle('memories', $files); + return new JSONResponse(['handle' => $handle]); } /** * Get a handle for downloading files. * + * @param string $name Name of zip file * @param int[] $files */ - public static function createHandle(array $files): string + public static function createHandle(string $name, array $files): string { $handle = \OC::$server->get(ISecureRandom::class)->generate(16, ISecureRandom::CHAR_ALPHANUMERIC); - \OC::$server->get(ISession::class)->set("memories_download_ids_{$handle}", $files); + \OC::$server->get(ISession::class)->set("memories_download_{$handle}", [$name, $files]); return $handle; } @@ -76,13 +78,15 @@ class DownloadController extends ApiBase { // Get ids from request $session = \OC::$server->get(ISession::class); - $key = "memories_download_ids_{$handle}"; - $fileIds = $session->get($key); + $key = "memories_download_{$handle}"; + $info = $session->get($key); $session->remove($key); - if (null === $fileIds) { + if (null === $info) { return new JSONResponse([], Http::STATUS_NOT_FOUND); } + $name = $info[0] . '-' . \date('YmdHis');; + $fileIds = $info[1]; /** @var int[] $fileIds */ $fileIds = array_filter(array_map('intval', $fileIds), function (int $id): bool { @@ -100,7 +104,7 @@ class DownloadController extends ApiBase } // Download multiple files - $this->multiple($fileIds); // exits + $this->multiple($name, $fileIds); // exits } /** @@ -124,9 +128,10 @@ class DownloadController extends ApiBase /** * Download multiple files. * + * @param string $name Name of zip file * @param int[] $fileIds */ - private function multiple(array &$fileIds) + private function multiple(string $name, array &$fileIds) { // Disable time limit $executionTime = (int) \OC::$server->get(IniGetWrapper::class)->getNumeric('max_execution_time'); @@ -141,7 +146,7 @@ class DownloadController extends ApiBase $streamer = new \OC\Streamer($this->request, $size, \count($fileIds)); // Create a zip file - $streamer->sendHeaders('download'); + $streamer->sendHeaders($name); // Multiple files might have the same name // So we need to add a number to the end of the name