mirror of
https://github.com/koel/koel
synced 2024-12-11 21:22:28 +00:00
21 lines
462 B
PHP
21 lines
462 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\Download;
|
|
|
|
use App\Models\Playlist;
|
|
use Illuminate\Auth\Access\AuthorizationException;
|
|
|
|
class PlaylistController extends Controller
|
|
{
|
|
/**
|
|
* Download all songs in a playlist.
|
|
*
|
|
* @throws AuthorizationException
|
|
*/
|
|
public function show(Playlist $playlist)
|
|
{
|
|
$this->authorize('owner', $playlist);
|
|
|
|
return response()->download($this->downloadService->from($playlist));
|
|
}
|
|
}
|