mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
97 lines
2.7 KiB
PHP
97 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Album;
|
|
use App\Models\Artist;
|
|
use App\Models\Playlist;
|
|
use App\Models\Song;
|
|
use App\Models\SongZipArchive;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use InvalidArgumentException;
|
|
|
|
class DownloadService
|
|
{
|
|
private $s3Service;
|
|
|
|
public function __construct(S3Service $s3Service)
|
|
{
|
|
$this->s3Service = $s3Service;
|
|
}
|
|
|
|
/**
|
|
* Generic method to generate a download archive from various source types.
|
|
*
|
|
* @param Song|Collection|Album|Artist|Playlist $mixed
|
|
*
|
|
* @throws InvalidArgumentException
|
|
*
|
|
* @return string Full path to the generated archive
|
|
*/
|
|
public function from($mixed): string
|
|
{
|
|
switch (get_class($mixed)) {
|
|
case Song::class:
|
|
return $this->fromSong($mixed);
|
|
case Collection::class:
|
|
return $this->fromMultipleSongs($mixed);
|
|
case Album::class:
|
|
return $this->fromAlbum($mixed);
|
|
case Artist::class:
|
|
return $this->fromArtist($mixed);
|
|
case Playlist::class:
|
|
return $this->fromPlaylist($mixed);
|
|
}
|
|
|
|
throw new InvalidArgumentException('Unsupported download type.');
|
|
}
|
|
|
|
public function fromSong(Song $song): string
|
|
{
|
|
if ($s3Params = $song->s3_params) {
|
|
// The song is hosted on Amazon S3.
|
|
// We download it back to our local server first.
|
|
$url = $this->s3Service->getSongPublicUrl($song);
|
|
abort_unless($url, 404);
|
|
|
|
$localPath = sys_get_temp_dir().DIRECTORY_SEPARATOR.basename($s3Params['key']);
|
|
|
|
// The following function requires allow_url_fopen to be ON.
|
|
// We're just assuming that to be the case here.
|
|
copy($url, $localPath);
|
|
} else {
|
|
// The song is hosted locally. Make sure the file exists.
|
|
$localPath = $song->path;
|
|
abort_unless(file_exists($localPath), 404);
|
|
}
|
|
|
|
return $localPath;
|
|
}
|
|
|
|
protected function fromMultipleSongs(Collection $songs): string
|
|
{
|
|
if ($songs->count() === 1) {
|
|
return $this->fromSong($songs->first());
|
|
}
|
|
|
|
return (new SongZipArchive())
|
|
->addSongs($songs)
|
|
->finish()
|
|
->getPath();
|
|
}
|
|
|
|
protected function fromPlaylist(Playlist $playlist): string
|
|
{
|
|
return $this->fromMultipleSongs($playlist->songs);
|
|
}
|
|
|
|
protected function fromAlbum(Album $album): string
|
|
{
|
|
return $this->fromMultipleSongs($album->songs);
|
|
}
|
|
|
|
protected function fromArtist(Artist $artist): string
|
|
{
|
|
return $this->fromMultipleSongs($artist->songs);
|
|
}
|
|
}
|