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

27 lines
512 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;
/**
* @group 6. Download
*/
class PlaylistController extends Controller
{
/**
2020-04-12 08:08:37 +00:00
* Download a whole playlist.
*
* @response []
*
2017-06-04 01:30:45 +00:00
* @throws AuthorizationException
*/
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));
}
}