mirror of
https://github.com/koel/koel
synced 2024-12-22 02:23:14 +00:00
21 lines
759 B
PHP
21 lines
759 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Download;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\Download\DownloadSongsRequest;
|
|
use App\Models\Song;
|
|
use App\Repositories\SongRepository;
|
|
use App\Services\DownloadService;
|
|
|
|
class DownloadSongsController extends Controller
|
|
{
|
|
public function __invoke(DownloadSongsRequest $request, DownloadService $service, SongRepository $repository)
|
|
{
|
|
// Don't use SongRepository::findMany() because it'd have been already catered to the current user.
|
|
$songs = Song::query()->findMany($request->songs);
|
|
$songs->each(fn ($song) => $this->authorize('download', $song));
|
|
|
|
return response()->download($service->getDownloadablePath($repository->getMany($request->songs)));
|
|
}
|
|
}
|