mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
35 lines
825 B
PHP
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));
|
|
}
|
|
}
|