mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
19 lines
557 B
PHP
19 lines
557 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Download;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Album;
|
|
use App\Models\User;
|
|
use App\Repositories\SongRepository;
|
|
use App\Services\DownloadService;
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
|
|
class DownloadAlbumController extends Controller
|
|
{
|
|
/** @param User $user */
|
|
public function __invoke(Album $album, SongRepository $repository, DownloadService $download, Authenticatable $user)
|
|
{
|
|
return response()->download($download->from($repository->getByAlbum($album, $user)));
|
|
}
|
|
}
|