mirror of
https://github.com/koel/koel
synced 2024-11-15 08:57:16 +00:00
60 lines
1.8 KiB
PHP
60 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\API\AddSongsToPlaylistRequest;
|
|
use App\Http\Requests\API\RemoveSongsFromPlaylistRequest;
|
|
use App\Http\Resources\SongResource;
|
|
use App\Models\Playlist;
|
|
use App\Models\User;
|
|
use App\Repositories\SongRepository;
|
|
use App\Services\PlaylistService;
|
|
use App\Services\SmartPlaylistService;
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
use Illuminate\Http\Response;
|
|
|
|
class PlaylistSongController extends Controller
|
|
{
|
|
/** @param User $user */
|
|
public function __construct(
|
|
private SongRepository $songRepository,
|
|
private PlaylistService $playlistService,
|
|
private SmartPlaylistService $smartPlaylistService,
|
|
private ?Authenticatable $user
|
|
) {
|
|
}
|
|
|
|
public function index(Playlist $playlist)
|
|
{
|
|
$this->authorize('own', $playlist);
|
|
|
|
return SongResource::collection(
|
|
$playlist->is_smart
|
|
? $this->smartPlaylistService->getSongs($playlist, $this->user)
|
|
: $this->songRepository->getByStandardPlaylist($playlist, $this->user)
|
|
);
|
|
}
|
|
|
|
public function store(Playlist $playlist, AddSongsToPlaylistRequest $request)
|
|
{
|
|
$this->authorize('own', $playlist);
|
|
|
|
abort_if($playlist->is_smart, Response::HTTP_FORBIDDEN);
|
|
|
|
$this->playlistService->addSongsToPlaylist($playlist, $request->songs);
|
|
|
|
return response()->noContent();
|
|
}
|
|
|
|
public function destroy(Playlist $playlist, RemoveSongsFromPlaylistRequest $request)
|
|
{
|
|
$this->authorize('own', $playlist);
|
|
|
|
abort_if($playlist->is_smart, Response::HTTP_FORBIDDEN);
|
|
|
|
$this->playlistService->removeSongsFromPlaylist($playlist, $request->songs);
|
|
|
|
return response()->noContent();
|
|
}
|
|
}
|