mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
55 lines
1.5 KiB
PHP
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);
|
|
}
|
|
}
|