koel/app/Http/Controllers/API/Download/ArtistController.php
2017-06-04 02:30:45 +01:00

27 lines
608 B
PHP

<?php
namespace App\Http\Controllers\API\Download;
use App\Models\Artist;
use Download;
use Exception;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
class ArtistController extends Controller
{
/**
* Download all songs by an artist.
* Don't see why one would need this, really.
* Let's pray to God the user doesn't trigger this on Elvis.
*
* @param Artist $artist
*
* @throws Exception
*
* @return BinaryFileResponse
*/
public function download(Artist $artist)
{
return response()->download(Download::from($artist));
}
}