koel/app/Services/DownloadService.php
2024-02-24 11:59:54 +07:00

55 lines
1.5 KiB
PHP

<?php
namespace App\Services;
use App\Models\Song;
use App\Models\SongZipArchive;
use App\Services\SongStorages\CloudStorage;
use App\Services\SongStorages\DropboxStorage;
use App\Services\SongStorages\S3CompatibleStorage;
use App\Values\SongStorageTypes;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\File;
class DownloadService
{
public function getDownloadablePath(Collection $songs): ?string
{
if ($songs->count() === 1) {
return $this->getLocalPath($songs->first());
}
return (new SongZipArchive())
->addSongs($songs)
->finish()
->getPath();
}
public function getLocalPath(Song $song): ?string
{
if (!SongStorageTypes::supported($song->storage)) {
return null;
}
if (!$song->storage || $song->storage === SongStorageTypes::LOCAL) {
return File::exists($song->path) ? $song->path : null;
}
switch (true) {
case $song->storage === SongStorageTypes::DROPBOX:
/** @var CloudStorage $cloudStorage */
$cloudStorage = app(DropboxStorage::class);
break;
case $song->storage === SongStorageTypes::S3 || $song->storage === SongStorageTypes::S3_LAMBDA:
/** @var CloudStorage $cloudStorage */
$cloudStorage = app(S3CompatibleStorage::class);
break;
default:
return null;
}
return $cloudStorage->copyToLocal($song);
}
}