koel/app/Http/Controllers/API/Download/PlaylistController.php

27 lines
600 B
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers\API\Download;
use App\Models\Playlist;
2017-06-04 01:30:45 +00:00
use Illuminate\Auth\Access\AuthorizationException;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
class PlaylistController extends Controller
{
/**
* Download all songs in a playlist.
*
* @param Playlist $playlist
*
2017-06-04 01:30:45 +00:00
* @throws AuthorizationException
2016-08-03 10:42:39 +00:00
*
2017-06-04 01:30:45 +00:00
* @return BinaryFileResponse
*/
2018-08-18 11:51:52 +00:00
public function show(Playlist $playlist)
{
2016-06-04 13:29:45 +00:00
$this->authorize('owner', $playlist);
2018-08-18 11:51:52 +00:00
return response()->download($this->downloadService->from($playlist));
}
}