koel/app/Http/Controllers/API/Download/SongController.php
2020-04-07 23:41:06 +02:00

35 lines
825 B
PHP

<?php
namespace App\Http\Controllers\API\Download;
use App\Http\Requests\API\Download\SongRequest;
use App\Repositories\SongRepository;
use App\Services\DownloadService;
/**
* @group 6. Download
*/
class SongController extends Controller
{
private $songRepository;
public function __construct(DownloadService $downloadService, SongRepository $songRepository)
{
parent::__construct($downloadService);
$this->songRepository = $songRepository;
}
/**
* Download one or several songs
*
* @queryParam songs array An array of song IDs
*
* @response []
*/
public function show(SongRequest $request)
{
$songs = $this->songRepository->getByIds($request->songs);
return response()->download($this->downloadService->from($songs));
}
}