2017-06-04 01:12:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use App\Facades\Download;
|
|
|
|
use Illuminate\Support\Collection;
|
2024-01-10 00:47:09 +00:00
|
|
|
use Illuminate\Support\Str;
|
2018-08-18 10:35:42 +00:00
|
|
|
use RuntimeException;
|
2017-06-04 01:12:08 +00:00
|
|
|
use ZipArchive;
|
|
|
|
|
|
|
|
class SongZipArchive
|
|
|
|
{
|
2021-06-05 10:47:56 +00:00
|
|
|
private ZipArchive $archive;
|
|
|
|
private string $path;
|
2017-06-04 01:12:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Names of the files in the archive
|
2017-06-04 01:12:24 +00:00
|
|
|
* Format: [file-name.mp3' => currentFileIndex].
|
2017-06-04 01:12:08 +00:00
|
|
|
*/
|
2021-06-05 10:47:56 +00:00
|
|
|
private array $fileNames = [];
|
2017-06-04 01:12:08 +00:00
|
|
|
|
2024-01-07 12:43:10 +00:00
|
|
|
public function __construct(?string $path = null)
|
2017-06-04 01:12:08 +00:00
|
|
|
{
|
2019-06-30 10:49:41 +00:00
|
|
|
$this->path = $path ?: self::generateRandomArchivePath();
|
2017-06-04 01:12:08 +00:00
|
|
|
|
|
|
|
$this->archive = new ZipArchive();
|
|
|
|
|
|
|
|
if ($this->archive->open($this->path, ZipArchive::CREATE) !== true) {
|
2018-08-18 10:35:42 +00:00
|
|
|
throw new RuntimeException('Cannot create zip file.');
|
2017-06-04 01:12:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-09 18:45:11 +00:00
|
|
|
public function addSongs(Collection $songs): static
|
2017-06-04 01:12:08 +00:00
|
|
|
{
|
2024-01-10 00:47:09 +00:00
|
|
|
$songs->each(fn (Song $song) => $this->addSong($song));
|
2017-06-04 01:12:08 +00:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2022-08-09 18:45:11 +00:00
|
|
|
public function addSong(Song $song): static
|
2017-06-04 01:12:08 +00:00
|
|
|
{
|
2022-08-08 16:00:59 +00:00
|
|
|
attempt(function () use ($song): void {
|
2024-01-10 23:11:45 +00:00
|
|
|
$path = Download::getLocalPath($song);
|
2019-06-30 09:44:39 +00:00
|
|
|
$this->archive->addFile($path, $this->generateZipContentFileNameFromPath($path));
|
2022-08-08 16:00:59 +00:00
|
|
|
});
|
2017-06-04 01:12:08 +00:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2022-08-09 18:45:11 +00:00
|
|
|
public function finish(): static
|
2017-06-04 01:12:08 +00:00
|
|
|
{
|
|
|
|
$this->archive->close();
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2018-08-24 15:27:19 +00:00
|
|
|
public function getPath(): string
|
2017-06-04 01:12:08 +00:00
|
|
|
{
|
|
|
|
return $this->path;
|
|
|
|
}
|
2017-08-05 17:28:28 +00:00
|
|
|
|
2019-06-30 09:44:39 +00:00
|
|
|
/**
|
|
|
|
* We add all files into the zip archive as a flat structure.
|
|
|
|
* As a result, there can be duplicate file names.
|
|
|
|
* This method makes sure each file name is unique in the zip archive.
|
|
|
|
*/
|
|
|
|
private function generateZipContentFileNameFromPath(string $path): string
|
|
|
|
{
|
|
|
|
$name = basename($path);
|
|
|
|
|
|
|
|
if (array_key_exists($name, $this->fileNames)) {
|
2020-09-06 21:20:42 +00:00
|
|
|
++$this->fileNames[$name];
|
2024-01-10 00:47:09 +00:00
|
|
|
$extension = Str::afterLast($name, '.');
|
|
|
|
$name = Str::beforeLast($name, '.') . $this->fileNames[$name] . ".$extension";
|
2019-06-30 09:44:39 +00:00
|
|
|
} else {
|
|
|
|
$this->fileNames[$name] = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function generateRandomArchivePath(): string
|
2017-08-05 17:28:28 +00:00
|
|
|
{
|
2019-06-30 09:44:39 +00:00
|
|
|
// We use system's temp dir instead of storage_path() here, so that the generated files
|
|
|
|
// can be cleaned up automatically after server reboot.
|
|
|
|
return sprintf('%s%skoel-download-%s.zip', sys_get_temp_dir(), DIRECTORY_SEPARATOR, uniqid());
|
2017-08-05 17:28:28 +00:00
|
|
|
}
|
2019-06-30 10:49:41 +00:00
|
|
|
|
|
|
|
public function getArchive(): ZipArchive
|
|
|
|
{
|
|
|
|
return $this->archive;
|
|
|
|
}
|
2017-06-04 01:12:08 +00:00
|
|
|
}
|