2022-06-10 10:47:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\V6\API;
|
|
|
|
|
|
|
|
use App\Http\Controllers\API\Controller;
|
2022-07-04 10:39:02 +00:00
|
|
|
use App\Http\Controllers\V6\Requests\AddSongsToPlaylistRequest;
|
|
|
|
use App\Http\Controllers\V6\Requests\RemoveSongsFromPlaylistRequest;
|
2022-06-10 10:47:46 +00:00
|
|
|
use App\Http\Resources\SongResource;
|
|
|
|
use App\Models\Playlist;
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Repositories\SongRepository;
|
2022-07-04 10:39:02 +00:00
|
|
|
use App\Services\PlaylistService;
|
2022-06-10 10:47:46 +00:00
|
|
|
use App\Services\SmartPlaylistService;
|
|
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
2022-07-04 10:39:02 +00:00
|
|
|
use Illuminate\Http\Response;
|
2022-06-10 10:47:46 +00:00
|
|
|
|
|
|
|
class PlaylistSongController extends Controller
|
|
|
|
{
|
|
|
|
/** @param User $user */
|
|
|
|
public function __construct(
|
|
|
|
private SongRepository $songRepository,
|
2022-07-04 10:39:02 +00:00
|
|
|
private PlaylistService $playlistService,
|
2022-06-10 10:47:46 +00:00
|
|
|
private SmartPlaylistService $smartPlaylistService,
|
|
|
|
private ?Authenticatable $user
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function index(Playlist $playlist)
|
|
|
|
{
|
|
|
|
$this->authorize('owner', $playlist);
|
|
|
|
|
|
|
|
return SongResource::collection(
|
|
|
|
$playlist->is_smart
|
|
|
|
? $this->smartPlaylistService->getSongs($playlist)
|
|
|
|
: $this->songRepository->getByStandardPlaylist($playlist, $this->user)
|
|
|
|
);
|
|
|
|
}
|
2022-07-04 10:39:02 +00:00
|
|
|
|
|
|
|
public function add(Playlist $playlist, AddSongsToPlaylistRequest $request)
|
|
|
|
{
|
|
|
|
$this->authorize('owner', $playlist);
|
|
|
|
|
|
|
|
abort_if($playlist->is_smart, Response::HTTP_FORBIDDEN);
|
|
|
|
|
|
|
|
$this->playlistService->addSongsToPlaylist($playlist, $request->songs);
|
2022-07-27 08:49:33 +00:00
|
|
|
|
|
|
|
return response()->noContent();
|
2022-07-04 10:39:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function remove(Playlist $playlist, RemoveSongsFromPlaylistRequest $request)
|
|
|
|
{
|
|
|
|
$this->authorize('owner', $playlist);
|
|
|
|
|
|
|
|
abort_if($playlist->is_smart, Response::HTTP_FORBIDDEN);
|
|
|
|
|
|
|
|
$this->playlistService->removeSongsFromPlaylist($playlist, $request->songs);
|
2022-07-27 08:49:33 +00:00
|
|
|
|
|
|
|
return response()->noContent();
|
2022-07-04 10:39:02 +00:00
|
|
|
}
|
2022-06-10 10:47:46 +00:00
|
|
|
}
|